pyspark.sql.conf.RuntimeConfig

class pyspark.sql.conf.RuntimeConfig(jconf)[source]

User-facing configuration API, accessible through SparkSession.conf.

Options set here are automatically propagated to the Hadoop configuration during I/O.

Methods

get(key[, default])

Returns the value of Spark runtime configuration property for the given key, assuming it is set.

isModifiable(key)

Indicates whether the configuration property with the given key is modifiable in the current session.

set(key, value)

Sets the given Spark runtime configuration property.

unset(key)

Resets the configuration property for the given key.