Skip to content
abmargb edited this page Mar 7, 2013 · 19 revisions

Install instructions

$ git clone https://github.com/OurGrid/cloudbroker.git

$ ant install

Usage instructions

Start the broker daemon

$ bash server.sh

Broker client

Submit job

$ bash client.sh submit job.json

Check job status

$ bash client.sh status $JOBID

Job format

`{"name": "primes", "tasks": [

{ "init": [{"local": "primes.py", "remote": "primes.py"}], "remote": "python primes.py 2 1000 > output", "final": [{"local": "output", "remote": "output"}] }, { "init": [{"local": "primes.py", "remote": "primes.py"}], "remote": "python primes.py 1001 2000 > output", "final": [{"local": "output", "remote": "output2"}] } ]} `

Clone this wiki locally