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
TopNRowNumberOperator is very memory inefficient when most of the groups are singletons or contain just few rows. In such case it's better to use WindowOprator. Behavior which operator to use is determined by optimize_top_n_row_number toggle. We could add optimize_top_n_row_number=AUTO option which would trigger usage of CBO to determine whether to use TopNRowNumberOperator or WindowOprator
The text was updated successfully, but these errors were encountered:
TopNRowNumberOperator
is very memory inefficient when most of the groups are singletons or contain just few rows. In such case it's better to useWindowOprator
. Behavior which operator to use is determined byoptimize_top_n_row_number
toggle. We could addoptimize_top_n_row_number=AUTO
option which would trigger usage of CBO to determine whether to useTopNRowNumberOperator
orWindowOprator
The text was updated successfully, but these errors were encountered: