Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] postgresql wal-g restore failed: No such file or directory: '/home/postgres/pgdata/pgroot/data/recovery.conf' #8956

Open
JashBook opened this issue Feb 20, 2025 · 2 comments
Assignees
Labels
kind/bug Something isn't working
Milestone

Comments

@JashBook
Copy link
Collaborator

JashBook commented Feb 20, 2025

Describe the bug

kbcli version
Kubernetes: v1.30.6
KubeBlocks: 0.9.3-beta.24
kbcli: 0.9.3

To Reproduce
Steps to reproduce the behavior:

  1. create cluster
kubectl apply -f - <<EOF
apiVersion: apps.kubeblocks.io/v1alpha1
kind: Cluster
metadata:
  name: pg-cluster
  namespace: default
spec:
  clusterDefinitionRef: postgresql
  topology: replication
  terminationPolicy: WipeOut
  componentSpecs:
  - name: postgresql
    serviceVersion: 16.4.0
    replicas: 2
    resources:
      requests:
        cpu: 8
        memory: 16Gi
      limits:
        cpu: 16
        memory: 32Gi
    volumeClaimTemplates:
    - name: data
      spec:
        accessModes:
        - ReadWriteOnce
        resources:
          requests:
            storage: 2Ti
EOF
  1. load large data
kubectl apply -f - <<EOF
apiVersion: v1
kind: Pod
metadata:
  name: test-generate-pg-data
  namespace: default
spec:
  containers:
    - name: test-generate
      imagePullPolicy: IfNotPresent
      image: docker.io/apecloud/customsuites:latest
      env:
        - name: TYPE
          value: "2"
        - name: FLAG
          value: "0"
        - name: CONFIGS
          value: "driver:pgsql,mode:prepare,host:pg-cluster-postgresql-postgresql,user:postgres,password:5u59hd33il,port:5432,db:backupdb,tables:2200,size:2000000,threads:50,type:oltp_read_write"
  restartPolicy: Never
EOF
  1. wal-g backup
# config-wal-g
kbcli cluster backup pg-cluster --method config-wal-g
kubectl get backup
NAME                                       POLICY                                METHOD          REPO                    STATUS      TOTAL-SIZE   DURATION   CREATION-TIME          COMPLETION-TIME        EXPIRATION-TIME
backup-default-pg-cluster-20250213150439   pg-cluster-postgresql-backup-policy   config-wal-g    backuprepo-kbcli-test   Completed                25s        2025-02-13T07:04:41Z   2025-02-13T07:05:06Z   
# edit backupSchedule wal-g-archive enable true
kubectl edit backupSchedule pg-cluster-postgresql-backup-schedule
  • backupMethod: wal-g-archive
    cronExpression: '*/5 * * * *'
    enabled: true
    retentionPeriod: 8d
#  wal-g backup
kbcli cluster backup pg-cluster --method wal-g
  1. restore
kbcli cluster restore pg-restore --backup backup-default-pg-cluster-20250219151107 
  1. see error
kubectl get cluster pg-restore
NAME         CLUSTER-DEFINITION   VERSION   TERMINATION-POLICY   STATUS     AGE
pg-restore   postgresql                     WipeOut              Creating   3h48m

kubectl get pod -l app.kubernetes.io/instance=pg-restore    
NAME                      READY   STATUS    RESTARTS   AGE
pg-restore-postgresql-0   4/5     Running   0          40m
pg-restore-postgresql-1   4/5     Running   0          40m
kubectl logs pg-restore-postgresql-0 
2025-02-20 05:35:41,658 INFO: Selected new K8s API server endpoint https://172.214.21.67:443
2025-02-20 05:35:41,724 WARNING: postgresql parameter wal_keep_size=0 failed validation, defaulting to 128MB
2025-02-20 05:35:41,724 WARNING: postgresql parameter wal_log_hints=False failed validation, defaulting to on
2025-02-20 05:35:41,725 INFO: No PostgreSQL configuration items changed, nothing to reload.
2025-02-20 05:35:41,727 INFO: Lock owner: None; I am pg-restore-postgresql-0
2025-02-20 05:35:41,755 INFO: trying to bootstrap a new cluster
2025-02-20 05:35:41,755 INFO: Running custom bootstrap script: bash /home/postgres/pgdata/kb_restore/kb_restore.sh
mv: cannot stat '/home/postgres/pgdata/pgroot/data.old/*': No such file or directory
2025-02-20 05:35:51,736 INFO: Lock owner: None; I am pg-restore-postgresql-0
2025-02-20 05:35:51,736 INFO: not healthy enough for leader race
2025-02-20 05:35:51,801 INFO: bootstrap in progress
2025-02-20 05:36:01,101 ERROR: Exception during execution of long running task bootstrap
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/patroni/async_executor.py", line 166, in run
    wakeup = func(*args) if args else func()
  File "/usr/local/lib/python3.10/dist-packages/patroni/postgresql/bootstrap.py", line 383, in bootstrap
    return do_initialize(config.get(method)) and self._postgresql.config.append_pg_hba(pg_hba) \
  File "/usr/local/lib/python3.10/dist-packages/patroni/postgresql/bootstrap.py", line 207, in _custom_bootstrap
    self._postgresql.config.write_recovery_conf(config['recovery_conf'])
  File "/usr/local/lib/python3.10/dist-packages/patroni/postgresql/config.py", line 930, in write_recovery_conf
    with self.config_writer(self._recovery_conf) as f:
  File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/usr/local/lib/python3.10/dist-packages/patroni/postgresql/config.py", line 438, in config_writer
    with ConfigWriter(filename) as writer:
  File "/usr/local/lib/python3.10/dist-packages/patroni/postgresql/config.py", line 235, in __enter__
    self._fd = open(self._filename, 'w')
FileNotFoundError: [Errno 2] No such file or directory: '/home/postgres/pgdata/pgroot/data/recovery.conf'
2025-02-20 05:36:01,103 INFO: removing initialize key after failed attempt to bootstrap the cluster
Traceback (most recent call last):
  File "/usr/local/bin/patroni", line 8, in <module>
    sys.exit(main())
  File "/usr/local/lib/python3.10/dist-packages/patroni/__main__.py", line 344, in main
    return patroni_main(args.configfile)
  File "/usr/local/lib/python3.10/dist-packages/patroni/__main__.py", line 232, in patroni_main
    abstract_main(Patroni, configfile)
  File "/usr/local/lib/python3.10/dist-packages/patroni/daemon.py", line 174, in abstract_main
    controller.run()
  File "/usr/local/lib/python3.10/dist-packages/patroni/__main__.py", line 192, in run
    super(Patroni, self).run()
  File "/usr/local/lib/python3.10/dist-packages/patroni/daemon.py", line 143, in run
    self._run_cycle()
  File "/usr/local/lib/python3.10/dist-packages/patroni/__main__.py", line 201, in _run_cycle
    logger.info(self.ha.run_cycle())
  File "/usr/local/lib/python3.10/dist-packages/patroni/ha.py", line 1989, in run_cycle
    info = self._run_cycle()
  File "/usr/local/lib/python3.10/dist-packages/patroni/ha.py", line 1806, in _run_cycle
    return self.post_bootstrap()
  File "/usr/local/lib/python3.10/dist-packages/patroni/ha.py", line 1690, in post_bootstrap
    self.cancel_initialization()
  File "/usr/local/lib/python3.10/dist-packages/patroni/ha.py", line 1683, in cancel_initialization
    raise PatroniFatalException('Failed to bootstrap cluster')
patroni.exceptions.PatroniFatalException: Failed to bootstrap cluster
/etc/runit/runsvdir/default/patroni: finished with code=1 signal=0
/etc/runit/runsvdir/default/patroni: exceeded maximum number of restarts 5
stopping /etc/runit/runsvdir/default/patroni
timeout: finish: .: (pid 710) 27s, want down
kubectl logs pg-restore-postgresql-1 --tail 60
Defaulted container "postgresql" out of: postgresql, pgbouncer, exporter, lorry, config-manager, pg-init-container (init), init-lorry (init)
/etc/runit/runsvdir/default/patroni: finished with code=1 signal=0
/etc/runit/runsvdir/default/patroni: sleeping 120 seconds
2025-02-20 05:35:44,929 INFO: Selected new K8s API server endpoint https://172.214.21.67:443
2025-02-20 05:35:44,984 WARNING: postgresql parameter wal_keep_size=0 failed validation, defaulting to 128MB
2025-02-20 05:35:44,984 WARNING: postgresql parameter wal_log_hints=False failed validation, defaulting to on
2025-02-20 05:35:44,985 INFO: No PostgreSQL configuration items changed, nothing to reload.
2025-02-20 05:35:44,988 INFO: Lock owner: None; I am pg-restore-postgresql-1
2025-02-20 05:35:44,988 INFO: waiting for leader to bootstrap
2025-02-20 05:35:55,018 INFO: Lock owner: None; I am pg-restore-postgresql-1
2025-02-20 05:35:55,019 INFO: waiting for leader to bootstrap
2025-02-20 05:36:04,995 INFO: Lock owner: None; I am pg-restore-postgresql-1
2025-02-20 05:36:05,006 INFO: trying to bootstrap a new cluster
2025-02-20 05:36:05,006 INFO: Running custom bootstrap script: bash /home/postgres/pgdata/kb_restore/kb_restore.sh
mv: cannot stat '/home/postgres/pgdata/pgroot/data.old/*': No such file or directory
2025-02-20 05:36:05,017 ERROR: Exception during execution of long running task bootstrap
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/patroni/async_executor.py", line 166, in run
    wakeup = func(*args) if args else func()
  File "/usr/local/lib/python3.10/dist-packages/patroni/postgresql/bootstrap.py", line 383, in bootstrap
    return do_initialize(config.get(method)) and self._postgresql.config.append_pg_hba(pg_hba) \
  File "/usr/local/lib/python3.10/dist-packages/patroni/postgresql/bootstrap.py", line 207, in _custom_bootstrap
    self._postgresql.config.write_recovery_conf(config['recovery_conf'])
  File "/usr/local/lib/python3.10/dist-packages/patroni/postgresql/config.py", line 930, in write_recovery_conf
    with self.config_writer(self._recovery_conf) as f:
  File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/usr/local/lib/python3.10/dist-packages/patroni/postgresql/config.py", line 438, in config_writer
    with ConfigWriter(filename) as writer:
  File "/usr/local/lib/python3.10/dist-packages/patroni/postgresql/config.py", line 235, in __enter__
    self._fd = open(self._filename, 'w')
FileNotFoundError: [Errno 2] No such file or directory: '/home/postgres/pgdata/pgroot/data/recovery.conf'
2025-02-20 05:36:05,019 INFO: removing initialize key after failed attempt to bootstrap the cluster
Traceback (most recent call last):
  File "/usr/local/bin/patroni", line 8, in <module>
    sys.exit(main())
  File "/usr/local/lib/python3.10/dist-packages/patroni/__main__.py", line 344, in main
    return patroni_main(args.configfile)
  File "/usr/local/lib/python3.10/dist-packages/patroni/__main__.py", line 232, in patroni_main
    abstract_main(Patroni, configfile)
  File "/usr/local/lib/python3.10/dist-packages/patroni/daemon.py", line 174, in abstract_main
    controller.run()
  File "/usr/local/lib/python3.10/dist-packages/patroni/__main__.py", line 192, in run
    super(Patroni, self).run()
  File "/usr/local/lib/python3.10/dist-packages/patroni/daemon.py", line 143, in run
    self._run_cycle()
  File "/usr/local/lib/python3.10/dist-packages/patroni/__main__.py", line 201, in _run_cycle
    logger.info(self.ha.run_cycle())
  File "/usr/local/lib/python3.10/dist-packages/patroni/ha.py", line 1989, in run_cycle
    info = self._run_cycle()
  File "/usr/local/lib/python3.10/dist-packages/patroni/ha.py", line 1806, in _run_cycle
    return self.post_bootstrap()
  File "/usr/local/lib/python3.10/dist-packages/patroni/ha.py", line 1690, in post_bootstrap
    self.cancel_initialization()
  File "/usr/local/lib/python3.10/dist-packages/patroni/ha.py", line 1683, in cancel_initialization
    raise PatroniFatalException('Failed to bootstrap cluster')
patroni.exceptions.PatroniFatalException: Failed to bootstrap cluster
/etc/runit/runsvdir/default/patroni: finished with code=1 signal=0
/etc/runit/runsvdir/default/patroni: exceeded maximum number of restarts 5
stopping /etc/runit/runsvdir/default/patroni
timeout: finish: .: (pid 671) 28s, want down
kubectl exec -it pg-restore-postgresql-0 bash      
root@pg-restore-postgresql-0:/home/postgres# du -sh /home/postgres/pgdata/pgroot/*
1.1T        /home/postgres/pgdata/pgroot/data.failed
4.0K        /home/postgres/pgdata/pgroot/data.old
60K        /home/postgres/pgdata/pgroot/pg_log

root@pg-restore-postgresql-0:/home/postgres# ls -ll /home/postgres/pgdata/pgroot/*
/home/postgres/pgdata/pgroot/data.failed:
total 148
-rw-r----- 1 postgres postgres     3 Feb 20 02:17 PG_VERSION
-rw-r----- 1 postgres postgres   256 Feb 20 05:18 backup_label
drwxr-s--- 7 postgres postgres  4096 Feb 20 05:10 base
-rw------- 1 postgres postgres    34 Feb 20 05:29 current_logfiles
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 global
-rw------- 1 postgres postgres  1171 Feb 20 05:29 patroni.dynamic.json
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:10 pg_commit_ts
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:10 pg_dynshmem
-rw-r----- 1 postgres postgres  5703 Feb 20 05:10 pg_hba.conf
-rw------- 1 postgres postgres   635 Feb 20 05:29 pg_hba.conf.backup
-rw-r----- 1 postgres postgres  2640 Feb 20 05:10 pg_ident.conf
-rw------- 1 postgres postgres     0 Feb 20 05:29 pg_ident.conf.backup
drwxr-s--- 4 postgres postgres  4096 Feb 20 05:24 pg_logical
drwxr-s--- 4 postgres postgres  4096 Feb 20 05:24 pg_multixact
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_notify
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_replslot
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_serial
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_snapshots
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_stat
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:29 pg_stat_tmp
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_subtrans
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_tblspc
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_twophase
drwxr-s--- 3 postgres postgres  4096 Feb 20 05:29 pg_wal
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_xact
-rw-r----- 1 postgres postgres    88 Feb 20 05:24 postgresql.auto.conf
-rw-r----- 1 postgres postgres 29802 Feb 20 05:24 postgresql.conf
-rw------- 1 postgres postgres  7553 Feb 20 05:29 postgresql.conf.backup
-rw------- 1 postgres postgres   496 Feb 20 05:29 postmaster.opts
-rw------- 1 postgres postgres     0 Feb 20 05:29 recovery.signal
-rw-r----- 1 postgres postgres     0 Feb 20 05:18 tablespace_map

/home/postgres/pgdata/pgroot/data.old:
total 0

/home/postgres/pgdata/pgroot/pg_log:
total 56
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:28 postgresql-0.csv
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:28 postgresql-1.csv
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:28 postgresql-2.csv
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:28 postgresql-3.csv
-rw-r--r-- 1 postgres postgres 45768 Feb 20 05:29 postgresql-4.csv
-rw-r--r-- 1 postgres postgres   206 Feb 20 05:29 postgresql-4.log
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:28 postgresql-5.csv
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:28 postgresql-6.csv
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:28 postgresql-7.csv

root@pg-restore-postgresql-0:/home/postgres# cat /home/postgres/pgdata/conf/recovery.conf
restore_command='envdir /home/postgres/pgdata/wal-g/restore-env /home/postgres/pgdata/wal-g/wal-g wal-fetch %f %p >> /home/postgres/pgdata/kb_restore/wal-g.log 2>&1'
recovery_target='immediate'
recovery_target_action='promote'
kubectl exec -it pg-restore-postgresql-1 bash 
root@pg-restore-postgresql-1:/home/postgres# du -sh /home/postgres/pgdata/pgroot/*
1.1T	/home/postgres/pgdata/pgroot/data.failed
4.0K	/home/postgres/pgdata/pgroot/data.old
60K	/home/postgres/pgdata/pgroot/pg_log
root@pg-restore-postgresql-1:/home/postgres# ls -ll /home/postgres/pgdata/pgroot/*
/home/postgres/pgdata/pgroot/data.failed:
total 148
-rw-r----- 1 postgres postgres     3 Feb 20 02:17 PG_VERSION
-rw-r----- 1 postgres postgres   256 Feb 20 05:18 backup_label
drwxr-s--- 7 postgres postgres  4096 Feb 20 05:11 base
-rw------- 1 postgres postgres    34 Feb 20 05:29 current_logfiles
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 global
-rw------- 1 postgres postgres  1171 Feb 20 05:30 patroni.dynamic.json
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:12 pg_commit_ts
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:12 pg_dynshmem
-rw-r----- 1 postgres postgres  5703 Feb 20 05:12 pg_hba.conf
-rw------- 1 postgres postgres   635 Feb 20 05:29 pg_hba.conf.backup
-rw-r----- 1 postgres postgres  2640 Feb 20 05:12 pg_ident.conf
-rw------- 1 postgres postgres     0 Feb 20 05:29 pg_ident.conf.backup
drwxr-s--- 4 postgres postgres  4096 Feb 20 05:24 pg_logical
drwxr-s--- 4 postgres postgres  4096 Feb 20 05:24 pg_multixact
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_notify
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_replslot
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_serial
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_snapshots
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_stat
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:29 pg_stat_tmp
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_subtrans
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_tblspc
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_twophase
drwxr-s--- 3 postgres postgres  4096 Feb 20 05:30 pg_wal
drwxr-s--- 2 postgres postgres  4096 Feb 20 05:24 pg_xact
-rw-r----- 1 postgres postgres    88 Feb 20 05:24 postgresql.auto.conf
-rw-r----- 1 postgres postgres 29802 Feb 20 05:24 postgresql.conf
-rw------- 1 postgres postgres  7553 Feb 20 05:29 postgresql.conf.backup
-rw------- 1 postgres postgres   496 Feb 20 05:29 postmaster.opts
-rw------- 1 postgres postgres     0 Feb 20 05:29 recovery.signal
-rw-r----- 1 postgres postgres     0 Feb 20 05:18 tablespace_map

/home/postgres/pgdata/pgroot/data.old:
total 0

/home/postgres/pgdata/pgroot/pg_log:
total 56
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:29 postgresql-0.csv
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:29 postgresql-1.csv
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:29 postgresql-2.csv
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:29 postgresql-3.csv
-rw-r--r-- 1 postgres postgres 47104 Feb 20 05:30 postgresql-4.csv
-rw-r--r-- 1 postgres postgres   206 Feb 20 05:29 postgresql-4.log
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:29 postgresql-5.csv
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:29 postgresql-6.csv
-rw-r--r-- 1 postgres postgres     0 Feb 20 05:29 postgresql-7.csv
root@pg-restore-postgresql-1:/home/postgres# cat /home/postgres/pgdata/conf/recovery.conf
restore_command='envdir /home/postgres/pgdata/wal-g/restore-env /home/postgres/pgdata/wal-g/wal-g wal-fetch %f %p >> /home/postgres/pgdata/kb_restore/wal-g.log 2>&1'
recovery_target='immediate'
recovery_target_action='promote'
root@pg-restore-postgresql-1:/home/postgres# 
cat postgresql-4.csv
2025-02-20 05:29:06.632 GMT,,,130,,67b6bda2.82,1,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"ending log output to stderr",,"Future log output will go to log destination ""csvlog"".",,,,,,,"","postmaster",,0
2025-02-20 05:29:06.632 GMT,,,130,,67b6bda2.82,2,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"starting PostgreSQL 16.4 (Ubuntu 16.4-1.pgdg22.04+1) on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, 64-bit",,,,,,,,,"","postmaster",,0
2025-02-20 05:29:06.632 GMT,,,130,,67b6bda2.82,3,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"listening on IPv4 address ""0.0.0.0"", port 5432",,,,,,,,,"","postmaster",,0
2025-02-20 05:29:06.632 GMT,,,130,,67b6bda2.82,4,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"listening on IPv6 address ""::"", port 5432",,,,,,,,,"","postmaster",,0
2025-02-20 05:29:06.640 GMT,,,130,,67b6bda2.82,5,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"listening on Unix socket ""/var/run/postgresql/.s.PGSQL.5432""",,,,,,,,,"","postmaster",,0
2025-02-20 05:29:06.667 GMT,,,135,,67b6bda2.87,1,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"database system was interrupted while in recovery at log time 2025-02-19 03:41:09 GMT",,"If this has occurred more than once some data might be corrupted and you might need to choose an earlier recovery target.",,,,,,,"","startup",,0
2025-02-20 05:29:06.667 GMT,,,135,,67b6bda2.87,2,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"creating missing WAL directory ""pg_wal/archive_status""",,,,,,,,,"","startup",,0
2025-02-20 05:29:06.772 GMT,"postgres","postgres",139,"127.0.0.1:51060",67b6bda2.8b,1,"",2025-02-20 05:29:06 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:06.777 GMT,"postgres","postgres",140,"::1:59156",67b6bda2.8c,1,"",2025-02-20 05:29:06 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:06.778 GMT,"postgres","postgres",141,"127.0.0.1:51062",67b6bda2.8d,1,"",2025-02-20 05:29:06 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:06.780 GMT,"postgres","postgres",142,"::1:59158",67b6bda2.8e,1,"",2025-02-20 05:29:06 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:07.312 GMT,"postgres","postgres",150,"[local]",67b6bda3.96,1,"",2025-02-20 05:29:07 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:07.318 GMT,"postgres","postgres",152,"[local]",67b6bda3.98,1,"",2025-02-20 05:29:07 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:07.773 GMT,"postgres","postgres",153,"127.0.0.1:51068",67b6bda3.99,1,"",2025-02-20 05:29:07 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:07.778 GMT,"postgres","postgres",154,"::1:59172",67b6bda3.9a,1,"",2025-02-20 05:29:07 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:07.779 GMT,"postgres","postgres",155,"127.0.0.1:51070",67b6bda3.9b,1,"",2025-02-20 05:29:07 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:07.780 GMT,"postgres","postgres",156,"::1:59184",67b6bda3.9c,1,"",2025-02-20 05:29:07 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:08.326 GMT,"postgres","postgres",169,"[local]",67b6bda4.a9,1,"",2025-02-20 05:29:08 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:08.773 GMT,"postgres","postgres",172,"127.0.0.1:51082",67b6bda4.ac,1,"",2025-02-20 05:29:08 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:08.777 GMT,"postgres","postgres",173,"::1:59192",67b6bda4.ad,1,"",2025-02-20 05:29:08 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:08.779 GMT,"postgres","postgres",174,"127.0.0.1:51086",67b6bda4.ae,1,"",2025-02-20 05:29:08 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:08.780 GMT,"postgres","postgres",175,"::1:59204",67b6bda4.af,1,"",2025-02-20 05:29:08 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:09.334 GMT,"postgres","postgres",177,"[local]",67b6bda5.b1,1,"",2025-02-20 05:29:09 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:09.773 GMT,"postgres","postgres",178,"127.0.0.1:51096",67b6bda5.b2,1,"",2025-02-20 05:29:09 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:09.778 GMT,"postgres","postgres",179,"::1:59206",67b6bda5.b3,1,"",2025-02-20 05:29:09 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:09.779 GMT,"postgres","postgres",180,"127.0.0.1:51106",67b6bda5.b4,1,"",2025-02-20 05:29:09 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:09.780 GMT,"postgres","postgres",181,"::1:59222",67b6bda5.b5,1,"",2025-02-20 05:29:09 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:10.341 GMT,"postgres","postgres",183,"[local]",67b6bda6.b7,1,"",2025-02-20 05:29:10 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:10.772 GMT,"postgres","postgres",184,"127.0.0.1:51114",67b6bda6.b8,1,"",2025-02-20 05:29:10 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:10.777 GMT,"postgres","postgres",185,"::1:59234",67b6bda6.b9,1,"",2025-02-20 05:29:10 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:10.778 GMT,"postgres","postgres",186,"127.0.0.1:51130",67b6bda6.ba,1,"",2025-02-20 05:29:10 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:10.779 GMT,"postgres","postgres",187,"::1:59238",67b6bda6.bb,1,"",2025-02-20 05:29:10 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:11.350 GMT,"postgres","postgres",189,"[local]",67b6bda7.bd,1,"",2025-02-20 05:29:11 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:11.772 GMT,"postgres","postgres",190,"127.0.0.1:51140",67b6bda7.be,1,"",2025-02-20 05:29:11 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:11.777 GMT,"postgres","postgres",191,"::1:59246",67b6bda7.bf,1,"",2025-02-20 05:29:11 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:11.778 GMT,"postgres","postgres",192,"127.0.0.1:51152",67b6bda7.c0,1,"",2025-02-20 05:29:11 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:11.780 GMT,"postgres","postgres",193,"::1:59260",67b6bda7.c1,1,"",2025-02-20 05:29:11 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:12.358 GMT,"postgres","postgres",195,"[local]",67b6bda8.c3,1,"",2025-02-20 05:29:12 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:12.773 GMT,"postgres","postgres",196,"127.0.0.1:51158",67b6bda8.c4,1,"",2025-02-20 05:29:12 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:12.777 GMT,"postgres","postgres",197,"::1:59274",67b6bda8.c5,1,"",2025-02-20 05:29:12 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:12.779 GMT,"postgres","postgres",198,"127.0.0.1:51170",67b6bda8.c6,1,"",2025-02-20 05:29:12 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:12.780 GMT,"postgres","postgres",199,"::1:59278",67b6bda8.c7,1,"",2025-02-20 05:29:12 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:13.366 GMT,"postgres","postgres",201,"[local]",67b6bda9.c9,1,"",2025-02-20 05:29:13 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:13.772 GMT,"postgres","postgres",202,"127.0.0.1:51174",67b6bda9.ca,1,"",2025-02-20 05:29:13 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:13.777 GMT,"postgres","postgres",203,"::1:59282",67b6bda9.cb,1,"",2025-02-20 05:29:13 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:13.779 GMT,"postgres","postgres",204,"127.0.0.1:51186",67b6bda9.cc,1,"",2025-02-20 05:29:13 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:13.780 GMT,"postgres","postgres",205,"::1:59290",67b6bda9.cd,1,"",2025-02-20 05:29:13 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:14.374 GMT,"postgres","postgres",207,"[local]",67b6bdaa.cf,1,"",2025-02-20 05:29:14 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:14.648 GMT,"postgres","postgres",214,"127.0.0.1:51196",67b6bdaa.d6,1,"",2025-02-20 05:29:14 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:14.772 GMT,"postgres","postgres",215,"127.0.0.1:51212",67b6bdaa.d7,1,"",2025-02-20 05:29:14 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:14.777 GMT,"postgres","postgres",216,"::1:59302",67b6bdaa.d8,1,"",2025-02-20 05:29:14 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:14.778 GMT,"postgres","postgres",217,"127.0.0.1:51214",67b6bdaa.d9,1,"",2025-02-20 05:29:14 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:14.779 GMT,"postgres","postgres",218,"::1:59308",67b6bdaa.da,1,"",2025-02-20 05:29:14 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:15.382 GMT,"postgres","postgres",220,"[local]",67b6bdab.dc,1,"",2025-02-20 05:29:15 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:15.773 GMT,"postgres","postgres",221,"127.0.0.1:51220",67b6bdab.dd,1,"",2025-02-20 05:29:15 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:15.778 GMT,"postgres","postgres",222,"::1:59314",67b6bdab.de,1,"",2025-02-20 05:29:15 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:15.779 GMT,"postgres","postgres",223,"127.0.0.1:51232",67b6bdab.df,1,"",2025-02-20 05:29:15 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:15.780 GMT,"postgres","postgres",224,"::1:59316",67b6bdab.e0,1,"",2025-02-20 05:29:15 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:16.390 GMT,"postgres","postgres",226,"[local]",67b6bdac.e2,1,"",2025-02-20 05:29:16 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:16.772 GMT,"postgres","postgres",227,"127.0.0.1:53776",67b6bdac.e3,1,"",2025-02-20 05:29:16 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:16.777 GMT,"postgres","postgres",228,"::1:51136",67b6bdac.e4,1,"",2025-02-20 05:29:16 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:16.778 GMT,"postgres","postgres",229,"127.0.0.1:53784",67b6bdac.e5,1,"",2025-02-20 05:29:16 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:16.780 GMT,"postgres","postgres",230,"::1:51152",67b6bdac.e6,1,"",2025-02-20 05:29:16 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:17.397 GMT,"postgres","postgres",232,"[local]",67b6bdad.e8,1,"",2025-02-20 05:29:17 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:17.772 GMT,"postgres","postgres",233,"127.0.0.1:53788",67b6bdad.e9,1,"",2025-02-20 05:29:17 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:17.777 GMT,"postgres","postgres",234,"::1:51164",67b6bdad.ea,1,"",2025-02-20 05:29:17 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:17.778 GMT,"postgres","postgres",235,"127.0.0.1:53802",67b6bdad.eb,1,"",2025-02-20 05:29:17 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:17.779 GMT,"postgres","postgres",236,"::1:51166",67b6bdad.ec,1,"",2025-02-20 05:29:17 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:18.405 GMT,"postgres","postgres",238,"[local]",67b6bdae.ee,1,"",2025-02-20 05:29:18 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:18.772 GMT,"postgres","postgres",239,"127.0.0.1:53806",67b6bdae.ef,1,"",2025-02-20 05:29:18 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:18.777 GMT,"postgres","postgres",240,"::1:51168",67b6bdae.f0,1,"",2025-02-20 05:29:18 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:18.778 GMT,"postgres","postgres",241,"127.0.0.1:53812",67b6bdae.f1,1,"",2025-02-20 05:29:18 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:18.779 GMT,"postgres","postgres",242,"::1:51172",67b6bdae.f2,1,"",2025-02-20 05:29:18 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:19.412 GMT,"postgres","postgres",244,"[local]",67b6bdaf.f4,1,"",2025-02-20 05:29:19 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:19.772 GMT,"postgres","postgres",245,"127.0.0.1:53814",67b6bdaf.f5,1,"",2025-02-20 05:29:19 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:19.777 GMT,"postgres","postgres",246,"::1:51176",67b6bdaf.f6,1,"",2025-02-20 05:29:19 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:19.778 GMT,"postgres","postgres",247,"127.0.0.1:53822",67b6bdaf.f7,1,"",2025-02-20 05:29:19 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:19.779 GMT,"postgres","postgres",248,"::1:51186",67b6bdaf.f8,1,"",2025-02-20 05:29:19 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:20.420 GMT,"postgres","postgres",250,"[local]",67b6bdb0.fa,1,"",2025-02-20 05:29:20 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:20.772 GMT,"postgres","postgres",251,"127.0.0.1:53836",67b6bdb0.fb,1,"",2025-02-20 05:29:20 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:20.776 GMT,"postgres","postgres",252,"::1:51194",67b6bdb0.fc,1,"",2025-02-20 05:29:20 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:20.777 GMT,"postgres","postgres",253,"127.0.0.1:53840",67b6bdb0.fd,1,"",2025-02-20 05:29:20 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:20.779 GMT,"postgres","postgres",254,"::1:51198",67b6bdb0.fe,1,"",2025-02-20 05:29:20 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:21.428 GMT,"postgres","postgres",256,"[local]",67b6bdb1.100,1,"",2025-02-20 05:29:21 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:21.772 GMT,"postgres","postgres",257,"127.0.0.1:53850",67b6bdb1.101,1,"",2025-02-20 05:29:21 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:21.777 GMT,"postgres","postgres",258,"::1:51200",67b6bdb1.102,1,"",2025-02-20 05:29:21 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:21.778 GMT,"postgres","postgres",259,"127.0.0.1:53862",67b6bdb1.103,1,"",2025-02-20 05:29:21 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:21.779 GMT,"postgres","postgres",260,"::1:51212",67b6bdb1.104,1,"",2025-02-20 05:29:21 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:22.312 GMT,,,135,,67b6bda2.87,3,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"starting point-in-time recovery to earliest consistent point",,,,,,,,,"","startup",,0
2025-02-20 05:29:22.316 GMT,,,135,,67b6bda2.87,4,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"starting backup recovery with redo LSN 1B6/BA014038, checkpoint LSN 1B7/EF9D988, on timeline ID 2",,,,,,,,,"","startup",,0
2025-02-20 05:29:22.436 GMT,"postgres","postgres",279,"[local]",67b6bdb2.117,1,"",2025-02-20 05:29:22 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:22.773 GMT,"postgres","postgres",282,"127.0.0.1:53876",67b6bdb2.11a,1,"",2025-02-20 05:29:22 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:22.777 GMT,"postgres","postgres",283,"::1:51214",67b6bdb2.11b,1,"",2025-02-20 05:29:22 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:22.779 GMT,"postgres","postgres",284,"127.0.0.1:53886",67b6bdb2.11c,1,"",2025-02-20 05:29:22 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:22.780 GMT,"postgres","postgres",285,"::1:51220",67b6bdb2.11d,1,"",2025-02-20 05:29:22 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:23.444 GMT,"postgres","postgres",287,"[local]",67b6bdb3.11f,1,"",2025-02-20 05:29:23 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:23.773 GMT,"postgres","postgres",288,"127.0.0.1:53890",67b6bdb3.120,1,"",2025-02-20 05:29:23 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:23.777 GMT,"postgres","postgres",289,"::1:51234",67b6bdb3.121,1,"",2025-02-20 05:29:23 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:23.778 GMT,"postgres","postgres",290,"127.0.0.1:53892",67b6bdb3.122,1,"",2025-02-20 05:29:23 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:23.780 GMT,"postgres","postgres",291,"::1:51240",67b6bdb3.123,1,"",2025-02-20 05:29:23 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:24.452 GMT,"postgres","postgres",293,"[local]",67b6bdb4.125,1,"",2025-02-20 05:29:24 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:24.772 GMT,"postgres","postgres",294,"127.0.0.1:53898",67b6bdb4.126,1,"",2025-02-20 05:29:24 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:24.777 GMT,"postgres","postgres",295,"::1:51256",67b6bdb4.127,1,"",2025-02-20 05:29:24 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:24.778 GMT,"postgres","postgres",296,"127.0.0.1:53904",67b6bdb4.128,1,"",2025-02-20 05:29:24 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:24.779 GMT,"postgres","postgres",297,"::1:51264",67b6bdb4.129,1,"",2025-02-20 05:29:24 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:25.459 GMT,"postgres","postgres",299,"[local]",67b6bdb5.12b,1,"",2025-02-20 05:29:25 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:25.772 GMT,"postgres","postgres",300,"127.0.0.1:53910",67b6bdb5.12c,1,"",2025-02-20 05:29:25 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:25.777 GMT,"postgres","postgres",301,"::1:51266",67b6bdb5.12d,1,"",2025-02-20 05:29:25 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:25.778 GMT,"postgres","postgres",302,"127.0.0.1:53920",67b6bdb5.12e,1,"",2025-02-20 05:29:25 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:25.780 GMT,"postgres","postgres",303,"::1:51276",67b6bdb5.12f,1,"",2025-02-20 05:29:25 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:26.467 GMT,"postgres","postgres",305,"[local]",67b6bdb6.131,1,"",2025-02-20 05:29:26 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:26.772 GMT,"postgres","postgres",306,"127.0.0.1:51294",67b6bdb6.132,1,"",2025-02-20 05:29:26 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:26.776 GMT,"postgres","postgres",307,"::1:58144",67b6bdb6.133,1,"",2025-02-20 05:29:26 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:26.778 GMT,"postgres","postgres",308,"127.0.0.1:51298",67b6bdb6.134,1,"",2025-02-20 05:29:26 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:26.779 GMT,"postgres","postgres",309,"::1:58154",67b6bdb6.135,1,"",2025-02-20 05:29:26 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:27.475 GMT,"postgres","postgres",311,"[local]",67b6bdb7.137,1,"",2025-02-20 05:29:27 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:27.772 GMT,"postgres","postgres",312,"127.0.0.1:51302",67b6bdb7.138,1,"",2025-02-20 05:29:27 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:27.777 GMT,"postgres","postgres",313,"::1:58166",67b6bdb7.139,1,"",2025-02-20 05:29:27 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:27.778 GMT,"postgres","postgres",314,"127.0.0.1:51318",67b6bdb7.13a,1,"",2025-02-20 05:29:27 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:27.779 GMT,"postgres","postgres",315,"::1:58180",67b6bdb7.13b,1,"",2025-02-20 05:29:27 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:28.483 GMT,"postgres","postgres",317,"[local]",67b6bdb8.13d,1,"",2025-02-20 05:29:28 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:28.772 GMT,"postgres","postgres",318,"127.0.0.1:51334",67b6bdb8.13e,1,"",2025-02-20 05:29:28 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:28.777 GMT,"postgres","postgres",319,"::1:58188",67b6bdb8.13f,1,"",2025-02-20 05:29:28 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:28.778 GMT,"postgres","postgres",320,"127.0.0.1:51338",67b6bdb8.140,1,"",2025-02-20 05:29:28 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:28.779 GMT,"postgres","postgres",321,"::1:58190",67b6bdb8.141,1,"",2025-02-20 05:29:28 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:29.491 GMT,"postgres","postgres",324,"[local]",67b6bdb9.144,1,"",2025-02-20 05:29:29 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:29.772 GMT,"postgres","postgres",325,"127.0.0.1:51350",67b6bdb9.145,1,"",2025-02-20 05:29:29 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:29.777 GMT,"postgres","postgres",326,"::1:58204",67b6bdb9.146,1,"",2025-02-20 05:29:29 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:29.778 GMT,"postgres","postgres",327,"127.0.0.1:51352",67b6bdb9.147,1,"",2025-02-20 05:29:29 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:29.780 GMT,"postgres","postgres",328,"::1:58220",67b6bdb9.148,1,"",2025-02-20 05:29:29 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:30.499 GMT,"postgres","postgres",330,"[local]",67b6bdba.14a,1,"",2025-02-20 05:29:30 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:30.773 GMT,"postgres","postgres",331,"127.0.0.1:51362",67b6bdba.14b,1,"",2025-02-20 05:29:30 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:30.777 GMT,"postgres","postgres",332,"::1:58232",67b6bdba.14c,1,"",2025-02-20 05:29:30 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:30.779 GMT,"postgres","postgres",333,"127.0.0.1:51374",67b6bdba.14d,1,"",2025-02-20 05:29:30 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:30.780 GMT,"postgres","postgres",334,"::1:58236",67b6bdba.14e,1,"",2025-02-20 05:29:30 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:31.506 GMT,"postgres","postgres",336,"[local]",67b6bdbb.150,1,"",2025-02-20 05:29:31 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:31.773 GMT,"postgres","postgres",337,"127.0.0.1:51384",67b6bdbb.151,1,"",2025-02-20 05:29:31 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:31.778 GMT,"postgres","postgres",338,"::1:58244",67b6bdbb.152,1,"",2025-02-20 05:29:31 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:31.779 GMT,"postgres","postgres",339,"127.0.0.1:51398",67b6bdbb.153,1,"",2025-02-20 05:29:31 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:31.780 GMT,"postgres","postgres",340,"::1:58246",67b6bdbb.154,1,"",2025-02-20 05:29:31 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:32.514 GMT,"postgres","postgres",342,"[local]",67b6bdbc.156,1,"",2025-02-20 05:29:32 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:32.773 GMT,"postgres","postgres",343,"127.0.0.1:51406",67b6bdbc.157,1,"",2025-02-20 05:29:32 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:32.777 GMT,"postgres","postgres",344,"::1:58256",67b6bdbc.158,1,"",2025-02-20 05:29:32 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:32.779 GMT,"postgres","postgres",345,"127.0.0.1:51412",67b6bdbc.159,1,"",2025-02-20 05:29:32 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:32.780 GMT,"postgres","postgres",346,"::1:58260",67b6bdbc.15a,1,"",2025-02-20 05:29:32 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:33.522 GMT,"postgres","postgres",348,"[local]",67b6bdbd.15c,1,"",2025-02-20 05:29:33 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:33.773 GMT,"postgres","postgres",349,"127.0.0.1:51418",67b6bdbd.15d,1,"",2025-02-20 05:29:33 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:33.778 GMT,"postgres","postgres",350,"::1:58272",67b6bdbd.15e,1,"",2025-02-20 05:29:33 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:33.779 GMT,"postgres","postgres",351,"127.0.0.1:51430",67b6bdbd.15f,1,"",2025-02-20 05:29:33 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:33.781 GMT,"postgres","postgres",352,"::1:58276",67b6bdbd.160,1,"",2025-02-20 05:29:33 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:34.530 GMT,"postgres","postgres",354,"[local]",67b6bdbe.162,1,"",2025-02-20 05:29:34 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:34.772 GMT,"postgres","postgres",355,"127.0.0.1:51436",67b6bdbe.163,1,"",2025-02-20 05:29:34 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:34.777 GMT,"postgres","postgres",356,"::1:58290",67b6bdbe.164,1,"",2025-02-20 05:29:34 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:34.778 GMT,"postgres","postgres",357,"127.0.0.1:51452",67b6bdbe.165,1,"",2025-02-20 05:29:34 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:34.780 GMT,"postgres","postgres",358,"::1:58302",67b6bdbe.166,1,"",2025-02-20 05:29:34 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:35.537 GMT,"postgres","postgres",360,"[local]",67b6bdbf.168,1,"",2025-02-20 05:29:35 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:35.771 GMT,"postgres","postgres",361,"127.0.0.1:51468",67b6bdbf.169,1,"",2025-02-20 05:29:35 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:35.777 GMT,"postgres","postgres",362,"::1:58310",67b6bdbf.16a,1,"",2025-02-20 05:29:35 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:35.778 GMT,"postgres","postgres",363,"127.0.0.1:51478",67b6bdbf.16b,1,"",2025-02-20 05:29:35 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:35.780 GMT,"postgres","postgres",364,"::1:58322",67b6bdbf.16c,1,"",2025-02-20 05:29:35 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:35.835 GMT,"postgres","postgres",371,"127.0.0.1:51494",67b6bdbf.173,1,"",2025-02-20 05:29:35 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:36.544 GMT,"postgres","postgres",391,"[local]",67b6bdc0.187,1,"",2025-02-20 05:29:36 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:36.772 GMT,"postgres","postgres",392,"127.0.0.1:34348",67b6bdc0.188,1,"",2025-02-20 05:29:36 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:36.776 GMT,"postgres","postgres",393,"::1:33986",67b6bdc0.189,1,"",2025-02-20 05:29:36 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:36.777 GMT,"postgres","postgres",394,"127.0.0.1:34350",67b6bdc0.18a,1,"",2025-02-20 05:29:36 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:36.779 GMT,"postgres","postgres",395,"::1:33996",67b6bdc0.18b,1,"",2025-02-20 05:29:36 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:37.550 GMT,"postgres","postgres",398,"[local]",67b6bdc1.18e,1,"",2025-02-20 05:29:37 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:37.772 GMT,"postgres","postgres",399,"127.0.0.1:34364",67b6bdc1.18f,1,"",2025-02-20 05:29:37 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:37.776 GMT,"postgres","postgres",400,"::1:34002",67b6bdc1.190,1,"",2025-02-20 05:29:37 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:37.778 GMT,"postgres","postgres",401,"127.0.0.1:34372",67b6bdc1.191,1,"",2025-02-20 05:29:37 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:37.779 GMT,"postgres","postgres",402,"::1:34010",67b6bdc1.192,1,"",2025-02-20 05:29:37 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:38.558 GMT,"postgres","postgres",404,"[local]",67b6bdc2.194,1,"",2025-02-20 05:29:38 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:38.772 GMT,"postgres","postgres",405,"127.0.0.1:34378",67b6bdc2.195,1,"",2025-02-20 05:29:38 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:38.777 GMT,"postgres","postgres",406,"::1:34012",67b6bdc2.196,1,"",2025-02-20 05:29:38 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:38.778 GMT,"postgres","postgres",407,"127.0.0.1:34384",67b6bdc2.197,1,"",2025-02-20 05:29:38 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:38.779 GMT,"postgres","postgres",408,"::1:34014",67b6bdc2.198,1,"",2025-02-20 05:29:38 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:39.566 GMT,"postgres","postgres",410,"[local]",67b6bdc3.19a,1,"",2025-02-20 05:29:39 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:39.772 GMT,"postgres","postgres",411,"127.0.0.1:34396",67b6bdc3.19b,1,"",2025-02-20 05:29:39 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:39.777 GMT,"postgres","postgres",412,"::1:34028",67b6bdc3.19c,1,"",2025-02-20 05:29:39 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:39.778 GMT,"postgres","postgres",413,"127.0.0.1:34400",67b6bdc3.19d,1,"",2025-02-20 05:29:39 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:39.779 GMT,"postgres","postgres",414,"::1:34038",67b6bdc3.19e,1,"",2025-02-20 05:29:39 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:40.574 GMT,"postgres","postgres",416,"[local]",67b6bdc4.1a0,1,"",2025-02-20 05:29:40 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:40.772 GMT,"postgres","postgres",417,"127.0.0.1:34414",67b6bdc4.1a1,1,"",2025-02-20 05:29:40 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:40.776 GMT,"postgres","postgres",418,"::1:34040",67b6bdc4.1a2,1,"",2025-02-20 05:29:40 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:40.777 GMT,"postgres","postgres",419,"127.0.0.1:34422",67b6bdc4.1a3,1,"",2025-02-20 05:29:40 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:40.779 GMT,"postgres","postgres",420,"::1:34056",67b6bdc4.1a4,1,"",2025-02-20 05:29:40 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:41.582 GMT,"postgres","postgres",422,"[local]",67b6bdc5.1a6,1,"",2025-02-20 05:29:41 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:41.773 GMT,"postgres","postgres",423,"127.0.0.1:34430",67b6bdc5.1a7,1,"",2025-02-20 05:29:41 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:41.777 GMT,"postgres","postgres",424,"::1:34064",67b6bdc5.1a8,1,"",2025-02-20 05:29:41 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:41.778 GMT,"postgres","postgres",425,"127.0.0.1:34444",67b6bdc5.1a9,1,"",2025-02-20 05:29:41 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:41.780 GMT,"postgres","postgres",426,"::1:34080",67b6bdc5.1aa,1,"",2025-02-20 05:29:41 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:42.589 GMT,"postgres","postgres",428,"[local]",67b6bdc6.1ac,1,"",2025-02-20 05:29:42 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:42.772 GMT,"postgres","postgres",429,"127.0.0.1:34448",67b6bdc6.1ad,1,"",2025-02-20 05:29:42 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:42.776 GMT,"postgres","postgres",430,"::1:34082",67b6bdc6.1ae,1,"",2025-02-20 05:29:42 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:42.777 GMT,"postgres","postgres",431,"127.0.0.1:34458",67b6bdc6.1af,1,"",2025-02-20 05:29:42 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:42.779 GMT,"postgres","postgres",432,"::1:34092",67b6bdc6.1b0,1,"",2025-02-20 05:29:42 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:43.597 GMT,"postgres","postgres",434,"[local]",67b6bdc7.1b2,1,"",2025-02-20 05:29:43 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:43.772 GMT,"postgres","postgres",435,"127.0.0.1:34460",67b6bdc7.1b3,1,"",2025-02-20 05:29:43 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:43.777 GMT,"postgres","postgres",436,"::1:34108",67b6bdc7.1b4,1,"",2025-02-20 05:29:43 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:43.778 GMT,"postgres","postgres",437,"127.0.0.1:34474",67b6bdc7.1b5,1,"",2025-02-20 05:29:43 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:43.779 GMT,"postgres","postgres",438,"::1:34114",67b6bdc7.1b6,1,"",2025-02-20 05:29:43 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:44.605 GMT,"postgres","postgres",440,"[local]",67b6bdc8.1b8,1,"",2025-02-20 05:29:44 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:44.773 GMT,"postgres","postgres",441,"127.0.0.1:34476",67b6bdc8.1b9,1,"",2025-02-20 05:29:44 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:44.777 GMT,"postgres","postgres",442,"::1:34116",67b6bdc8.1ba,1,"",2025-02-20 05:29:44 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:44.779 GMT,"postgres","postgres",443,"127.0.0.1:34484",67b6bdc8.1bb,1,"",2025-02-20 05:29:44 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:44.780 GMT,"postgres","postgres",444,"::1:34126",67b6bdc8.1bc,1,"",2025-02-20 05:29:44 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:45.613 GMT,"postgres","postgres",446,"[local]",67b6bdc9.1be,1,"",2025-02-20 05:29:45 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:45.772 GMT,"postgres","postgres",447,"127.0.0.1:34486",67b6bdc9.1bf,1,"",2025-02-20 05:29:45 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:45.776 GMT,"postgres","postgres",448,"::1:34136",67b6bdc9.1c0,1,"",2025-02-20 05:29:45 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:45.778 GMT,"postgres","postgres",449,"127.0.0.1:34500",67b6bdc9.1c1,1,"",2025-02-20 05:29:45 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:45.779 GMT,"postgres","postgres",450,"::1:34150",67b6bdc9.1c2,1,"",2025-02-20 05:29:45 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:46.621 GMT,"postgres","postgres",452,"[local]",67b6bdca.1c4,1,"",2025-02-20 05:29:46 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:46.773 GMT,"postgres","postgres",453,"127.0.0.1:56902",67b6bdca.1c5,1,"",2025-02-20 05:29:46 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:46.778 GMT,"postgres","postgres",454,"::1:34802",67b6bdca.1c6,1,"",2025-02-20 05:29:46 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:46.779 GMT,"postgres","postgres",455,"127.0.0.1:56912",67b6bdca.1c7,1,"",2025-02-20 05:29:46 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:46.781 GMT,"postgres","postgres",456,"::1:34810",67b6bdca.1c8,1,"",2025-02-20 05:29:46 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:47.628 GMT,"postgres","postgres",458,"[local]",67b6bdcb.1ca,1,"",2025-02-20 05:29:47 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:47.772 GMT,"postgres","postgres",459,"127.0.0.1:56914",67b6bdcb.1cb,1,"",2025-02-20 05:29:47 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:47.776 GMT,"postgres","postgres",460,"::1:34816",67b6bdcb.1cc,1,"",2025-02-20 05:29:47 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:47.778 GMT,"postgres","postgres",461,"127.0.0.1:56926",67b6bdcb.1cd,1,"",2025-02-20 05:29:47 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:47.779 GMT,"postgres","postgres",462,"::1:34828",67b6bdcb.1ce,1,"",2025-02-20 05:29:47 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:48.637 GMT,"postgres","postgres",464,"[local]",67b6bdcc.1d0,1,"",2025-02-20 05:29:48 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:48.772 GMT,"postgres","postgres",465,"127.0.0.1:56942",67b6bdcc.1d1,1,"",2025-02-20 05:29:48 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:48.777 GMT,"postgres","postgres",466,"::1:34840",67b6bdcc.1d2,1,"",2025-02-20 05:29:48 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:48.778 GMT,"postgres","postgres",467,"127.0.0.1:56956",67b6bdcc.1d3,1,"",2025-02-20 05:29:48 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:48.780 GMT,"postgres","postgres",468,"::1:34856",67b6bdcc.1d4,1,"",2025-02-20 05:29:48 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:49.645 GMT,"postgres","postgres",470,"[local]",67b6bdcd.1d6,1,"",2025-02-20 05:29:49 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:49.772 GMT,"postgres","postgres",471,"127.0.0.1:56972",67b6bdcd.1d7,1,"",2025-02-20 05:29:49 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:49.777 GMT,"postgres","postgres",472,"::1:34862",67b6bdcd.1d8,1,"",2025-02-20 05:29:49 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:49.778 GMT,"postgres","postgres",473,"127.0.0.1:56978",67b6bdcd.1d9,1,"",2025-02-20 05:29:49 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:49.780 GMT,"postgres","postgres",474,"::1:34866",67b6bdcd.1da,1,"",2025-02-20 05:29:49 GMT,,0,FATAL,57P03,"the database system is starting up",,,,,,,,,"","client backend",,0
2025-02-20 05:29:49.818 GMT,,,135,,67b6bda2.87,5,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"invalid checkpoint record",,,,,,,,,"","startup",,0
2025-02-20 05:29:49.818 GMT,,,135,,67b6bda2.87,6,,2025-02-20 05:29:06 GMT,,0,FATAL,XX000,"could not locate required checkpoint record",,"If you are restoring from a backup, touch ""/home/postgres/pgdata/pgroot/data/recovery.signal"" and add required recovery options.
If you are not restoring from a backup, try removing the file ""/home/postgres/pgdata/pgroot/data/backup_label"".
Be careful: removing ""/home/postgres/pgdata/pgroot/data/backup_label"" will result in a corrupt cluster if restoring from a backup.",,,,,,,"","startup",,0
2025-02-20 05:29:49.821 GMT,,,130,,67b6bda2.82,6,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"startup process (PID 135) exited with exit code 1",,,,,,,,,"","postmaster",,0
2025-02-20 05:29:49.821 GMT,,,130,,67b6bda2.82,7,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"aborting startup due to startup process failure",,,,,,,,,"","postmaster",,0
2025-02-20 05:29:49.834 GMT,,,130,,67b6bda2.82,8,,2025-02-20 05:29:06 GMT,,0,LOG,00000,"database system is shut down",,,,,,,,,"","postmaster",,0

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

@wangyelei
Copy link
Contributor

fixed at apecloud/kubeblocks-addons#1486

@wangyelei
Copy link
Contributor

It is necessary to back up from the primary instance, and backing up from the secondary instance may cause this issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants