Replies: 2 comments
-
Measurement results on 45M rows of real world stat_statements data (6db * 3mo) + a query to get month worth of data for a single queryid, 4 data cols.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
My .02$ - in practice I think that extra data proliferation only becomes visible only with this |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In pgw2 data and tags are stored as jsonb. This duplicates schema information in every row, giving bad storage efficiency for uncompressed data. It also defeats timeseries compression mechanisms for compressed data. Additionally, any access to data needs to decompress the whole document instead of accessing just the necessary column, which is very important for columnar storage.
Storing series metadata (e.g. full query text) out-of-line in a separate table might also be a good idea.
TBD: measurements on real world data
Beta Was this translation helpful? Give feedback.
All reactions