Changes between Version 5 and Version 6 of WikiStart
- Timestamp:
- 04/21/11 18:49:17 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v5 v6 1 1 = Introduction = 2 2 3 DRMAA for Torque/PBS Pro is implementation of `Open Grid Forum`_ DRMAA_3 DRMAA for Torque/PBS Pro is implementation of Open Grid Forum [http://drmaa.org/ DRMAA] 4 4 (Distributed Resource Management Application API) specification_ for 5 submission and control jobs to PBS _ systems: `PBS Professional`_, Torque_6 and OpenPBS_. Using DRMAA, grid applications builders, portal developers5 submission and control jobs to PBS systems: [http://www.clusterresources.com/products/torque-resource-manager.php Torque] 6 and [http://www.pbsworks.com/Product.aspx?id=1 PBS Professional]. Using DRMAA, grid applications builders, portal developers 7 7 and ISVs can use the same high-level API to link their software with 8 8 different cluster/resource management systems. 9 9 10 This software also enables the integration of `SMOA Computing`_10 This software also enables the integration of [http://apps.man.poznan.pl/trac/smoa-comp Smoa Computing] 11 11 with the underlying Torque/PBS Pro system for remote multi-user job submission 12 12 and control over Web Services. 13 13 14 This manual can be found in HTML and PDF formats in ``doc`` directory.15 16 14 17 15 = Installation = … … 19 17 To compile the library just go to main source directory and type:: 20 18 19 {{{ 21 20 $ ./configure [--prefix=/installation/directory] && make 21 }}} 22 22 23 23 If you had installed PBS in a non standard directory pass it 24 in ` `--with-pbs`` configure parameter. There are no unusual requirements24 in `--with-pbs` configure parameter. There are no unusual requirements 25 25 for basic usage of library: ANSI C compiler and standard make should 26 26 suffice (if linking against PBS Professional you will need also the OpenSSL library). 27 27 If you have taken sources directly from SVN repository you would 28 need additional `developer tools`_. For further information regarding GNU28 need additional [developer tools]. For further information regarding GNU 29 29 build system see the INSTALL file. 30 30 … … 32 32 the completion. To achieve this simply type the following command for 33 33 all queues which are intended to use with PBS DRMAA:: 34 34 {{ 35 35 # qmgr -c "set queue QUEUE_NAME keep_completed = 60" 36 37 The value of the ` `keep_completed``parameter denotes a number of36 }} 37 The value of the `keep_completed parameter denotes a number of 38 38 seconds jobs will have to wait in the queue after the completion (and 39 39 should be greater then ``pool_delay`` value in PBS DRMAA configuration_).