Module Values.SparkSubmitJobDriverSource

The information about job driver for Spark submit.

Sourcetype nonrec t = {
  1. entryPoint : EntryPointPath.t;
    (*

    The entry point of job application.

    *)
  2. entryPointArguments : EntryPointArguments.t option;
    (*

    The arguments for job application.

    *)
  3. sparkSubmitParameters : SparkSubmitParameters.t option;
    (*

    The Spark submit parameters that are used for job runs.

    *)
}
Sourceval context_ : string
Sourceval make : ?entryPointArguments:??? -> ?sparkSubmitParameters:??? -> entryPoint:EntryPointPath.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of EntryPointArgument.t ] list | `String of EntryPointPath.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t