This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch release-0.8 in repository https://gitbox.apache.org/repos/asf/paimon.git
commit f3e67b7b311db773c6b0fd74b82f7e1a5f1cffe4 Author: GuojunLi <[email protected]> AuthorDate: Tue May 28 20:07:54 2024 +0800 [doc] Update managed memory guide for write buffer managing (#3417) --- docs/content/maintenance/write-performance.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/content/maintenance/write-performance.md b/docs/content/maintenance/write-performance.md index 0129c07a0..d69cdc1a9 100644 --- a/docs/content/maintenance/write-performance.md +++ b/docs/content/maintenance/write-performance.md @@ -249,6 +249,10 @@ If your Flink job does not rely on state, please avoid using managed memory, whi ```shell taskmanager.memory.managed.size=1m ``` +Or you can use Flink managed memory for your write buffer to avoid OOM, set table property: +```shell +sink.use-managed-memory-allocator=true +``` ## Commit Memory
