Skip to content
This repository has been archived by the owner on Aug 3, 2020. It is now read-only.

[FLINK-15171] fix issue with netty shuffle buffer allocation skewing benchmark results #43

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -41,6 +41,8 @@ public void execute() throws Exception {
protected Configuration createConfiguration() {
final Configuration configuration = new Configuration();
configuration.setInteger(NettyShuffleEnvironmentOptions.NETWORK_NUM_BUFFERS, NUM_NETWORK_BUFFERS);
configuration.setString("taskmanager.network.memory.max", "8m");
configuration.setString("taskmanager.network.memory.min", "4m");
return configuration;
}

Expand Down