Closed hendrikmakait closed 9 months ago
Benchmark results look odd given that Q18 takes 22 - 25 seconds to complete and 80 seconds to optimize.
EDIT: This may have been caused by me using a LocalCluster
, the query sets an index and requires some pre-computation.
EDIT: This may have been caused by me using a LocalCluster, the query sets an index and requires some pre-computation.
Correct, that's where I would look if optimization time is off, why is this necessary though? It seems like we are shooting ourselves in the foot with the set_index call. We don't need it as far as I can see, using table.merge(qnt_over_300, left_on="l_orderkey", right_index=True) should work
Another thought: We should never use query, there is literally no case where I would recommend using query.
This looks better:
Closes #1325
Blocked by and includes #1324