psendyk commented on issue #9728: URL: https://github.com/apache/hudi/issues/9728#issuecomment-1751114980
@Jason-liujc I believe the issue you're seeing is unrelated to lock acquisition. From the [multi-writer docs](https://hudi.apache.org/docs/concurrency_control/#model-c-multi-writer): > For example, when two writers write to non overlapping files, both writes are allowed to succeed. However, when the writes from different writers overlap (touch the same set of files), only one of them will succeed From the error you posted, it seems like both writers write to the same file ID so one of them fails. The PR that @danny0405 linked addresses this issue by resolving the conflicts during compaction/read-time. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
