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 7dbda68c9 [doc] Consistency Guarantees description is faulty (#1974)
7dbda68c9 is described below

commit 7dbda68c9de35e368ad9972e2d92cb5974ae9f67
Author: zekai-li <[email protected]>
AuthorDate: Fri Sep 8 17:18:14 2023 +0800

    [doc] Consistency Guarantees description is faulty (#1974)
---
 docs/content/concepts/basic-concepts.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/content/concepts/basic-concepts.md 
b/docs/content/concepts/basic-concepts.md
index 84e791802..c52f58112 100644
--- a/docs/content/concepts/basic-concepts.md
+++ b/docs/content/concepts/basic-concepts.md
@@ -58,4 +58,4 @@ See [file layouts]({{< ref "concepts/file-layouts" >}}) for 
how files are divide
 
 Paimon writers use two-phase commit protocol to atomically commit a batch of 
records to the table. Each commit produces at most two [snapshots]({{< ref 
"concepts/basic-concepts#snapshot" >}}) at commit time.
 
-For any two writers modifying a table at the same time, as long as they do not 
modify the same bucket, their commits are serializable. If they modify the same 
bucket, only snapshot isolation is guaranteed. That is, the final table state 
may be a mix of the two commits, but no changes are lost.
+For any two writers modifying a table at the same time, as long as they do not 
modify the same bucket, their commits can occur in parallel. If they modify the 
same bucket, only snapshot isolation is guaranteed. That is, the final table 
state may be a mix of the two commits, but no changes are lost.

Reply via email to