Replies: 1 comment 1 reply
-
reference to the source discussion on discord : #141 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
the classical PostgreSQL + PostGIS couple allows either to build transactionnal apps (OLTP) , but is more often close to OLAP use cases. Mapping huge regions, building dashboard on top of it is a fairly common use case.
I run a 6 TB database here, that serves both GIS and datascience use cases.
The row storage somewhat starts to be at its limits.
I gave a try at Hydra and I am a big fan already.
I added postGIS to the docker container, and was surprised to have it work smoothly with columnar tables. Well done!
However the rendering speed when accessing data by geographic extent was a lot slower than classical tables with GIST index.
EXPLAIN shows a similar plan.
So my guess is that geometry columns - which are already compressed in WKB format- are compressed again by HYDRA and decompressed on the fly.
I have the intuition that not compressing geometry and geography fields would give the best of both worlds.
In the meantime, I am going to play with external storage with GeoParquet and FDW to shrink down my storage and my backups.
Does that ring any bell on your roadmap?
Beta Was this translation helpful? Give feedback.
All reactions