IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 7 and Version 8 of RunningTheDistributionClient


Ignore:
Timestamp:
Jul 9, 2009, 7:18:46 AM (17 years ago)
Author:
Mark Huber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RunningTheDistributionClient

    v7 v8  
    4141Multiple hosts may be specified as usual.
    4242
     43
    4344Summary information such as faults and copy/extract times can be found in the receiveResult table of the mySQL database, file names and byte size (and other information) in receiveFile:
    4445{{{
     
    4950Example list of files successfully downloaded (fault=0), size, download time, and extraction time:
    5051{{{
    51 select receiveResult.file_id,receiveFile.file,receiveResult.dtime_copy,receiveRe
    52 sult.dtime_extract,receiveFile.bytes from receiveResult,receiveFile where receiv
    53 eResult.fault=0 and receiveResult.file_id=receiveFile.file_id;
     52SELECT receiveResult.file_id,receiveFile.file,receiveResult.dtime_copy,receiveResult.dtime_extract,receiveFile.bytes
     53FROM receiveResult,receiveFile
     54WHERE receiveResult.fault=0 and receiveResult.file_id=receiveFile.file_id;
    5455}}}
    5556
    56 Is/will there be functionality in ippMonitor to access this information?
     57Is/will there be functionality in ippMonitor to access/monitor this information?
     58
     59When faults happen, how can the download be redone? This seems to work (is it the proper method?)
     60{{{
     61receivetool -dbname rc_test -revert -fault 1
     62}}}
     63
     64What if files were added to a -product (is this possible?), how would an update be made?  {{{ -revert -product dist0 }}} ?
     65
     66