[FEA] Java: Table.mixedInnerJoinGatherMaps variant accepting a pre-built HashJoin
Author: findepiCreated Jun 2, 2026Updated Sep 17, 2026
Labelsfeature requestJava
Is your feature request related to a problem? Please describe.
Table.innerJoinGatherMaps(HashJoin) lets a caller build the right-side hash table once and probe many times. Table.mixedInnerJoinGatherMaps does not accept a pre-built hash table and builds it on every call. This wastes time and memory.
Describe the solution you'd like
Table.mixedInnerJoinGatherMaps and Table.mixedLeftJoinGatherMaps overloads that take HashJoin
Describe alternatives you've considered
None yet. Any recommendations?
Additional context
Source: rapidsai/cudf