Share via


Builder.Config Method

Definition

Overloads

Config(SparkConf)

Sets a list of config options based on the given SparkConf

Config(String, Boolean)

Sets a config option. Options set using this method are automatically propagated to both SparkConf and SparkSession's own configuration.

Config(String, Double)

Sets a config option. Options set using this method are automatically propagated to both SparkConf and SparkSession's own configuration.

Config(String, Int64)

Sets a config option. Options set using this method are automatically propagated to both SparkConf and SparkSession's own configuration.

Config(String, String)

Sets a config option. Options set using this method are automatically propagated to both SparkConf and SparkSession's own configuration.

Config(SparkConf)

Sets a list of config options based on the given SparkConf

public Microsoft.Spark.Sql.Builder Config (Microsoft.Spark.SparkConf conf);
member this.Config : Microsoft.Spark.SparkConf -> Microsoft.Spark.Sql.Builder
Public Function Config (conf As SparkConf) As Builder

Parameters

conf
SparkConf

Returns

Applies to

Config(String, Boolean)

Sets a config option. Options set using this method are automatically propagated to both SparkConf and SparkSession's own configuration.

public Microsoft.Spark.Sql.Builder Config (string key, bool value);
member this.Config : string * bool -> Microsoft.Spark.Sql.Builder
Public Function Config (key As String, value As Boolean) As Builder

Parameters

key
String

Key for the configuration

value
Boolean

value of the configuration

Returns

Applies to

Config(String, Double)

Sets a config option. Options set using this method are automatically propagated to both SparkConf and SparkSession's own configuration.

public Microsoft.Spark.Sql.Builder Config (string key, double value);
member this.Config : string * double -> Microsoft.Spark.Sql.Builder
Public Function Config (key As String, value As Double) As Builder

Parameters

key
String

Key for the configuration

value
Double

value of the configuration

Returns

Applies to

Config(String, Int64)

Sets a config option. Options set using this method are automatically propagated to both SparkConf and SparkSession's own configuration.

public Microsoft.Spark.Sql.Builder Config (string key, long value);
member this.Config : string * int64 -> Microsoft.Spark.Sql.Builder
Public Function Config (key As String, value As Long) As Builder

Parameters

key
String

Key for the configuration

value
Int64

value of the configuration

Returns

Applies to

Config(String, String)

Sets a config option. Options set using this method are automatically propagated to both SparkConf and SparkSession's own configuration.

public Microsoft.Spark.Sql.Builder Config (string key, string value);
member this.Config : string * string -> Microsoft.Spark.Sql.Builder
Public Function Config (key As String, value As String) As Builder

Parameters

key
String

Key for the configuration

value
String

value of the configuration

Returns

Applies to