Interface FlinkRunConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlinkRunConfiguration.Builder,FlinkRunConfiguration>,SdkBuilder<FlinkRunConfiguration.Builder,FlinkRunConfiguration>,SdkPojo
- Enclosing class:
- FlinkRunConfiguration
public static interface FlinkRunConfiguration.Builder extends SdkPojo, CopyableBuilder<FlinkRunConfiguration.Builder,FlinkRunConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlinkRunConfiguration.BuilderallowNonRestoredState(Boolean allowNonRestoredState)When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
allowNonRestoredState
FlinkRunConfiguration.Builder allowNonRestoredState(Boolean allowNonRestoredState)
When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program. This will happen if the program is updated between snapshots to remove stateful parameters, and state data in the snapshot no longer corresponds to valid application data. For more information, see Allowing Non-Restored State in the Apache Flink documentation.
This value defaults to
false. If you update your application without specifying this parameter,AllowNonRestoredStatewill be set tofalse, even if it was previously set totrue.- Parameters:
allowNonRestoredState- When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program. This will happen if the program is updated between snapshots to remove stateful parameters, and state data in the snapshot no longer corresponds to valid application data. For more information, see Allowing Non-Restored State in the Apache Flink documentation.This value defaults to
false. If you update your application without specifying this parameter,AllowNonRestoredStatewill be set tofalse, even if it was previously set totrue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-