Alexander Kukushkin

Results 295 comments of Alexander Kukushkin

> Patroni creates an additional segment wal files due to which the primary side is unaware and standby database gets out of sync and facing below error: Patroni never creates...

Update, there is another possibility. Maybe you are looking at wrong config files: 1. every node has its own configuration file 2. `patronictl show-config` in case of Citus cluster shows...

> Any idea why it is starting two pg_basebackup processes? Patroni starts only one pg_basebackup. The second process is a direct child of the first pg_basebackup. It is forked to...

> Aug 20 09:54:19 testbed04 patroni[381865]: 2024-08-20 09:54:19.525 EDT [381865] FATAL: could not load server certificate file "server.crt": ee key too small Does it ring a bell?

This error prevents postgres from starting up in both log files you provide.

you have to "resolve" the problem before you start Patroni

1. Patroni runs pg_basebackup 2. After pg_basebackup Patroni starts Postgres 3. Postgres doesn't like server.crt and exits (it is an error in your configuration) From that moment Patroni doesn't remember...

@cbandy I don't think we can create a repro in SQL and/or by involving plpgsql. Existing test cases are relying on the special behavior of IMMUTABLE functions (they are evaluated...

https://github.com/pgaudit/pgaudit/blob/72dda46d61ba90e2f4bf5be495157b0ed73b56e9/pgaudit.c#L1626-L1631 Please correct me if I am wrong, but out of three there is a test only for `T_SelectStmt`?

@dwsteele we tried really hard with @alperkocatas, but there is a problem. The error is triggered because of `st.setFetchSize(1)`, which is effectively translates to row_limit/max_rows of `'E'` protocol message: -...