You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, PagesHashStrategy will degrade in performance if all 3 block types (flat, dictionary, rle) are used due to a virtual call overhead for example in positionEqualsPositionIgnoreNulls.
One possible way to avoid this issue is to use a row-wise approach to hash tables that copies the incoming rows into the hash table as proposed by project hummingbird (#14237 )
The text was updated successfully, but these errors were encountered:
Sub-task of #15215
Currently,
PagesHashStrategy
will degrade in performance if all 3 block types (flat, dictionary, rle) are used due to a virtual call overhead for example inpositionEqualsPositionIgnoreNulls
.One possible way to avoid this issue is to use a row-wise approach to hash tables that copies the incoming rows into the hash table as proposed by project hummingbird (#14237 )
The text was updated successfully, but these errors were encountered: