Class SavepointConfigOptions
- java.lang.Object
-
- org.apache.flink.runtime.jobgraph.SavepointConfigOptions
-
@PublicEvolving @Deprecated public class SavepointConfigOptions extends Object
Deprecated.Theconfiguration optionsused when restoring from a savepoint. @Deprecated All options are moved intoStateRecoveryOptions.
-
-
Field Summary
Fields Modifier and Type Field Description static org.apache.flink.configuration.ConfigOption<org.apache.flink.core.execution.RestoreMode>RESTORE_MODEDeprecated.Describes the mode how Flink should restore from the given savepoint or retained checkpoint.static org.apache.flink.configuration.ConfigOption<Boolean>SAVEPOINT_IGNORE_UNCLAIMED_STATEDeprecated.A flag indicating if we allow Flink to skip savepoint state that cannot be restored, e.g.static org.apache.flink.configuration.ConfigOption<String>SAVEPOINT_PATHDeprecated.The path to a savepoint that will be used to bootstrap the pipeline's state.
-
Constructor Summary
Constructors Constructor Description SavepointConfigOptions()Deprecated.
-
-
-
Field Detail
-
SAVEPOINT_PATH
public static final org.apache.flink.configuration.ConfigOption<String> SAVEPOINT_PATH
Deprecated.The path to a savepoint that will be used to bootstrap the pipeline's state.
-
SAVEPOINT_IGNORE_UNCLAIMED_STATE
public static final org.apache.flink.configuration.ConfigOption<Boolean> SAVEPOINT_IGNORE_UNCLAIMED_STATE
Deprecated.A flag indicating if we allow Flink to skip savepoint state that cannot be restored, e.g. because the corresponding operator has been removed.
-
RESTORE_MODE
public static final org.apache.flink.configuration.ConfigOption<org.apache.flink.core.execution.RestoreMode> RESTORE_MODE
Deprecated.Describes the mode how Flink should restore from the given savepoint or retained checkpoint.
-
-