Class

org.apache.spark.sql

RuntimeConfig

Related Doc: package sql

Permalink

class RuntimeConfig extends AnyRef

Runtime configuration interface for Spark. To access this, use SparkSession.conf.

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

Annotations
@Stable()
Source
RuntimeConfig.scala
Since

2.0.0

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RuntimeConfig
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def contains(key: String): Boolean

    Permalink

    Returns whether a particular key is set.

    Returns whether a particular key is set.

    Attributes
    protected[org.apache.spark.sql]
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def get[T](entry: ConfigEntry[T], default: T): T

    Permalink

    Returns the value of Spark runtime configuration property for the given key.

    Returns the value of Spark runtime configuration property for the given key.

    Attributes
    protected[org.apache.spark.sql]
  11. def get[T](entry: OptionalConfigEntry[T]): Option[T]

    Permalink
    Attributes
    protected[org.apache.spark.sql]
  12. def get[T](entry: ConfigEntry[T]): T

    Permalink

    Returns the value of Spark runtime configuration property for the given key.

    Returns the value of Spark runtime configuration property for the given key.

    Attributes
    protected[org.apache.spark.sql]
    Annotations
    @throws( "if the key is not set" )
  13. def get(key: String, default: String): String

    Permalink

    Returns the value of Spark runtime configuration property for the given key.

    Returns the value of Spark runtime configuration property for the given key.

    Since

    2.0.0

  14. def get(key: String): String

    Permalink

    Returns the value of Spark runtime configuration property for the given key.

    Returns the value of Spark runtime configuration property for the given key.

    Annotations
    @throws( "if the key is not set" )
    Since

    2.0.0

    Exceptions thrown

    java.util.NoSuchElementException if the key is not set and does not have a default value

  15. def getAll: Map[String, String]

    Permalink

    Returns all properties set in this conf.

    Returns all properties set in this conf.

    Since

    2.0.0

  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def getOption(key: String): Option[String]

    Permalink

    Returns the value of Spark runtime configuration property for the given key.

    Returns the value of Spark runtime configuration property for the given key.

    Since

    2.0.0

  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. def set(key: String, value: Long): Unit

    Permalink

    Sets the given Spark runtime configuration property.

    Sets the given Spark runtime configuration property.

    Since

    2.0.0

  24. def set(key: String, value: Boolean): Unit

    Permalink

    Sets the given Spark runtime configuration property.

    Sets the given Spark runtime configuration property.

    Since

    2.0.0

  25. def set(key: String, value: String): Unit

    Permalink

    Sets the given Spark runtime configuration property.

    Sets the given Spark runtime configuration property.

    Since

    2.0.0

  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  28. def unset(key: String): Unit

    Permalink

    Resets the configuration property for the given key.

    Resets the configuration property for the given key.

    Since

    2.0.0

  29. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped