Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Naming Jobs
- Date: Wed, 20 Dec 2006 13:14:15 -0600 (CST)
- From: "R. Kent Wenger" <wenger@xxxxxxxxxxx>
- Subject: Re: [Condor-users] Naming Jobs
On Tue, 19 Dec 2006, Fabrice Charlier wrote:
> I have a question about the condor_submit command: Is it possible to
> give a name to the job when it's submitted?
> I know that with Torque/PBS it's possible but I didn't found nothing
> about this functionality in the documentation of Condor.
Well, it depends on exactly what you mean by "naming" the job. You
can't do something like specify a given cluster ID for your job.
You can, however, do something like this:
condor_submit -a '+my_job_name = "foobar"' <submit_file>
(note the "+")
and then:
condor_rm -const 'my_job_name == "foobar"'
The -constraint flag works on a number of commands, including condor_rm,
condor_q, condor_hold, and condor_release.
Does that answer your question?
Kent Wenger
Condor Team