Open nelsonic opened 2 months ago
as part of deploying Plausible Analytics ("Community Edition") https://github.com/dwyl/learn-analytics/pull/4 ...
Did you manage to solve the issue with backups? afair people backed up whole machine volume, not database per se...
ClickHouse is top-notch for analytics, it was build specifically for analytics, easy to get up and running, but it gets complex to manage once you're in production. There are some concerns about TimescaleDB performance and CE licensing in comparison to ClickHouse, but overall for lean companies Timescale is much easier to deal with I think. I know people who gave up Plausible just because of the backup strategy, maybe it's better now?
Yeah, the Plausible
backup story isn't "fixed" yet.
Which is why we are trying to figure out if we can use Postgres
for the Analytics
data
instead of ClickHouse
- which we agree is better for higher volumes of data ...
Reading: https://clickhouse.com/docs/en/faq/general/why-clickhouse-is-so-fast#performance-when-inserting-data
This means the Application has to temporarily store the rows in memory before inserting. 😕
Replication uses Zookeper
: https://clickhouse.com/docs/en/architecture/replication https://en.wikipedia.org/wiki/Apache_ZooKeeper (Java
)
Nothing "wrong" with that. Just noting that it's not a simple setup. 💭
Opening to capture some basic knowledge ... 📝
We have recently been forced to use
ClickHouse
as part of deployingPlausible Analytics
("Community Edition") https://github.com/dwyl/learn-analytics/pull/4 ... Don't have anything against it. Just wonder if the volume of data we are likely to see for a basic website justifies the expense/overhead of having two databases (Postgres
andClickHouse
...) 💭https://clickhouse.com
https://github.com/ClickHouse/ClickHouse