-
Notifications
You must be signed in to change notification settings - Fork 3k
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
fix(ingestion/iceberg): Improvements to iceberg source #11987
fix(ingestion/iceberg): Improvements to iceberg source #11987
Conversation
@@ -249,7 +249,8 @@ | |||
|
|||
iceberg_common = { | |||
# Iceberg Python SDK | |||
"pyiceberg>=0.4,<0.7", | |||
# Kept at 0.4.0 due to higher versions requiring pydantic>2, as soon as we are fine with it, bump this dependency | |||
"pyiceberg>=0.4.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't this require 0.4.0+ version, which means a newer version is fine as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand the question
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, we discussed it and it is fine
Major point is to handle
NoSuchTableError
until we can update ourpyiceberg
dependency>=0.8.1
.Introduced iceberg source to the UI recipes. Improved documentation.