diff --git a/pom.xml b/pom.xml index 6434cf1..00b0146 100644 --- a/pom.xml +++ b/pom.xml @@ -45,7 +45,7 @@ under the License. UTF-8 - 2.3-SNAPSHOT + 2.4-SNAPSHOT 20.0 2.0.62.Final 1.8 diff --git a/src/main/java/org/apache/flink/benchmark/FlinkEnvironmentContext.java b/src/main/java/org/apache/flink/benchmark/FlinkEnvironmentContext.java index c3fa19c..439da2c 100644 --- a/src/main/java/org/apache/flink/benchmark/FlinkEnvironmentContext.java +++ b/src/main/java/org/apache/flink/benchmark/FlinkEnvironmentContext.java @@ -35,6 +35,7 @@ import java.time.Duration; +import static org.apache.flink.configuration.NettyShuffleEnvironmentOptions.DATA_SSL_ENABLED; import static org.apache.flink.configuration.ResourceManagerOptions.REQUIREMENTS_CHECK_DELAY; import static org.openjdk.jmh.annotations.Scope.Thread; @@ -53,6 +54,7 @@ public void setUp() throws Exception { throw new RuntimeException("setUp was called multiple times!"); } final Configuration clusterConfig = createConfiguration(); + clusterConfig.set(DATA_SSL_ENABLED, false); clusterConfig.set(RestartStrategyOptions.RESTART_STRATEGY, "none"); clusterConfig.set(StateBackendOptions.STATE_BACKEND, "hashmap"); miniCluster =