Annotation Type ExecNodeMetadata
ExecNodes to keep necessary metadata when
serializing/deserializing them in a plan. It's used for internal bookkeeping across Flink
versions, and to provide necessary information to the testing infrastructure.
Each ExecNode needs to be annotated and provide the necessary metadata info so that it
can be correctly serialized and later on instantiated from a string (JSON) plan.
It's possible for one ExecNode class to use multiple annotations to denote ability to
upgrade to more versions. an ExecNode class can be annotated directly with multiple
ExecNodeMetadata annotations, or with a single MultipleExecNodeMetadata
annotation where the MultipleExecNodeMetadata.value() is an array of ExecNodeMetadata annotations.
-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionorg.apache.flink.FlinkVersionUsed for plan validation and potentially plan migration.org.apache.flink.FlinkVersionUsed for operator and potentially savepoint migration.Unique name of theExecNodefor serialization/deserialization and uid() generation.intA positive integer denoting the evolving version of anExecNode, used for serialization/deserialization and uid() generation. -
Optional Element Summary
Optional Elements
-
Element Details
-
name
String name -
version
int version -
minPlanVersion
org.apache.flink.FlinkVersion minPlanVersionUsed for plan validation and potentially plan migration.Needs to be updated when the JSON for the
ExecNodechanges: e.g. after adding an attribute to the JSON spec of the ExecNode.The annotation does not need to be updated for every Flink version. As the name suggests it is about the "minimum" version for a restore. If the minimum version is higher than the current Flink version, plan migration is necessary.
Changing this version will always result in a new
version()for theExecNode.Plan migration tests can use this information.
Completeness tests can verify that restore tests exist for all JSON plan variations.
-
minStateVersion
org.apache.flink.FlinkVersion minStateVersionUsed for operator and potentially savepoint migration.Needs to be updated whenever the state layout of an ExecNode changes. In some cases, the operator can implement and perform state migration. If the minimum version is higher than the current Flink version, savepoint migration is necessary.
Changing this version will always result in a new ExecNode
version().Restore tests can verify that operator migration works for all Flink state versions.
Completeness tests can verify that restore tests exist for all state variations.
-
-
-
consumedOptions
String[] consumedOptionsHard coded list ofExecutionConfigOptionskeys of in the Flink version when the ExecNode was added. Does not reference instances in theExecutionConfigOptionsclass in case those get refactored.Completeness tests can verify that every option is set once in restore and change detection tests.
Completeness tests can verify that the
ExecutionConfigOptionsclass still contains an option (via key or fallback key) for the given key.Restore can verify whether the restored ExecNode config map contains only options of the given keys.
Common options used for all
StreamExecNodes:ExecutionConfigOptions.TABLE_EXEC_SIMPLIFY_OPERATOR_NAME_ENABLEDExecutionConfigOptions.TABLE_EXEC_RESOURCE_DEFAULT_PARALLELISM
- Default:
- {}
-
producedTransformations
String[] producedTransformationsSet of transformation names that can be part of the resultingTransformations.Restore and completeness tests can verify there exists at least one test that adds each operator and that the created
Transformations contain only operators withTransformation.getUid()containing the given operator names.The concrete combinations or existence of these operators in the final pipeline depends on various parameters (both configuration and ExecNode-specific arguments such as interval size etc.).
- Default:
- {}
-