Apache Flink streaming applications are typically designed to run indefinitely or for long periods of time. As with all long-running services, the applications need to be updated to adapt to changing requirements. This goes the same for data schemas that the applications work against; they evolve along with the application.
This page provides an overview of how you can evolve your state type’s data schema.
The current restrictions varies across different types and state structures (ValueState
, ListState
, etc.).
Note that the information on this page is relevant only if you are using state serializers that are
generated by Flink’s own type serialization framework.
That is, when declaring your state, the provided state descriptor is not configured to use a specific TypeSerializer
or TypeInformation
, in which case Flink infers information about the state type:
Under the hood, whether or not the schema of state can be evolved depends on the serializer used to read / write persisted state bytes. Simply put, a registered state’s schema can only be evolved if its serializer properly supports it. This is handled transparently by serializers generated by Flink’s type serialization framework (current scope of support is listed below).
If you intend to implement a custom TypeSerializer
for your state type and would like to learn how to implement
the serializer to support state schema evolution, please refer to
Custom State Serialization.
The documentation there also covers necessary internal details about the interplay between state serializers and Flink’s
state backends to support state schema evolution.
To evolve the schema of a given state type, you would take the following steps:
The process of migrating state to adapt to changed schemas happens automatically, and independently for each state. This process is performed internally by Flink by first checking if the new serializer for the state has different serialization schema than the previous serializer; if so, the previous serializer is used to read the state to objects, and written back to bytes again with the new serializer.
Further details about the migration process is out of the scope of this documentation; please refer to here.
Currently, schema evolution is supported only for POJO and Avro types. Therefore, if you care about schema evolution for state, it is currently recommended to always use either Pojo or Avro for state data types.
There are plans to extend the support for more composite types; for more details, please refer to FLINK-10896.
Flink supports evolving schema of POJO types, based on the following set of rules:
Note that the schema of POJO type state can only be evolved when restoring from a previous savepoint with Flink versions newer than 1.8.0. When restoring with Flink versions older than 1.8.0, the schema cannot be changed.
Flink fully supports evolving schema of Avro type state, as long as the schema change is considered compatible by Avro’s rules for schema resolution.
One limitation is that Avro generated classes used as the state type cannot be relocated or have different namespaces when the job is restored.
Attention Schema evolution of keys is not supported.
Example: RocksDB state backend relies on binary objects identity, rather than hashCode
method implementation. Any changes to the keys object structure could lead to non deterministic behaviour.
Attention Kryo cannot be used for schema evolution.
When Kryo is used, there is no possibility for the framework to verify if any incompatible changes have been made.