IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Initial Version and Version 1 of req_5977


Ignore:
Timestamp:
May 27, 2010, 4:03:09 PM (16 years ago)
Author:
bills
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • req_5977

    v1 v1  
     1This request came in on May 27. It has 2624 rows most of which are bycoord requests. These are the slowest to parse.
     2
     3The 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
     4around 18:00
     5
     6
     7
     8The 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
     21Collected 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
     261486: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.
     29mysql> select count(*) from pstampJob where req_id >= 5977 and fault = 0 ;
     30+----------+
     31| count(*) |
     32+----------+
     33|     5123 |
     34+----------+
     351 row in set (0.02 sec)
     36
     37mysql> select count(*) from pstampJob where req_id >= 5977 and fault = 0 and dep_id = 0;
     38+----------+
     39| count(*) |
     40+----------+
     41|      200 |
     42+----------+
     431 row in set (0.02 sec)
     44
     45
     46}}}
     47