Difference between revisions of "Galaxy Configuration - Running Jobs"
Jump to navigation
Jump to search
Moskalenko (talk | contribs) (Created page with "Category:Galaxy Configuration * job_conf.xml {{#fileAnchor: job_conf.xml}} Download raw source of the [{{#fileLink: job_conf.xml}} job_conf.xml] file. <source lang=xml> <?...") |
Moskalenko (talk | contribs) |
||
Line 8: | Line 8: | ||
<plugins workers="5"> | <plugins workers="5"> | ||
<!-- "workers" is the number of threads for the runner's work queue. | <!-- "workers" is the number of threads for the runner's work queue. | ||
− | The default from <plugins> is used if not defined for a <plugin>. | + | The default from <plugins> is used if not defined for a <plugin>. --> |
− | |||
− | |||
<plugin id="local" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner" workers="2"/> | <plugin id="local" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner" workers="2"/> | ||
<plugin id="drmaa" type="runner" load="galaxy.jobs.runners.drmaa:DRMAAJobRunner"/> | <plugin id="drmaa" type="runner" load="galaxy.jobs.runners.drmaa:DRMAAJobRunner"/> | ||
− | |||
</plugins> | </plugins> | ||
<handlers default="handlers"> | <handlers default="handlers"> | ||
− | <!-- Additional job handlers - the id should match the name of a | + | <!-- Additional job handlers - the id should match the name of a [server:<id>] in universe_wsgi.ini. --> |
− | |||
− | |||
<handler id="handler0" tags="handlers"/> | <handler id="handler0" tags="handlers"/> | ||
<handler id="handler1" tags="handlers"/> | <handler id="handler1" tags="handlers"/> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</handlers> | </handlers> | ||
<destinations default="dynamic"> | <destinations default="dynamic"> | ||
Line 40: | Line 27: | ||
</destination> | </destination> | ||
<destination id="moab" runner="drmaa" /> | <destination id="moab" runner="drmaa" /> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<destination id="local" runner="local" /> | <destination id="local" runner="local" /> | ||
− | + | </destinations> | |
− | + | <tools> | |
− | + | </tools> | |
− | + | <limits> | |
− | <!-- | + | <!-- Certain limits can be defined. --> |
− | + | </limits> | |
− | + | </job_conf> | |
− | |||
− | |||
− | |||
− | |||
− | |||
</source> | </source> |
Revision as of 14:22, 3 March 2014
- job_conf.xml
{{#fileAnchor: job_conf.xml}} Download raw source of the [{{#fileLink: job_conf.xml}} job_conf.xml] file.
<?xml version="1.0"?>
<job_conf>
<plugins workers="5">
<!-- "workers" is the number of threads for the runner's work queue.
The default from <plugins> is used if not defined for a <plugin>. -->
<plugin id="local" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner" workers="2"/>
<plugin id="drmaa" type="runner" load="galaxy.jobs.runners.drmaa:DRMAAJobRunner"/>
</plugins>
<handlers default="handlers">
<!-- Additional job handlers - the id should match the name of a [server:<id>] in universe_wsgi.ini. -->
<handler id="handler0" tags="handlers"/>
<handler id="handler1" tags="handlers"/>
</handlers>
<destinations default="dynamic">
<!-- Destinations define details about remote resources and how jobs
should be executed on those remote resources. -->
<destination id="local" runner="local" tags="head"/>
<destination id="dynamic" runner="dynamic">
<!-- A destination that represents a method in the dynamic runner. -->
<param id="function">default</param>
<param id="type">python</param>
</destination>
<destination id="moab" runner="drmaa" />
<destination id="local" runner="local" />
</destinations>
<tools>
</tools>
<limits>
<!-- Certain limits can be defined. -->
</limits>
</job_conf>