Move independent Iceberg helpers to root-safe module [reduced-it] - #15841
Open
gerashegalov wants to merge 9 commits into
Open
Move independent Iceberg helpers to root-safe module [reduced-it]#15841gerashegalov wants to merge 9 commits into
gerashegalov wants to merge 9 commits into
Conversation
Signed-off-by: Gera Shegalov <gshegalov@nvidia.com>
Contributor
Signed-off-by: Gera Shegalov <gshegalov@nvidia.com>
Collaborator
Author
|
build |
1 similar comment
Collaborator
Author
|
build |
NvTimLiu
previously approved these changes
Sep 1, 2026
NvTimLiu
left a comment
Collaborator
There was a problem hiding this comment.
LGTM from CICD point of view
…independent-helpers Signed-off-by: Gera Shegalov <gshegalov@nvidia.com> # Conflicts: # dist/unshimmed-common-from-single-shim.txt
res-life
reviewed
Sep 2, 2026
| new JHashMap[Integer, Any](), | ||
| expectedSchema, | ||
| GpuIcebergParquetReader.withNativeRowIndex(shadedSchema), | ||
| GpuIcebergParquetReaderUtils.withNativeRowIndex(shadedSchema), |
Collaborator
There was a problem hiding this comment.
[P1] Update the remaining withNativeRowIndex callers
This PR removes object GpuIcebergParquetReader, but lines 1181 and 1218 in this file still call GpuIcebergParquetReader.withNativeRowIndex(...). A clean Spark 3.5 test compile therefore fails with not found: value GpuIcebergParquetReader. Please change those two callers to GpuIcebergParquetReaderUtils.withNativeRowIndex(...) as well.
Collaborator
Author
…independent-helpers Signed-off-by: Gera Shegalov <gshegalov@nvidia.com>
Signed-off-by: Gera Shegalov <gshegalov@nvidia.com>
Collaborator
Author
|
build |
…independent-helpers Signed-off-by: Gera Shegalov <gshegalov@nvidia.com> # Conflicts: # dist/unshimmed-common-from-single-shim.txt
20 tasks
firestarman
previously approved these changes
Sep 7, 2026
…independent-helpers Signed-off-by: Gera Shegalov <gshegalov@nvidia.com> # Conflicts: # dist/unshimmed-common-from-single-shim.txt
Signed-off-by: Gera Shegalov <gshegalov@nvidia.com>
Collaborator
Author
|
build |
…independent-helpers Signed-off-by: Gera Shegalov <gshegalov@nvidia.com>
Collaborator
Author
|
build |
10 tasks
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.
Related to #15821.
Description
Move a self-contained set of Apache Iceberg helpers from the versioned
iceberg/commonsource module into the root-safeiceberg-commonmodule:IcebergDeletionVector;ThreadConfandSingleFile; andReplace the internal
GpuIcebergParquetReaderandGpuPositionDeleteFileWritercompanion helpers with dedicated root-safeowners. Fold the implementation-dependent
GpuDeleteFilter2helpers intoGpuDeleteFileInfo, where they remain in the versioned source module.Together, these changes remove six Iceberg entries from the special
root-layout allowlist.
The catalog and table wrappers remain version-specific because their Spark
catalog interfaces are not source-compatible across all supported versions.
There is no user-facing configuration or behavior change. Algorithms and data
flow are unchanged; only source ownership, final class placement, and internal
companion names change.
Validation on the prepared up-merged branch:
distassembly for the highest patch release in eachsupported line:
classes at the JAR root across two Scala 2.12 and five Scala 2.13 Iceberg
runtime worlds.
only at the conventional root, with no copy in
spark-sharedor a selectedSpark-specific directory. The three retired companion classes are absent.
runtime-inapplicable row-lineage cases were canceled.
Iceberg stub.
git diff --checkpassed.Pre-merge CI provides the exhaustive shim matrix and the
AppClassLoader/
extraClassPathIceberg smoke coverage.Performance testing is not required. The change adds no per-batch or hot-path
work. Consolidating the delete-filter metadata into
GpuDeleteFileInfomayinitialize those small immutable values earlier, which is a negligible
one-time cost.
This pull request was prepared with AI assistance and reviewed by the author
before publication. It also received an independent read-only code review.
Checklists
Documentation
Testing
(
GpuDeleteFilterSuite,GpuPostProcessorSuite,IcebergDeletionVectorSuite, andRapidsSparkTableSuite.)Performance