Submitting a command line job
Namespace: VcClientAssembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)
Syntax
C# |
---|
[ObsoleteAttribute("Use SubmitJob(SubmitJobParameters parameters, bool compression) instead. And Override.SubmitAlgebraJob funtion is also obsoleted, override Override.SubmitJob instead if necessary")] public static JobInfo SubmitJob( string name, int priority, int vcPercentAllocation, List<string> resources, List<string> embeddedFiles, string cmdLine, bool compression, Guid jobId ) |
Visual Basic |
---|
<ObsoleteAttribute("Use SubmitJob(SubmitJobParameters parameters, bool compression) instead. And Override.SubmitAlgebraJob funtion is also obsoleted, override Override.SubmitJob instead if necessary")> _ Public Shared Function SubmitJob ( _ name As String, _ priority As Integer, _ vcPercentAllocation As Integer, _ resources As List(Of String), _ embeddedFiles As List(Of String), _ cmdLine As String, _ compression As Boolean, _ jobId As Guid _ ) As JobInfo |
Visual C++ |
---|
[ObsoleteAttribute(L"Use SubmitJob(SubmitJobParameters parameters, bool compression) instead. And Override.SubmitAlgebraJob funtion is also obsoleted, override Override.SubmitJob instead if necessary")] public: static JobInfo^ SubmitJob( String^ name, int priority, int vcPercentAllocation, List<String^>^ resources, List<String^>^ embeddedFiles, String^ cmdLine, bool compression, Guid jobId ) |
Parameters
- name
- Type: String
Job Name
- priority
- Type: Int32
Job Priority. Lower values have higher priority.
- vcPercentAllocation
- Type: Int32
This should be a number between 1 and 100, inclusive. Passing -1 will use the default value.
- resources
- Type: List<(Of <(<'String>)>)>
List of cluster resources used by the job
- embeddedFiles
- Type: List<(Of <(<'String>)>)>
List of files that need to be uploaded with the job
- cmdLine
- Type: String
The command line to be executed
- compression
- Type: Boolean
Whether to use compression while submitting the job and uploaded files needed by the job
- jobId
- Type: Guid
Job identifier.