2830
English speaking PostgreSQL public chat. This group is for discussions on PostgreSQL-related topics and strives to provide best-effort support as well.
If there's another edition of "Community Summit" at pgconf.dev, what are topics you would like to see discussed?
Читать полностью…
There is a mailing list on the postgresql website
Читать полностью…
Need to convert stored procedures from plsql to redshift sql ie postgress sql anyone providing support ping me
Читать полностью…
Can I ask you guys which tools you're using for ETL/migrations?
I mostly go with Apache Nifi but I wonder what other people are using for their daily work
But unless it's that particular case i wouldn't find a use case for it, and it's just promoting the secondary so nothing amazing or particular
Читать полностью…
Yeah, except that the data will come from the secondary
Читать полностью…
btw - im aware of logical replication
im just playing around with physical replication now
How can I achieve something like this? if it's even possible?
I thought in case it's part of replication slot it will save the last state to replicate from
Removing the standby.signal will make the timelines diverge
Читать полностью…
Thanks, Jamie, it looks like 1 database per postgresql cluster is the best option.
Читать полностью…
It's hard to translate so don't read this if u can't.
Постгрес.
Уровень repeatable read устраняет фантомное чтение в том смысле, что если другая транзакция во время текущей записала что-то, текущая этого не увидит и закомитит то что хочет, что может вызвать логические проблемы.
Уровень serializable не позволяет закоммитить текущую транзакцию, если какая-то другая сделала то, что для текущей транзакции бы вызвало фантомное чтение (если бы был уровень read committed).
Это так?
However, depending on the database size it might be worth to stop it and resync using basebackup
Читать полностью…
While performing vacuum full on primary whether we need to stop the replica
Читать полностью…
Hi i am Giving postgresql DBA offline interview suport in Hyderabad, call:8309555894
Читать полностью…
Simple answer: Streaming replication keeps a 1:1 copy of the cluster. No way around it. So no, it's not possible.
Читать полностью…
Useful if, for example, your data sits in the same place the secondary is. WAL streaming could be faster (considering wal is chunks of compressed data) than moving the original data and adding it in the primary
Читать полностью…
so this would be like just creating the table on the current master , no?
Читать полностью…
You can, however, promote the secondary, create your tables, then make the primary a standby and sync it, then make the primary again primary, and switch back once again the secondary to make it secondary again
Читать полностью…
There is no way to merge back to primary after the standby diverges, unless you use something like pg_rewind but that moves you back in time, it doesn't integrate the changes
Читать полностью…
Is it possible to remove the standby.signal from replica in order to create some tables only for replica, and then touch standby.signal and start the replica again? will it work? or it will damage the WAL order?
Читать полностью…
Well in that case you will waste a little of ram because shared_buffer is assigned by one cluster and it tends to be a large memory segment. Every case has its drawbacks and your best choice will depend on your use case
Читать полностью…
Point in time recovery impacts to the whole instance so you would recover every database.
Читать полностью…