Tags:
create new tag
,
view all tags
<BODY> <H1>glite-ce-job-submit</H1> Section: User Commands (1)<BR><A HREF="#index">Index</A> <HR> <A NAME="lbAB"> </A> <H2>NAME</H2> glite-ce-job-submit - Allows the user to submit a job for execution on a CREAM based CE <A NAME="lbAC"> </A> <H2>SYNOPSIS</H2> <B>glite-ce-job-submit --resource CEId [options] <jdl_file></B> <A NAME="lbAD"> </A> <H2>DESCRIPTION</H2> glite-ce-job-submit is the command for submitting jobs to CREAM based Computing Elements. glite-ce-job-submit requires as mandatory inputs: <P> o the identifier of the CREAM CE, specified using the option --resource (-r), where the job has to be submitted; <P> o a job description (JDL) file in which job characteristics and requirements have been specified via a CREAM JDL expression. <P> The job description file given in input to this command is syntactically checked and default values are assigned to the not provided mandatory attributes in order to create a meaningful class-ad. The resulting ad is then sent to the CREAM CE. <P> Upon successful submission, this command returns to the user the submitted CREAM job identifier (jobId), a string that identifies unambiguously the job, that can be later used as a handle to perform monitor and control operations on the job. <P> The format of the CREAM jobId is as follows: <P> https://<CREAM_full_hostname>:<port>/CREAM<unique_string> <P> It is possible to redirect the returned jobId to an output file using the --output (-o) option. If the file already exists, the user is asked if she wants to overwrite the file, or if she prefers to abort the operation. <P> The --resource (-r) directive must be used to target the job submission to a specific CREAM CE, identified by its identifier CEId. The CREAM CE identifier is a string that unambiguously identifies a CE CREAM service belonging to the Grid. The standard format for a CREAM CEId is: <P> <full-hostname>:<port-number>/cream-<service>-<queue-name> <P> where <service> identifies the underlying resource management system (e.g. lsf, pbs, etc.). <P> The submitted job is given the delegated credentials of the user who submitted the job: these credentials can then be used when operations requiring security support (e.g. gridftp file transfers) has to be performed by the job. It is possible to rely on credentials previously delegated with the glite-ce-delegate-proxy command or it is possible to ask the ``automatic'' delegation of the same credentials used during the submission operation. In the former case the --delegationId (-D) option must be specified, while in the latter case the --autm-delegation (-a) option must be used. Please note that one (and only one) among these two options must be specified. <P> <P> <A NAME="lbAE"> </A> <H2>OPTIONS</H2> <DL COMPACT> <DT><B>--help, -h</B> <DD> Displays command usage. <P> <DT><B>--conf file_name, -c file_name</B> <DD> Specifies the user specific configuration file. <P> <DT><B>--resource ce_id, -r ce_id</B> <DD> Specifies that the job has to be submitted to the CREAM CE identified by the specified ce_id. Standard format for the CREAM CEId is: <P> <full hostname>:<port number>/cream-<service>-<queue name> <P> where <service> specifies the underlying local resource management system (e.g. lsf, pbs, etc.) <P> <DT><B>--autm-delegation, -a </B> <DD> Specifies that the proxy credentials that have to be delegated are the ones used for this job submission. <P> <DT><B>--delegationId ID, -D ID </B> <DD> Forces the submitted job to use previously delegated (via the command glite-ce-delegate-proxy) user credentials, identified with the specified ID. <P> <P> <DT><B>--donot-verify-ac-sign, -A</B> <DD> Allows the execution of the command even if the VO voms server certificate is not installed. <P> <DT><B>--vo VO_name, -V VO_name</B> <DD> Specifies the Virtual Organisation the user belongs to. This option is ignored if the user issued the command using a VOMS proxy: in this case in fact the VO to be considered is the one specified in the VOMS proxy. <P> <DT><B>--output file_name, -o file_name</B> <DD> Writes the generated jobId assigned to the submitted job in the file specified by file_name. file_name can be either a simple name or an absolute path on the submitting machine. In the former case the file file_name is considered in the current working directory. <P> <DT><B>--noint, -N</B> <DD> If this option is specified every interactive question to the user is skipped, and default values (yes; all: consider all jobs of the given list) will be considered. <P> <DT><B>--nomsg, -n</B> <DD> This option makes the command print on the standard output only the jobId generated for the job if submission was successful (or error messages in case of failure). Therefore any warning or info message is suppressed if this option is used. <P> <DT><B>--debug, -d</B> <DD> When this option is specified, debugging information is displayed on the standard output and written also into the file glite-ce-job-submit_CREAM_<username>_<date>_<time>.log file under (by default) the /tmp/glite_cream_cli_logs directory. <P> <DT><B>--logfile file_name, -l file_name</B> <DD> When this option is specified, a command log file (whose pathname is file_name) is created. <P> <DT><B>--version, -v</B> <DD> Displays the version of the CREAM CLI software. <P> </DL> <A NAME="lbAF"> </A> <H2>EXIT STATUS</H2> glite-ce-job-submit exits with a status value of 0 (zero) upon success, and >0 (greater than zero) upon failure. <P> <A NAME="lbAG"> </A> <H2>EXAMPLES</H2> glite-ce-job-submit -a -r grid005.pd.infn.it:8443/cream-lsf-grid02 myjob1.jdl <P> where myjob1.jdl is e.g. as follows: <P> [ <BR> JobType = "Normal"; <BR> Executable = "sum.exe"; <BR> StdOutput="out.out"; <BR> StdError="err.err"; <BR> Environment={"CMSVER=321"}; <BR> InputSandbox={"<A HREF="file:///home/user/sum.exe">file:///home/user/sum.exe</A>", "otherfile"}; <BR> InputSandboxBaseUri="<A HREF="gsiftp://se1.pd.infn.it/cmssw">gsiftp://se1.pd.infn.it/cmssw</A>"; <BR> OutputSandbox={"out.out", "err.err", ``hist.out''}; <BR> OutputSandboxBaseDestUri="<A HREF="gsiftp://se2.pd.infn.it/myfiles">gsiftp://se2.pd.infn.it/myfiles</A>"; <BR> ] <P> <P> <A NAME="lbAH"> </A> <H2>SEE ALSO</H2> glite-ce-delegate-proxy <P> <P> <P> <HR> <A NAME="index"> </A><H2>Index</H2> <DL> <DT><A HREF="#lbAB">NAME</A><DD> <DT><A HREF="#lbAC">SYNOPSIS</A><DD> <DT><A HREF="#lbAD">DESCRIPTION</A><DD> <DT><A HREF="#lbAE">OPTIONS</A><DD> <DT><A HREF="#lbAF">EXIT STATUS</A><DD> <DT><A HREF="#lbAG">EXAMPLES</A><DD> <DT><A HREF="#lbAH">SEE ALSO</A><DD> </DL> <HR> This document was created by <A HREF="/cgi-bin/man/man2html">man2html</A>, using the manual pages.<BR> Time: 10:51:41 GMT, April 29, 2011 </BODY> -- Main.MassimoSgaravatto - 2011-04-29
E
dit
|
A
ttach
|
PDF
|
H
istory
: r1
|
B
acklinks
|
V
iew topic
|
M
ore topic actions
Topic revision: r1 - 2011-04-29
-
MassimoSgaravatto
Home
Site map
CEMon web
CREAM web
Cloud web
Cyclops web
DGAS web
EgeeJra1It web
Gows web
GridOversight web
IGIPortal web
IGIRelease web
MPI web
Main web
MarcheCloud web
MarcheCloudPilotaCNAF web
Middleware web
Operations web
Sandbox web
Security web
SiteAdminCorner web
TWiki web
Training web
UserSupport web
VOMS web
WMS web
WMSMonitor web
WeNMR web
General Doc
Functional Description
Batch System Support
CREAM and Information Service
Release Notes
Known Issues
Security in CREAM
Nagios Probes to monitor CREAM and WN
Papers
Presentations
User Doc
CREAM User Guide for EMI-1
CREAM User Guide for EMI-2
CREAM User Guide for EMI-3
CREAM JDL Guide
BLAH User Guide
Troubleshooting Guide
System Administrator Doc
System Administrator Guide for CREAM (EMI-3 release)
System Administrator Guide for CREAM (EMI-2 release)
System Administrator Guide for CREAM (EMI-1 release)
The CREAM configuration file
The CEMonitor configuration file
The CREAM CE Service Reference Card (EMI-2 release)
The CREAM CE Service Reference Card (EMI-1 release)
Batch System related documentation
Troubleshooting Guide
The guide for integrating EMIR in CREAM
]
Developers Doc
CREAM Client API C++ Documentation
CREAM Client API for Python
Other Doc
Contacts
Moving to CREAM from LCG-CE
Testing
Internal Collaboration Information
Credits
CREAM Web utilities
Create New Topic
Index
Search
Changes
Notifications
RSS Feed
Statistics
Preferences
P
P
View
Raw View
Print version
Find backlinks
History
More topic actions
Edit
Raw edit
Attach file or image
Edit topic preference settings
Set new parent
More topic actions
Account
Log In
E
dit
A
ttach
Copyright © 2008-2022 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback