Packages

class StateStoreConf extends Serializable

A class that contains configuration parameters for StateStores.

Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StateStoreConf
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new StateStoreConf()
  2. new StateStoreConf(sqlConf: SQLConf, extraOptions: Map[String, String] = Map.empty)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. val compressionCodec: String

    The compression codec used to compress delta and snapshot files.

  7. val enableStateStoreCheckpointIds: Boolean

    When creating new state store checkpoint, which format version to use.

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. val extraOptions: Map[String, String]
  11. val formatValidationCheckValue: Boolean

    Whether to validate the value side.

    Whether to validate the value side. This config is applied to both validators as below:

    - whether to validate the value format when the format validation is enabled. - whether to validate the value schema when the state schema check is enabled.

  12. val formatValidationEnabled: Boolean

    Whether validate the underlying format or not.

  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. val maintenanceInterval: Long

    The interval of maintenance tasks.

  17. val maxVersionsToRetainInMemory: Int

    Maximum count of versions a State Store implementation should retain in memory

  18. val minDeltasForSnapshot: Int

    Minimum number of delta files in a chain after which HDFSBackedStateStore will consider generating a snapshot.

  19. val minVersionsToDelete: Long

    Minimum number of stale checkpoint versions that need to be present in the DFS checkpoint directory for old state checkpoint version deletion to be invoked.

    Minimum number of stale checkpoint versions that need to be present in the DFS checkpoint directory for old state checkpoint version deletion to be invoked. This is to amortize the cost of discovering and deleting old checkpoint versions.

  20. val minVersionsToRetain: Int

    Minimum versions a State Store implementation should retain to allow rollbacks

  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  24. val numStateStoreMaintenanceThreads: Int

    Size of MaintenanceThreadPool to perform maintenance tasks for StateStore

  25. val providerClass: String

    Optional fully qualified name of the subclass of StateStoreProvider managing state data.

    Optional fully qualified name of the subclass of StateStoreProvider managing state data. That is, the implementation of the State Store to use.

  26. val skipNullsForStreamStreamJoins: Boolean

    Whether to skip null values for hash based stream-stream joins.

  27. val sqlConfs: Map[String, String]

    Additional configurations related to state store.

    Additional configurations related to state store. This will capture all configs in SQLConf that start with spark.sql.streaming.stateStore.

  28. val stateSchemaCheckEnabled: Boolean

    whether to validate state schema during query run.

  29. val stateStoreEncodingFormat: String

    The interval of maintenance tasks.

  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped