-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot write to Deltlake : This table’s min_writer_version is 7, but this method only supports version 2. #1535
Comments
Hi @yefetBenTili, right now delta-rs does not support the mentioned writer version, so this behavior is expected. That said, we are hard at work to extend the protocol support. |
Is there any chance this next release will target Writer version 7 to enable the new Clustering feature? |
@roeap Any update on this? |
@yefetBenTili, yes i am almost done with #1756, which updates the type and schema definitions. in some followups i have prepared, we will then improve protocol support. we will have to see which featues are most straight forward to support, but supporting table feature tables seems straught forward (of course this may be a different story foe specific features). my personal priority are deletion vectors right now. |
hello @yefetBenTili , do you have any update on the protocol support improvement ?
where MAX_SUPPORTED_READER_VERSION = 1 and self.protocol().min_reader_version = 3 . |
@wolliq higher protocol support is only in the rust engine writer: Write_deltalake(engine="rust") |
@ion-elgreco the use case it's a read operation using deltatoarch The deltatorch lib reads the delta table and then calls
In the Why do we need to keep the features support min read version at the lowest ? Is there any development that will fix that for recent features support versions ? Thx |
@wolliq I'll put in a fix, we can support reader version 3 but then we just check if a table feature is enabled or not, of which don't support. However, version 2 we can't support. |
@ion-elgreco thank you that will do in my use case. |
Environment
Delta-rs version: 0.10.0
Binding:
Environment:
Bug
I am trying to write to an already existing deltalake destination in s3 using delta
And I get this error:
The text was updated successfully, but these errors were encountered: