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
If timescaledb.compress_chunk_interval is used the time column should be first in the timescaledb.compress_orderby list for the compression settings and also be marked as ascending.
The text was updated successfully, but these errors were encountered:
The technical reason is that we merge the chunks over time dimension so having compressed data not ordered over the time dimension primarily will create unordered compressed data.
The reason why we need ASC ordering is because we merge chunks in ascending order i.e. newer chunks get merged into older ones.
Both cases create unordered compressed chunks which need to be recompressed fully which is the cause of the performance hit.
If
timescaledb.compress_chunk_interval
is used the time column should be first in thetimescaledb.compress_orderby
list for the compression settings and also be marked as ascending.The text was updated successfully, but these errors were encountered: