Hi there : Has anyone tried Condor with AutoDesk|Softimage or Autodesk|Maya
..? If so what was the setup and a sample submit file would be much appreciated
..? Thanks /biju From: condor-users-bounces@xxxxxxxxxxx
[mailto:condor-users-bounces@xxxxxxxxxxx] On Behalf Of Ian Chesal On Thu, Jan 13, 2011 at 12:11 PM, Biju Ramachandran <biju.ramachandran@xxxxxxxxxxx>
wrote:
I'll always recommend Linux for the master and scheduler
nodes if you can get away with it. Linux handles the large volume of processes
and network connections Condor can create far better than Windows ever has. There are some complications submitting from Linux
schedulers to Windows execute hosts but they are not insurmountable and the end
result is almost always a more stable pool.
I'd start with the command line. You can pipe submission
information in to the condor_submit binary: import fcntl import os import subprocess ticket =
'universe=vanilla\nexecutable=sleep\narguments=10m\n' process = subprocess.Popen("condor_submit",
stdin=subprocess.PIPE, stdout=subprocess.PIPE) flags = fcntl.fcntl(process.stdout, fcntl.F_GETFL) fcntl.fcntl(process.stdout, fcntl.F_SETFL, flags |
os.O_NONBLOCK) process.stdin.write(ticket) And so on...
The manual, while a bit of a beast, is The Tome of Knowledge
for Condor. You can find some specific tips and tricks for working with
Condor on Cycle's blog as well: Regards, - Ian |