| | 1 | This request came in on May 27. It has 2624 rows most of which are bycoord requests. These are the slowest to parse. |
| | 2 | |
| | 3 | The request started parsing at 13:38 HST May 27. We can see this because that is the time stamp on the request file. At 15:55 it is about half done. 4994 jobs have been queued so far and all but 200 are requests for cleaned up data. So the parsing will probably complete |
| | 4 | around 18:00 |
| | 5 | |
| | 6 | |
| | 7 | |
| | 8 | The program pstampdump can be used to list the contents of a fits table |
| | 9 | |
| | 10 | |
| | 11 | {{{ |
| | 12 | (ippdb02:work/20100527/5977) bills% pstampdump -simple web_1695.fits > dumpreq.txt |
| | 13 | |
| | 14 | (ippdb02:work/20100527/5977) bills% wc dumpreq.txt |
| | 15 | 2624 49856 256353 dumpreq.txt |
| | 16 | |
| | 17 | # Each row has a ROWNUM which must be unique in the file. |
| | 18 | |
| | 19 | |
| | 20 | (ippdb02:work/20100527/5977) bills% grep Collected psparse.5977.log | tail -n 1 |
| | 21 | Collected 1 rows beginning with row 100595. bycoord chip null null |
| | 22 | |
| | 23 | # it's working on the 1486th row now |
| | 24 | |
| | 25 | (ippdb02:work/20100527/5977) bills% grep -n 100595 dumpreq.txt |
| | 26 | 1486:100595 205.550874 28.351276 100 100 2 stamp 1 gpc1 bycoord chip null null null null y 0 0 search |
| | 27 | |
| | 28 | # We're up to 5123 jobs now. |
| | 29 | mysql> select count(*) from pstampJob where req_id >= 5977 and fault = 0 ; |
| | 30 | +----------+ |
| | 31 | | count(*) | |
| | 32 | +----------+ |
| | 33 | | 5123 | |
| | 34 | +----------+ |
| | 35 | 1 row in set (0.02 sec) |
| | 36 | |
| | 37 | mysql> select count(*) from pstampJob where req_id >= 5977 and fault = 0 and dep_id = 0; |
| | 38 | +----------+ |
| | 39 | | count(*) | |
| | 40 | +----------+ |
| | 41 | | 200 | |
| | 42 | +----------+ |
| | 43 | 1 row in set (0.02 sec) |
| | 44 | |
| | 45 | |
| | 46 | }}} |
| | 47 | |