Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 941 Bytes

SparkInterface.md

File metadata and controls

18 lines (11 loc) · 941 Bytes

SparkInterface

Subtype of TaskInterface. Describes how to deploy a Task to Spark.

Properties

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]