Package org.apache.flink.configuration
Class StateBackendOptions
- java.lang.Object
-
- org.apache.flink.configuration.StateBackendOptions
-
@PublicEvolving public class StateBackendOptions extends Object
A collection of all configuration options that relate to state backend.
-
-
Field Summary
Fields Modifier and Type Field Description static ConfigOption<String>
STATE_BACKEND
The checkpoint storage used to store operator state locally within the cluster during execution.
-
Constructor Summary
Constructors Constructor Description StateBackendOptions()
-
-
-
Field Detail
-
STATE_BACKEND
public static final ConfigOption<String> STATE_BACKEND
The checkpoint storage used to store operator state locally within the cluster during execution.The implementation can be specified either via their shortcut name, or via the class name of a
StateBackendFactory
. If a StateBackendFactory class name is specified, the factory is instantiated (via its zero-argument constructor) and itsStateBackendFactory#createFromConfig(ReadableConfig, ClassLoader)
method is called.Recognized shortcut names are 'hashmap' and 'rocksdb'.
-
-