You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With #1555 the Delta commands can make idempotent writes using the txnAppId and txnVersion from Spark configuration. The configuration is shared between threads and it is impossible to execute writes concurrently with different values. We should have support for specifying .option("txnVersion", version).option("txnAppId", app_id) also in the commands.
Motivation
When the applications run concurrently, the writes must be serialized. If they are serialized, there is no point in having concurrency.
The Delta Lake Community encourages new feature contributions. Would you or another member of your organization be willing to contribute an implementation of this feature?
Yes. I can contribute this feature independently.
Yes. I would be willing to contribute this feature with guidance from the Delta Lake community.
No. I cannot contribute this feature at this time.
The text was updated successfully, but these errors were encountered:
Feature request
Which Delta project/connector is this regarding?
Overview
With #1555 the Delta commands can make idempotent writes using the
txnAppId
andtxnVersion
from Spark configuration. The configuration is shared between threads and it is impossible to execute writes concurrently with different values. We should have support for specifying.option("txnVersion", version).option("txnAppId", app_id)
also in the commands.Motivation
When the applications run concurrently, the writes must be serialized. If they are serialized, there is no point in having concurrency.
Further details
This is how it could look like
Willingness to contribute
The Delta Lake Community encourages new feature contributions. Would you or another member of your organization be willing to contribute an implementation of this feature?
The text was updated successfully, but these errors were encountered: