Subtype of TaskInterface. Describes how to deploy a Task to Spark.
Name | Type | Description | Notes |
---|---|---|---|
file | String | An URI where the executable of the Spark Application can be retrieved. Either a URL pointing to a web endpoint, or a locally available file. | [optional] |
className | String | Optional className of the class containing the main method. Only required for Java. | [optional] |
arguments | List<String> | Array of arguments passed to the application. | [optional] |
sparkArguments | Map<String, String> | A key - value type of Map using <String, String>. | [optional] |
sparkConfiguration | Map<String, String> | A key - value type of Map using <String, String>. | [optional] |
processMapping | ProcessMapping | [optional] |