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/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new abb7798132 [core] Increase 'sink.writer-coordinator.cache-memory' 
(soft reference) to 2GB
abb7798132 is described below

commit abb77981326465717d12903ebad81659fd0ba6f4
Author: JingsongLi <[email protected]>
AuthorDate: Thu Sep 4 10:55:06 2025 +0800

    [core] Increase 'sink.writer-coordinator.cache-memory' (soft reference) to 
2GB
---
 docs/layouts/shortcodes/generated/flink_connector_configuration.html    | 2 +-
 .../src/main/java/org/apache/paimon/flink/FlinkConnectorOptions.java    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/docs/layouts/shortcodes/generated/flink_connector_configuration.html 
b/docs/layouts/shortcodes/generated/flink_connector_configuration.html
index 02b9e15ad6..30aa9dea29 100644
--- a/docs/layouts/shortcodes/generated/flink_connector_configuration.html
+++ b/docs/layouts/shortcodes/generated/flink_connector_configuration.html
@@ -298,7 +298,7 @@ under the License.
         </tr>
         <tr>
             <td><h5>sink.writer-coordinator.cache-memory</h5></td>
-            <td style="word-wrap: break-word;">1 gb</td>
+            <td style="word-wrap: break-word;">2 gb</td>
             <td>MemorySize</td>
             <td>Controls the cache memory of writer coordinator to cache 
manifest files in Job Manager.</td>
         </tr>
diff --git 
a/paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/FlinkConnectorOptions.java
 
b/paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/FlinkConnectorOptions.java
index d9cc7cb7e2..eaf959b477 100644
--- 
a/paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/FlinkConnectorOptions.java
+++ 
b/paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/FlinkConnectorOptions.java
@@ -513,7 +513,7 @@ public class FlinkConnectorOptions {
     public static final ConfigOption<MemorySize> 
SINK_WRITER_COORDINATOR_CACHE_MEMORY =
             key("sink.writer-coordinator.cache-memory")
                     .memoryType()
-                    .defaultValue(MemorySize.ofMebiBytes(1024))
+                    .defaultValue(MemorySize.ofMebiBytes(2048))
                     .withDescription(
                             "Controls the cache memory of writer coordinator 
to cache manifest files in Job Manager.");
 

Reply via email to