[Data] - Remove the calls to Iceberg Catalog Table in write tasks#60476
Merged
alexeykudinkin merged 5 commits intoray-project:masterfrom Jan 26, 2026
Merged
Conversation
Signed-off-by: Goutam <goutam@anyscale.com>
write tasks
Contributor
There was a problem hiding this comment.
Code Review
This pull request effectively removes the need for worker tasks to call the Iceberg catalog by serializing the FileIO and TableMetadata objects on the driver and passing them to the workers. This is a good optimization to prevent potential rate-limiting issues with the remote catalog. The implementation is clean and directly addresses the problem. I have one minor suggestion to improve code readability.
write taskswrite tasks
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Goutam <goutam@anyscale.com>
Signed-off-by: Goutam <goutam@anyscale.com>
alexeykudinkin
approved these changes
Jan 26, 2026
xinyuangui2
pushed a commit
to xinyuangui2/ray
that referenced
this pull request
Jan 26, 2026
jinbum-kim
pushed a commit
to jinbum-kim/ray
that referenced
this pull request
Jan 29, 2026
…ay-project#60476) Signed-off-by: jinbum-kim <jinbum9958@gmail.com>
400Ping
pushed a commit
to 400Ping/ray
that referenced
this pull request
Feb 1, 2026
…ay-project#60476) Signed-off-by: 400Ping <jiekaichang@apache.org>
peterxcli
pushed a commit
to peterxcli/ray
that referenced
this pull request
Feb 25, 2026
…ay-project#60476) Signed-off-by: peterxcli <peterxcli@gmail.com>
peterxcli
pushed a commit
to peterxcli/ray
that referenced
this pull request
Feb 25, 2026
…ay-project#60476) Signed-off-by: peterxcli <peterxcli@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Removing the calls to
catalog.load_tableto reduce the likelihood of running into rate limits from the remote Iceberg catalog. Have to serialize the underlyingFileIOandTableMetadataobjects to ensure the writers can write to the cloud storage in lieu of accessing it from thetableinstance.Related issues
Additional information