How do you handle Postgres cluster failover? Does PeerDB automatically restore logical replication slot on a new primary?
Show HN: Peerdb Streams – Simple, native Postgres change data capture
11–20 of 42 posts
Re: Show HN: Peerdb Streams – Simple, native Postgres change data capture
#12Re: Show HN: Peerdb Streams – Simple, native Postgres change data capture
#13Noob question: What is the advantage of replicating data into a warehouse vs. just querying it in place on a postgres database?
Re: Show HN: Peerdb Streams – Simple, native Postgres change data capture
#14Noob question: What is the advantage of replicating data into a warehouse vs. just querying it in place on a postgres database?
If the postgres database is recording business transactions, you don't want to cause your business to stop being able to take credit cards because you generated a report.
Re: Show HN: Peerdb Streams – Simple, native Postgres change data capture
#15Earlier quoted context omitted.
If the postgres database is recording business transactions, you don't want to cause your business to stop being able to take credit cards because you generated a report.
Assuming you use a connection pool, why would it stop? Either the query returns a result or it doesnt? Am I missing something?
Re: Show HN: Peerdb Streams – Simple, native Postgres change data capture
#16Re: Show HN: Peerdb Streams – Simple, native Postgres change data capture
#17Earlier quoted context omitted.
Assuming you use a connection pool, why would it stop? Either the query returns a result or it doesnt? Am I missing something?
Reporting queries can put a significant load on the db, to the point that it interrupts service.
Analytical queries (like "find the average sales price across all orders over the past year, grouped by store and region") can be 100-1000x faster in an OLAP database compared to Postgres.
Re: Show HN: Peerdb Streams – Simple, native Postgres change data capture
#18[Full disclosure, I work for Prisma and we have a similar product called Pulse (https://prisma.io/pulse)]
Another use case for CDC is compliance. I reckon that in the near future, to ensure with data compliance regulations, CDC will become the better option for devs vs traditional seek/update/delete functions.
Re: Show HN: Peerdb Streams – Simple, native Postgres change data capture
#19Noob question: What is the advantage of replicating data into a warehouse vs. just querying it in place on a postgres database?
Re: Show HN: Peerdb Streams – Simple, native Postgres change data capture
#20Noob question: What is the advantage of replicating data into a warehouse vs. just querying it in place on a postgres database?