Defining Job properties in a Job script
Unless you are creating a standard Talend Job without any context parameters in a Job script, you need first to define your Job type and context parameters.
To create a Big Data Job, you need to subscribe to the relevant Big Data capable Talend product.
Job properties
Function/parameter | Description | Mandatory? |
---|---|---|
JobType |
Specify the type of the Job. Acceptable values:
You can skip this parameter if you are creating a standard Job. |
Yes for Big Data Jobs |
Framework |
Specify a Big Data framework. Acceptable values:
Skip this parameter if you are creating a standard Job. |
Yes for Big Data Jobs |
DEFAULT_CONTEXT |
Specify the default context. For more information, see Defining contexts and variables in a Job script. |
No |
ContextType {} |
Define a context and its parameters. For more information, see Defining contexts and variables in a Job script. |
No |
Example
The following Job script example shows how to define a Big Data Spark Batch Job to run on the Spark framework.
JobType= Big_Data_Batch,
Framework= Spark,