Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Runtime configuration interface for Spark.
This is the interface through which the user can get and set all Spark and Hadoop configurations relevant to Spark SQL. When getting the value of a config, this defaults to the value set in the underlying SparkContext, if any.
Syntax
conf
Returns
pyspark.sql.conf.RuntimeConfig
Examples
spark.conf
# Set a runtime configuration for the session.
spark.conf.set("key", "value")
spark.conf.get("key")
# 'value'