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/incubator-paimon.git
The following commit(s) were added to refs/heads/master by this push:
new e6d46f68e [core] Add one more possible cause in commit conflict
exception message (#2329)
e6d46f68e is described below
commit e6d46f68e6a3710c7ac77fb21805e7351e395796
Author: tsreaper <[email protected]>
AuthorDate: Fri Nov 17 14:56:45 2023 +0800
[core] Add one more possible cause in commit conflict exception message
(#2329)
---
.../main/java/org/apache/paimon/operation/FileStoreCommitImpl.java | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git
a/paimon-core/src/main/java/org/apache/paimon/operation/FileStoreCommitImpl.java
b/paimon-core/src/main/java/org/apache/paimon/operation/FileStoreCommitImpl.java
index b4b230653..494503df1 100644
---
a/paimon-core/src/main/java/org/apache/paimon/operation/FileStoreCommitImpl.java
+++
b/paimon-core/src/main/java/org/apache/paimon/operation/FileStoreCommitImpl.java
@@ -982,8 +982,9 @@ public class FileStoreCommitImpl implements FileStoreCommit
{
+ "(most probably due to checkpoint timeout).",
" See
https://paimon.apache.org/docs/master/maintenance/write-performance/ "
+ "for how to improve writing performance.",
- "2. Multiple jobs are writing into the same partition
at the same time "
- + "(you'll probably see different base commit
user and current commit user below).",
+ "2. Multiple jobs are writing into the same partition
at the same time, "
+ + "or you use STATEMENT SET to execute
multiple INSERT statements into the same Paimon table.",
+ " You'll probably see different base commit user and
current commit user below.",
" You can use "
+
"https://paimon.apache.org/docs/master/maintenance/dedicated-compaction#dedicated-compaction-job"
+ "to support multiple writing.",