Felix Kunde
Felix Kunde
I'm pretty sure we hard code the standard postgres port 5432 here and there - so configuring the port via the manifest is expected to break things. Why do you...
Yes they share the node affinities, since it was a request by the community (#1441). Individual pooler affinities are not supported, but probably possible to implement for the connection pooler...
Looks like they've been around since forever, but are still not implemented. Can't tell what the original idea was. Probably, only allow rolling updates (Spilo udates etc.) during those windows....
When you exec into the pod there's a postgres.yml file. Can you check if credentials are set under `postgresql.authentication`?
I haven't checked yet, if the option works vice versa, but this would be my preferred implementation. So that you can have: a. global config to drop secrets on cluster...
Hi @alexkuklin can you create a PR which changes installation of awscli (and maybe others CLIs, too) in the logical backup's docker file? You got the same problem with the...
Hey there. (was in vacation) for the transaction id you want to revert can you check the entries in table_event_log and row_log? Sounds like multiple updates happened within the same...
Would be nice to see the actual statement that is failing. The revert code for updates uses these queries: ```sql -- get the old data (jsonb) and audit_id SELECT t.id,...
you have to quote JSONB objects '{"wkb_geometry" .... }'::jsonb you could even merge the two SQL queries to avoid copying ```sql WITH get_logs AS ( SELECT t.id, r.audit_id, r.old_data ......