You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by az...@apache.org on 2019/11/07 21:55:59 UTC

[flink] 08/21: [FLINK-13986][core][config] Change default value of flip49 feature flag to true

This is an automated email from the ASF dual-hosted git repository.

azagrebin pushed a commit to branch FLINK-13986-flip49-cleanup-e2e
in repository https://gitbox.apache.org/repos/asf/flink.git

commit e1daac36f0ac6e5e2039823d0a48ef576839f437
Author: Xintong Song <to...@gmail.com>
AuthorDate: Wed Oct 16 21:00:09 2019 +0800

    [FLINK-13986][core][config] Change default value of flip49 feature flag to true
---
 .../main/java/org/apache/flink/configuration/TaskManagerOptions.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-core/src/main/java/org/apache/flink/configuration/TaskManagerOptions.java b/flink-core/src/main/java/org/apache/flink/configuration/TaskManagerOptions.java
index b190ee8..7d1492c 100644
--- a/flink-core/src/main/java/org/apache/flink/configuration/TaskManagerOptions.java
+++ b/flink-core/src/main/java/org/apache/flink/configuration/TaskManagerOptions.java
@@ -484,7 +484,7 @@ public class TaskManagerOptions {
 	@Documentation.ExcludeFromDocumentation("FLIP-49 is still in development.")
 	public static final ConfigOption<Boolean> ENABLE_FLIP_49_CONFIG =
 			key("taskmanager.enable-flip-49")
-			.defaultValue(false)
+			.defaultValue(true)
 			.withDescription("Toggle to switch between FLIP-49 and current task manager memory configurations.");
 
 	/** Not intended to be instantiated. */