We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
1.2.0 changelog says:
Added REST API /backup/list/local and /backup/list/remote to allow list backup types separately
However, GET /backup/list/local lists ALL existing backups regardless of their location, and GET /backup/list/remote does not show any backups at all
/backup/list/local
/backup/list/remote
How to reproduce Simple environment with docker images for clickhousebackup and pure-ftpd
clickhousebackup
pure-ftpd
docker run -d --name ftpd_server -p 21:21 -p 30000-30009:30000-30009 -e "PUBLICHOST=localhost" -e "FTP_USER_NAME=aztest" -e "FTP_USER_PASS=aztest" -e "FTP_USER_HOME=/home/aztest" stilliard/pure-ftpd docker run --rm --network host -v "/var/lib/clickhouse:/var/lib/clickhouse" -e REMOTE_STORAGE="ftp" -e FTP_ADDRESS="localhost:21" -e FTP_USERNAME="aztest" -e FTP_PASSWORD="aztest" altinity/clickhouse-backup:1.2.0 server
Create a remote backup:
curl -s -d {"command": "create_remote bp2"}' localhost:7171/backup/actions -X POST
Now, output of GET backup/list and backup/list/local are identical
backup/list
backup/list/local
The text was updated successfully, but these errors were encountered:
Slach
Successfully merging a pull request may close this issue.
1.2.0 changelog says:
However, GET
/backup/list/local
lists ALL existing backups regardless of their location, and GET/backup/list/remote
does not show any backups at allHow to reproduce
Simple environment with docker images for
clickhousebackup
andpure-ftpd
Create a remote backup:
Now, output of GET
backup/list
andbackup/list/local
are identicalThe text was updated successfully, but these errors were encountered: