How trino handles conflicts during parallel writing? #21242
Unanswered
C-h-e-r-r-y
asked this question in
Q&A
Replies: 1 comment
-
Unfortunately, it just not related to Trino or compute engine, it on table format. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Consider scenarios:
merge into
actions that happens same time. Both created new files and started to commit changes. From Iceberg specification:So let say that both
merge into
queries take 10 minutes. Both are finished (only metadata is needed to apply) first writer applied changes. What second write will do? Rerunmerge into
query on new table version? If there are dozen parallel writer - how many times query rerun will be? Could somebody please clarify? Any links to trino (not iceberg!) documentation are welcome. Maybe I miss something but this behaviour is not described in trino documentation.Beta Was this translation helpful? Give feedback.
All reactions