Hi! I have some problem - i setup Percona in docker container with storage in S3 Google
My config:
pitr:
enabled: true
oplogSpanMin: 5
compression: s2
storage:
type: s3
s3:
provider: gcs
region: europe-west4
endpointUrl: https://storage.googleapis.com
bucket: test-mongo
prefix: mongo-test
credentials:
access-key-id: 'xxx'
secret-access-key: 'xxx'
maxUploadParts: 10000
storageClass: STANDARD
insecureSkipTLSVerify: false
When i’ll make backup
docker exec percona pbm backup --compression=gzip
This backup appears in S3, i’ll got ansver
Starting backup '2022-07-05T14:59:54Z'....
Backup '2022-07-05T14:59:54Z' to remote store 's3://https://storage.googleapis.com/backups-mongo-central/mongo-devel' has started
But if i’ll start command
docker exec percona pbm list
i will got
Backup snapshots:
PITR <on>:
And in log -
docker logs percona
2022-07-05T15:00:16.000+0000 D [pitr] start_catchup
2022-07-05T15:00:16.000+0000 E [pitr] init: catchup: no backup found, a new backup is required to start PITR
2022-07-05T15:00:46.000+0000 D [pitr] start_catchup
2022-07-05T15:00:46.000+0000 E [pitr] init: catchup: no backup found, a new backup is required to start PITR
the reason is that the backup is in S3?