Members
gAppName
Configuration for a Spark application. Used to set various Spark parameters as key-value pairs.
Most of the time, you would create a SparkConf object with `new SparkConf()`, which will load
values from any `spark.*` Java system properties set in your application as well. In this case,
parameters you set directly on the `SparkConf` object take priority over system properties.
For unit tests, you can also call `new SparkConf(false)` to skip loading external settings and
get the same configuration no matter what the system properties are.
All setter methods in this class support chaining. For example, you can write
`new SparkConf().setMaster("local").setAppName("My app")`.
Note that once a SparkConf object is passed to Spark, it is cloned and can no longer be modified
by the user. Spark does not support modifying the configuration at runtime.
- Source:
Methods
handleArguments()
Returns a promise that resolves once all the arguments have been resolved.