Changes between Version 18 and Version 19 of QCG-SimpleClient

Show
Ignore:
Timestamp:
10/09/12 18:13:05 (12 years ago)
Author:
mmamonski
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • QCG-SimpleClient

    v18 v19  
    2525}}} 
    2626 
    27 == Further reading == 
     27= Submitting Simple Bash job = 
     28* Example job script: 
     29{{{ 
     30$cat hostname.qcg  
     31#cluster where to run a job 
     32#QCG host=zeus.cyfronet.pl 
     33#QCG output=output.txt 
     34#QCG error=error.txt 
     35 
     36/bin/hostname 
     37date 
     38sleep 30 
     39date 
     40sleep 30 
     41date 
     42 
     43}}} 
     44* job submission: 
     45{{{ 
     46$qcg-sub hostname.qcg  
     47https://elder6.man.poznan.pl:8443/qcg/services/ 
     48/C=PL/O=GRID/O=PSNC/CN=qcg-broker/qcg-broker.man.poznan.pl 
     49UserDN = /C=PL/O=GRID/O=PSNC/CN=Mariusz Mamonski 
     50ProxyLifetime = 23 Days 11 Hours 54 Minutes 8 Seconds 
     51 
     52jobId = J1349800941529__3789 
     53}}} 
     54* list all your jobs: 
     55{{{ 
     56qcg-list  
     57https://elder6.man.poznan.pl:8443/qcg/services/ 
     58/C=PL/O=GRID/O=PSNC/CN=qcg-broker/qcg-broker.man.poznan.pl 
     59UserDN = /C=PL/O=GRID/O=PSNC/CN=Mariusz Mamonski 
     60ProxyLifetime = 23 Days 11 Hours 53 Minutes 52 Seconds 
     61 
     62JOB IDENTIFIER                  TASK      NOTE                  SUBMISSION TIME  START TIME       FINISH TIME      STATUS            HOSTNAME   
     63 
     64J1349800941529__3789            task                            09.10.12 18:42                                     PENDING           zeus       
     65 
     66Number of tasks: 
     67PENDING : 1 
     68TOTAL: 1 
     69}}} 
     70 
     71* get job info: 
     72{{{ 
     73> qcg-info J1349800941529__3789 
     74https://elder6.man.poznan.pl:8443/qcg/services/ 
     75/C=PL/O=GRID/O=PSNC/CN=qcg-broker/qcg-broker.man.poznan.pl 
     76UserDN = /C=PL/O=GRID/O=PSNC/CN=Mariusz Mamonski 
     77ProxyLifetime = 23 Days 11 Hours 52 Minutes 53 Seconds 
     78 
     79Note:  
     80TaskType: SINGLE 
     81SubmissionTime: Tue Oct 09 18:42:21 CEST 2012 
     82FinishTime:  
     83ProxyLifetime: P23DT11H52M51S 
     84Status: RUNNING 
     85StatusDesc:  
     86StartTime: Tue Oct 09 18:42:21 CEST 2012 
     87 
     88Allocation:  
     89HostName: zeus.cyfronet.pl 
     90ProcessesCount: 1 
     91ProcessesGroupId:  
     92Status: RUNNING 
     93StatusDescription:  
     94SubmissionTime: Tue Oct 09 18:42:21 CEST 2012 
     95FinishTime:  
     96LocalSubmissionTime: Tue Oct 09 18:42:24 CEST 2012 
     97LocalStartTime: Tue Oct 09 18:42:54 CEST 2012 
     98LocalFinishTime:  
     99 
     100}}} 
     101 
     102= Further reading = 
    28103 * [http://apps.man.poznan.pl/trac/muscle/raw-attachment/wiki/QCG-SimpleClient/QCG-SimpleClient-CheatSheet.pdf QCG-SimpleClient Cheet Sheet Card] 
    29104