Module Values.JobDriverSource

Specify the driver that the job runs on. Exactly one of the two available job drivers is required, either sparkSqlJobDriver or sparkSubmitJobDriver.

Sourcetype nonrec t = {
  1. sparkSubmitJobDriver : SparkSubmitJobDriver.t option;
    (*

    The job driver parameters specified for spark submit.

    *)
  2. sparkSqlJobDriver : SparkSqlJobDriver.t option;
    (*

    The job driver for job type.

    *)
}
Sourceval make : ?sparkSubmitJobDriver:??? -> ?sparkSqlJobDriver:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of EntryPointArgument.t ] list | `String of EntryPointPath.t ]) list ]) 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