Skip to content

Commit

Permalink
distributed computing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sdc50 committed Feb 6, 2015
1 parent e3eebfe commit 5ae0a1f
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions docs/tethys_sdk/cloud_computing.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
***************************
Distributed Computing API !
Distributed Computing API
***************************

**Last Updated:** November 24, 2014
**Last Updated:** February 5, 2015

.. warning::

We apologize, but this feature has not been implemented yet. Check back frequently, as we are working hard to get everything up and running as quickly as possible.
Distributed computing in Tethys is made possible with HTCondor (see installation documentation for instructions on installing HTCondor. Access to HTCondor tools is made possible through the condorpy module. See the following code example for how to use condorpy:
::

>>> from condorpy import Job, Templates
>>> job = Job('job_name', Templates.vanilla_transfer_files)
>>> job.executable = 'job_script'
>>> jobs.arguments = 'input_1 input_2'
>>> job.transfer_input_files = 'input_1 input_2'
>>> job.transfer_output_files = 'output'
>>> job.submit()

0 comments on commit 5ae0a1f

Please sign in to comment.