[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[HTCondor-users] htcondor.py



Here's a bit of experimental code:
https://github.com/candlerb/htcondor.py

htcondor.py turns python functions into HTCondor jobs. It writes out a DAG
defining the individual jobs and their dependencies, ready for submission to
dagman which schedules their execution across a cluster of compute nodes.

A function call like

    foo(bar, baz)

can be turned into a condor job by changing it to

    foo.queue(bar, baz)

It borrows heavily from the ideas at http://flask.pocoo.org/snippets/73/

If you find this useful, feedback is welcomed.

Regards,

Brian.