Allright,
I guess it can help,
when I'm subitting the dag, I can see the first job has been submitted 6 times without any success: ther error is:
failed while reading from pipe
read so far:
ERROR: submit attempt failed
what does it mean ?
thx,
Jerome
-------- Message d'origine--------
De: condor-users-bounces@xxxxxxxxxxx de la part de Mariette, Jerome
Date: lun. 24/09/2007 14:56
À: condor-users@xxxxxxxxxxx
Objet : [Condor-users] birdbath dag submission
Hi everbody,
I'm pretty new in Condor world and have some troubles submitting dag.
Here is my probleme.
I'm using birdbath wraper to do it and I'm submitting the dag file like that:
Schedd schedd = new Schedd (new URL("http://localhost:8181"));
Transaction xact = schedd.createTransaction();
xact.begin(30);
int cluster = xact.createCluster();
int job = xact.createJob(cluster);
xact.submit(cluster, job, "jerome", UniverseType.SCHEDULER,
"/opt/condor-6.8.5/bin/condor_dagman", /* Path to the dagman binarie */
"-f -l . -Debug 3 " +
"-Lockfile myLockFile -Dag myDag -Rescue myRescuDag -Condorlog myLog",
null, null, null);
xact.commit();
what am I doing wrong ? (the Dag File is ok because tryed by command it's working)
thx
Jerome