Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public class CustomPartitionerWrapper<K, T> extends StreamPartitioner<T> {
public CustomPartitionerWrapper(Partitioner<K> partitioner, KeySelector<T, K> keySelector) {
this.partitioner = partitioner;
this.keySelector = keySelector;
disableUnalignedCheckpoints();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,8 @@ public static Object[][] getScaleFactors() {
Object[][] parameters =
new Object[][] {
// Disable CUSTOM_PARTITIONER since it does not work well, see FLINK-39162
// new Object[] {"downscale", Topology.CUSTOM_PARTITIONER, 3, 2, 0L},
new Object[] {"downscale", Topology.CUSTOM_PARTITIONER, 3, 2, 0L},
new Object[] {"upscale", Topology.CUSTOM_PARTITIONER, 2, 3, 0L},
new Object[] {"downscale", Topology.KEYED_DIFFERENT_PARALLELISM, 12, 7, 0L},
new Object[] {"upscale", Topology.KEYED_DIFFERENT_PARALLELISM, 7, 12, 0L},
new Object[] {"downscale", Topology.KEYED_DIFFERENT_PARALLELISM, 5, 3, 5L},
Expand Down