Replies: 7 comments 1 reply
-
We are limited to what is supported by Prisma. Adding any other database would take significant work. |
Beta Was this translation helpful? Give feedback.
-
i was thinking about using clickhouse. Also have to use something for the cache - for example rabbitmq |
Beta Was this translation helpful? Give feedback.
-
Should ClickHouse support be added to umami, please do not make it a requirement as I turned away Plausible because of that 🙏 |
Beta Was this translation helpful? Give feedback.
-
what problem you get in Plausible and clickhouse? |
Beta Was this translation helpful? Give feedback.
-
@Form1ca I'm using umami for a small blog on a server with restrained resources. When I tested Plausible, ClickHouse consumed too much resources for my needs, backup was not fun at all and in overall it was overkill for my workload. I don't find this stack relevant for monosite/small sites. |
Beta Was this translation helpful? Give feedback.
-
This is probably possible with clickhouse/postgres docker for fun projects. https://github.com/wavy/postgres-clickhouse |
Beta Was this translation helpful? Give feedback.
-
A column-based database like Clickhouse makes way more sense for analytics data compared to a row-based database, since practically all queries are aggregations of individual columns. You don't actually care about loading individual rows. OLAP-ish queries are much faster with a columnar database. It doesn't have to be Clickhouse; that's just the most common one for this use case at the moment. I agree with the other comments that it should be optional since very small deployments might not want to use it. |
Beta Was this translation helpful? Give feedback.
-
Traditional RDBMS is really slow at large-scale OLAP, it's time to speed up OLAP with a better database and ClickHouse is a good choice today.
Beta Was this translation helpful? Give feedback.
All reactions