Changes between Version 9 and Version 10 of installation_QCG_Broker_Client
- Timestamp:
- 05/19/11 10:59:04 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
installation_QCG_Broker_Client
v9 v10 1 1 = QCG Broker Client Installation = 2 2 3 =Requirements=4 3 = Requirements = 5 4 * '''Java (>= 1.5)'''\\ … … 254 253 The example presented below is the QCG-Broker Job Profile describing the parameter-sweep experiment executing a set of UNIX calendar tasks for the predefined space of "month" parameter. 255 254 256 <pre> 255 {{{ 256 #!div style="font-size: 90%" 257 {{{#!xml 257 258 <grmsJob appId="calendar_example"> 258 259 <task persistent="true" taskId="calendar"> … … 293 294 </task> 294 295 </grmsJob> 295 296 </pre> 297 298 ===submit_job=== 299 * ''submit_job <job_profile>'' - submits job. <job_profile> must be the path to the file containing the Job Profile. 300 <pre> 301 qcg-client submit_job ../examples/usecase8.xml 296 }}} 297 }}} 298 299 === submit_job === 300 * `submit_job <job_profile>` - submits job. `<job_profile>` must be the path to the file containing the Job Profile. 301 {{{ 302 #!div style="font-size: 90%" 303 {{{#!sh 304 $ qcg-client submit_job ../examples/usecase8.xml 302 305 Your identity: C=PL,O=GRID,O=PSNC,CN=Tomasz Piontek 303 306 Creating proxy, please wait... … … 308 311 309 312 jobId = 1305550554579_calendar_example_5366 310 311 </pre> 312 313 ===list_jobs=== 314 * ''list_jobs [status] [limit]'' - lists jobs. Optionally it is possible to specify status or limits the output to some number of recent jobs. 315 <pre> 316 qcg-client list_jobs 5 313 }}} 314 }}} 315 316 === list_jobs === 317 * `list_jobs [status] [limit]` - lists jobs. Optionally it is possible to specify status or limits the output to some number of recent jobs. 318 {{{ 319 #!div style="font-size: 90%" 320 {{{#!sh 321 $ qcg-client list_jobs 5 317 322 UserDN = /C=PL/O=GRID/O=PSNC/CN=Tomasz Piontek 318 323 ProxyLifetime = 0 Days 11 Hours 58 Minutes 47 Seconds … … 325 330 1305287977790_calendar_example_4779 326 331 1305550554579_calendar_example_5366 327 </pre> 328 329 ===job_info=== 330 * ''job_info <jobId> <showJobProfile>'' - displays information about the given job. The <showJobProfile> argument of boolean type specifies whether the Job Profile should be displayed or not. 331 <pre> 332 qcg-client job_info 1305550554579_calendar_example_5366 false 332 }}} 333 }}} 334 335 === job_info === 336 * `job_info <jobId> <showJobProfile>` - displays information about the given job. The `<showJobProfile>` argument of boolean type specifies whether the Job Profile should be displayed or not. 337 {{{ 338 #!div style="font-size: 90%" 339 {{{#!sh 340 $ qcg-client job_info 1305550554579_calendar_example_5366 false 333 341 UserDN = /C=PL/O=GRID/O=PSNC/CN=Tomasz Piontek 334 342 ProxyLifetime = 0 Days 11 Hours 58 Minutes 18 Seconds … … 342 350 Number of tasks: 10 343 351 Tasks: calendar_PSit0 calendar_PSit1 calendar_PSit2 calendar_PSit3 calendar_PSit4 calendar_PSit5 calendar_PSit6 calendar_PSit7 calendar_PSit8 calendar_PSit9 344 </pre> 345 346 <pre> 347 qcg-client job_info 1305550554579_calendar_example_5366 352 }}} 353 }}} 354 355 {{{ 356 #!div style="font-size: 90%" 357 {{{#!sh 358 $ qcg-client job_info 1305550554579_calendar_example_5366 348 359 UserDN = /C=PL/O=GRID/O=PSNC/CN=Tomasz Piontek 349 360 ProxyLifetime = 0 Days 11 Hours 58 Minutes 6 Seconds … … 601 612 </task> 602 613 </grmsJob> 603 604 </pre> 605 606 ===tasks_statuses=== 607 * ''tasks_statuses <jobId>'' - lists tasks constituting the given job with their statuses. 608 609 <pre> 610 qcg-broker tasks_statuses 1305550554579_calendar_example_5366 614 }}} 615 }}} 616 617 === tasks_statuses === 618 * `tasks_statuses <jobId>` - lists tasks constituting the given job with their statuses. 619 620 {{{ 621 #!div style="font-size: 90%" 622 {{{#!sh 623 $ qcg-broker tasks_statuses 1305550554579_calendar_example_5366 611 624 UserDN = /C=PL/O=GRID/O=PSNC/CN=Tomasz Piontek 612 625 ProxyLifetime = 0 Days 11 Hours 41 Minutes 30 Seconds … … 627 640 Number of tasks: 10 628 641 FINISHED : 10 629 630 </pre> 631 632 ===task_info=== 633 * ''task_info <jobId> <taskId>'' - displays information about the given job 634 <pre> 635 qcg-broker task_info 1305550554579_calendar_example_5366 calendar_PSit0 642 }}} 643 }}} 644 645 === task_info === 646 * `task_info <jobId> <taskId>` - displays information about the given job 647 {{{ 648 #!div style="font-size: 90%" 649 {{{#!sh 650 $ qcg-broker task_info 1305550554579_calendar_example_5366 calendar_PSit0 636 651 UserDN = /C=PL/O=GRID/O=PSNC/CN=Tomasz Piontek 637 652 ProxyLifetime = 0 Days 11 Hours 40 Minutes 11 Seconds … … 678 693 LocalStartTime: Mon May 16 14:56:10 CEST 2011 679 694 LocalFinishTime: Mon May 16 14:56:10 CEST 2011 680 </pre> 695 }}} 696 }}}