Skip to content
Snippets Groups Projects
Commit d69be2dd authored by John Chilton's avatar John Chilton
Browse files

Modernize job conf samples in docs a little.

They were remnants of LWR approach of one runner with many configuration options, use Pulsar specific runners which use better defaults and so require setting fewer options.
parent 6437b8b7
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<job_conf> <job_conf>
<plugins> <plugins>
<plugin id="drmaa" type="runner" load="galaxy.jobs.runners.drmaa:DRMAAJobRunner"/> <plugin id="drmaa" type="runner" load="galaxy.jobs.runners.drmaa:DRMAAJobRunner"/>
<plugin id="pulsar" type="runner" load="galaxy.jobs.runners.pulsar:PulsarLegacyJobRunner"> <plugin id="pulsar" type="runner" load="galaxy.jobs.runners.pulsar:PulsarMQJobRunner">
<!-- Must tell Pulsar where to send files. --> <!-- Must tell Pulsar where to send files. -->
<param id="galaxy_url">https://galaxyserver</param> <param id="galaxy_url">https://galaxyserver</param>
<!-- Message Queue Connection (should match message_queue_url in Pulsar's app.yml) <!-- Message Queue Connection (should match message_queue_url in Pulsar's app.yml)
...@@ -22,14 +22,8 @@ ...@@ -22,14 +22,8 @@
web server it can simply ask for this information. web server it can simply ask for this information.
--> -->
<param id="jobs_directory">/path/to/remote/pulsar/files/staging/</param> <param id="jobs_directory">/path/to/remote/pulsar/files/staging/</param>
<!-- Invert file transfers - have Pulsar initiate downloads during preprocessing
and uploads during postprocessing. -->
<param id="default_file_action">remote_transfer</param>
<!-- Remaining parameters same as previous example --> <!-- Remaining parameters same as previous example -->
<param id="submit_native_specification">-P bignodes -R y -pe threads 16</param> <param id="submit_native_specification">-P bignodes -R y -pe threads 16</param>
<param id="dependency_resolution">remote</param>
<param id="rewrite_parameters">True</param>
</destination> </destination>
</destinations> </destinations>
<tools> <tools>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<job_conf> <job_conf>
<plugins> <plugins>
<plugin id="drmaa" type="runner" load="galaxy.jobs.runners.drmaa:DRMAAJobRunner"/> <plugin id="drmaa" type="runner" load="galaxy.jobs.runners.drmaa:DRMAAJobRunner"/>
<plugin id="pulsar" type="runner" load="galaxy.jobs.runners.pulsar:PulsarLegacyJobRunner"/> <plugin id="pulsar" type="runner" load="galaxy.jobs.runners.pulsar:PulsarRESTJobRunner">
</plugins> </plugins>
<handlers> <handlers>
<handler id="main"/> <handler id="main"/>
...@@ -18,9 +18,6 @@ ...@@ -18,9 +18,6 @@
in the Pulsar app.yml file. in the Pulsar app.yml file.
--> -->
<param id="dependency_resolution">remote</param> <param id="dependency_resolution">remote</param>
<!-- Use more correct parameter generation for *nix. Needs testing on Windows
servers before this becomes default. -->
<param id="rewrite_parameters">True</param>
</destination> </destination>
</destinations> </destinations>
<tools> <tools>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment