|
|
|
|
|
by Upitor
1703 days ago
|
|
Would either of these database systems be proper for a case where you have a mix of large measurement data and small reference/master data that you need to join, filter, etc. ?Example: SELECT r.country, m.time, SUM(m.measurement)
FROM measurement_table AS m
INNER JOIN refence_table AS r
ON m.device_id = r.device_id |
|
TimescaleDB is PostgreSQL, so it can easily handle this kind of join aggregate like you would expect. If "m.measurement" was compressed, historical queries with a time predicate would likely be faster than uncompressed state.