Chris Bandy

Results 92 comments of Chris Bandy

Is this true? Can you please show an example of the quotes having an effect?

> schema_name is NULL, the condition `schema_name operator(pg_catalog.) 'pg_toast'` will be true. Is that correct? I thought comparisons to null become null. Perhaps you want `IS DISTINCT FROM` here.

When encountering an error like this, the controller retries with backoff. I suspect you're seeing it in one of the longer waiting periods. (We use [the default](https://github.com/kubernetes/client-go/blob/v0.20.8/util/workqueue/default_rate_limiters.go#L39) which maxes out...

> The operator is in a running state(not backoff) only logs are showing errors. After showing `level=error msg="Reconciler error"` in the logs, the controller will wait (backoff) before trying to...

There's no way to change the Patroni log level at this time. Are you trying to affect the `patronictl` CLI or the `patroni` server? Note that failovers are logged at...

@David-Angel Do you want to affect the `patronictl` CLI or the `patroni` server?

> The log format is particularly critical because of how all logs output to the same location from a Kubernetes pod. > We need to prefix them to tell the...

I see. Patroni made that entry. Have you disabled the [PostgreSQL `logging_collector`](https://www.postgresql.org/docs/current/runtime-config-logging.html)? ```console $ psql -c 'SHOW logging_collector' logging_collector ------------------- on (1 row) ``` PGO does not do that because...

> The logging is working fine for PostgreSQL Disabling the logging_collector wouldn't help here. I'm not suggesting you disable it. I believe the reason PostgreSQL logs are mixing with Patroni...