Reputation: 1819
We use Timescale DB to store some data received from GPS trackers.
Among the other metrics we, obviously, have the location value which is mapped to the geography(PointZ,4326) type.
I'm concerned about how this kind of data would be compressed (or would it be compressed at all).
Also it would be nice to have some detailed explanation (some useful links) on how the Timescale's compression works, what data types are supported, etc...
Upvotes: -1
Views: 124
Reputation: 425
You can compress any hypertable with timescaleDB.
"When you enable compression, the data in your hypertable is compressed chunk by chunk"
You can refere to documentation of timescaleDB for more information.
Upvotes: -1
Reputation: 6104
Short answer: Yes
Not so long answer: It depends on how you define "support". In general TimescaleDB works with those types and they compress. However, like with PG, it'll use the base compression (lz4 as far as I know), meaning, there isn't any specific compression algorithm as for some other data types.
Upvotes: 0