Changes between Version 1 and Version 2 of pingJMD


Ignore:
Timestamp:
02/10/14 11:12:19 (10 years ago)
Author:
niles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pingJMD

    v1 v2  
    77wget http://localhost:8080/JMD/JMD 
    88}}} 
     9 
    910 
    1011when run on the machine that is running the JMD should write a file named "JMD" that is the JMD's response when it 
     
    3132}}} 
    3233 
     34This is a very basic first step, and only establishes basic connectivity. A better test involves interacting with 
     35some data. This can be done with the show_info command. Both show_info and the underlying idea of 
     36storage unit numbers (sunums) are beyond the scope of this discussion, and are introduced here only in passing. For 
     37now, we use show_info to identify data that we do not have on disk already. The command : 
     38 
     39{{{ 
     40show_info -S -P key=T_OBS,T_REC_INDEX,WAVELNTH ds='aia.lev1[2011-08-19T10:59:57Z/1m][?wavelnth=304?]' 
     41}}} 
     42 
     43will return something like this if the data are already on disk : 
     44 
     45{{{ 
     46sunum   T_OBS   T_REC_INDEX     WAVELNTH        SUDIR 
     47236661975       2011-08-19T10:59:57.57Z 1092826832      304     /SUM02/D236661975/S00000 
     48236662019       2011-08-19T11:00:09.57Z 1092826844      304     /SUM02/D236662019/S00000 
     49236662008       2011-08-19T11:00:21.57Z 1092826856      304     /SUM01/D236662008/S00000 
     50236662040       2011-08-19T11:00:33.59Z 1092826868      304     /SUM02/D236662040/S00000 
     51236662058       2011-08-19T11:00:45.57Z 1092826880      304     /SUM01/D236662058/S00000 
     52}}} 
     53 
     54but will not list the directories where the data reside if the data are not on disk : 
     55 
     56 
     57{{{ 
     58sunum   T_OBS   T_REC_INDEX     WAVELNTH        SUDIR 
     59236661975       2011-08-19T10:59:57.57Z 1092826832      304 
     60236662019       2011-08-19T11:00:09.57Z 1092826844      304 
     61236662008       2011-08-19T11:00:21.57Z 1092826856      304 
     62236662040       2011-08-19T11:00:33.59Z 1092826868      304 
     63236662058       2011-08-19T11:00:45.57Z 1092826880      304 
     64}}} 
     65 
     66If we find some data that are not on disk, then we can initiate a JMD download of the data by using the "-p" rather 
     67than the "-P" option with show_info, like this : 
     68 
     69{{{ 
     70show_info -S -p key=T_OBS,T_REC_INDEX,WAVELNTH ds='aia.lev1[2011-08-19T10:59:57Z/1m][?wavelnth=304?]' 
     71}}} 
     72 
     73The download should then appear in the JMD log, and subsequently running show_info with "-P" should show the data to be on disk locally. 
     74 
     75 
     76If requesting the data with show_info fails, this may indicate the the JMD is running but is not contactable through show_info. To 
     77query the database directly, use the jmd_admin.pl script to request the data directly from the JMD : 
     78 
     79 
     80{{{ 
     81jmd_admin.pl --request -- --series=aia.lev1 --sunums= 236661975, 236662019, 236662008, 236662040, 236662058 --priority=20 
     82}}}