XComp commented on code in PR #22377:
URL: https://github.com/apache/flink/pull/22377#discussion_r1163824425
##########
flink-tests/src/test/java/org/apache/flink/test/checkpointing/StatefulJobSnapshotMigrationITCase.java:
##########
@@ -136,6 +136,9 @@ public void testSavepoint() throws Exception {
switch (snapshotSpec.getStateBackendType()) {
case StateBackendLoader.ROCKSDB_STATE_BACKEND_NAME:
env.setStateBackend(new EmbeddedRocksDBStateBackend());
+ // disable changelog backend for now to ensure determinism in
test data generation
+ // (see FLINK-31766)
+ env.enableChangelogStateBackend(false);
Review Comment:
good catch. I'm gonna update it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]