2830
English speaking PostgreSQL public chat. This group is for discussions on PostgreSQL-related topics and strives to provide best-effort support as well.
Maybe there is an update that isn't applying on the replica or it hasn't done a checkpoint etc.?
Читать полностью…
And the question re the subscriber meant: did you check that there's really a replica connected? Sometimes a firewall suddenly appears out of nowhere, you know...
Читать полностью…
"off" may disturb queries on the replicas. Anyway, if your _slot_ is blocking VACUUM, did you check there's an actual subscriber on that slot?
Читать полностью…
Physical replication slots don't keep xmin (only actual replication connections with hot_standby_feedback=on do).
Читать полностью…
All feasible IMHO, although you'll not enjoy the inheritance approach.
Читать полностью…
Lucky he didn't run into the problems with 18.2. 😅 We had lists of journals disappearing because titles and descriptions were subject to a substring clause to limit length printed and the values contained non-ASCII characters, and I think some emails not sent on similar grounds. Had to install a snapshot version with it fixed
Читать полностью…
Does anybody have pdf for “PostgreSQL 16 Administration Cookbook”.. Thanks in Advance
Читать полностью…
I don’t think it’ll be that bad
Just…the thought of rolling out timeline tracking and auditing is painful
Probably because it is very rigid algorithmically.
Читать полностью…
Is that the same as Oracle?🤔
I heard oracle or something of the sort has it too
DB2 has at least some of the requested features.
The main advantage of implementing what's in the standard would be that ORMs could use the features. Which - come to think of it - sounds terrifying 😅
According to commitfest, no activity in that field since 2021. Which is kind of sad. On the plus side it's something you can earn some merits with a good patch, I guess 😏
Читать полностью…
I would immediately invest that 10.8k and keep looping. It is like printing your own money for free.
Читать полностью…
yes, replica is active and slot is active true, same vlan theres no firewall or something, actually theres 2 replicas one of running well, update xmin but one of is stuck keeps same xmin , and I facing with this problem on another clusters too
Читать полностью…
but if theres no activity why it keeps xmin, aint is a bug
Читать полностью…
what you mean actual subscriber, its physical active rep slot, without any activity
Читать полностью…
I think postgresql has a bug for physical replication slots, sometimes replication slot keeps xmin that inhibits autovacuum clean dead tuples in lider even theres no transactions in replicas
Читать полностью…
How would you implement polymorphic datatype with Postgres? Would you just use JSONB or Class Table Inheritance or just nullable fields?
Читать полностью…
Linux 7.0 Shows Significant PostgreSQL Performance Gains On AMD EPYC Review - Phoronix
https://www.phoronix.com/review/linux-70-amd-epyc-turin/2
So much so that I have deferred the feature for so long
But it can’t wait anymore, I guess. Especially now that there doesn’t seem to be any movement in that area
Most definitely not free, if it’s coming from Oracle
Читать полностью…
Not an Oracle guy, but AFAIK they have this "flashback" feature. No idea if that's a) standard compliant b) free or comes with costs (guess so).
Читать полностью…
Just with a strange performance and even stranger modifications!
Читать полностью…
I have a feature I’ve managed to defer for almost 2 years now because I was waiting for it to happen
I think WITH SYSTEM TIME AS OF is easier if it comes baked in
That and, using a managed database, I can’t install the periods extension so bummer
I don't think it's sad.
SQL as a standard is already overbloated with app-level features.
And temporal/bitemporal is mostly app-level (at leas as of now). Nothing special is of urgent need in the engine, just another set of fields and index search.
So, it seems better to wait while there are would be some implementations to look at them, look what they need, look for common features — and then implement something in the server core...
Does anyone know about the current state of bitemporal features in PostgreSQL (in built, not with extensions)?
Last I remember, work was being done to include that