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
The following SQL has performance regression in 0.5.0-nightly
SELECT mean(usage_user), date_trunc('hour', ts) from cpu where ts >='2023-06-12T23:35:31Z'and ts <'2023-06-13T11:35:31Z'group by date_trunc('hour', ts),hostname;
SELECT mean(usage_user), date_trunc('hour', ts) from cpu where ts >='2023-06-12T23:35:31Z'and ts <'2023-06-13T11:35:31Z'group by date_trunc('hour', ts),hostname;
You can see all columns are selected in 0.5.0-nightly. But in 0.4.2, we only select necessary columns.
The text was updated successfully, but these errors were encountered:
What type of bug is this?
Performance issue
What subsystems are affected?
Standalone mode, Datanode
What happened?
The following SQL has performance regression in
0.5.0-nightly
What operating system did you use?
Unrelated
Relevant log output and stack trace
How can we reproduce the bug?
Creates this table
Inserts some data and run
You can see all columns are selected in 0.5.0-nightly. But in 0.4.2, we only select necessary columns.
The text was updated successfully, but these errors were encountered: