dawidwys commented on a change in pull request #6711: [FLINK-9377] [core, state
backends] Remove serializers from checkpoints
URL: https://github.com/apache/flink/pull/6711#discussion_r223302936
##########
File path:
flink-core/src/main/java/org/apache/flink/api/common/typeutils/TypeSerializer.java
##########
@@ -215,5 +216,32 @@
*
* @return the determined compatibility result (cannot be {@code null}).
*/
- public abstract CompatibilityResult<T>
ensureCompatibility(TypeSerializerConfigSnapshot configSnapshot);
+ @Deprecated
+ public CompatibilityResult<T>
ensureCompatibility(TypeSerializerConfigSnapshot<?> configSnapshot) {
+ throw new IllegalStateException(
+ "Seems like that you are still using
TypeSerializerConfigSnapshot; if so, this method must be implemented. " +
+ "Once you change to directly use
TypeSerializerSnapshot, then you can safely remove the implementation " +
+ "of this method.");
+ }
+
+ @Internal
+ public final CompatibilityResult<T>
ensureCompatibility(TypeSerializerSnapshot<?> configSnapshot) {
+ if (configSnapshot instanceof TypeSerializerConfigSnapshot) {
+ return
ensureCompatibility((TypeSerializerConfigSnapshot<?>) configSnapshot);
+ } else {
+ @SuppressWarnings("unchecked")
+ TypeSerializerSnapshot<T> casted =
(TypeSerializerSnapshot<T>) configSnapshot;
+
+ TypeSerializerSchemaCompatibility<T, ? extends
TypeSerializer<T>> compat = casted.resolveSchemaCompatibility(this);
+ if (compat.isCompatibleAsIs()) {
+ return CompatibilityResult.compatible();
+ } else if (compat.isCompatibleAfterMigration()) {
+ return CompatibilityResult.requiresMigration();
+ } else if (compat.isIncompatible()) {
+ throw new IllegalStateException("The new
serializer is incompatible.");
+ } else {
+ throw new IllegalStateException("Guard for
future.");
Review comment:
Maybe let's change the message to a bit more meaningful. I know it should
not happen, but better be safe. How about something like: "Corrupted schema
compatibility. This is a bug, please file a JIRA."?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services