You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by lz...@apache.org on 2022/07/08 09:18:36 UTC

[flink-table-store] branch master updated: [hotfix] Adjust write-buffer-size to 128 MB for quick start

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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-table-store.git


The following commit(s) were added to refs/heads/master by this push:
     new edfac969 [hotfix] Adjust write-buffer-size to 128 MB for quick start
edfac969 is described below

commit edfac9692de28803708564df9cce932ca9b90104
Author: JingsongLi <lz...@aliyun.com>
AuthorDate: Fri Jul 8 17:18:26 2022 +0800

    [hotfix] Adjust write-buffer-size to 128 MB for quick start
---
 .../src/main/java/org/apache/flink/table/store/CoreOptions.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java b/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java
index caa3a43e..a45b5b6f 100644
--- a/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java
+++ b/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java
@@ -164,7 +164,7 @@ public class CoreOptions implements Serializable {
     public static final ConfigOption<MemorySize> WRITE_BUFFER_SIZE =
             ConfigOptions.key("write-buffer-size")
                     .memoryType()
-                    .defaultValue(MemorySize.parse("256 mb"))
+                    .defaultValue(MemorySize.parse("128 mb"))
                     .withDescription(
                             "Amount of data to build up in memory before converting to a sorted on-disk file.");