mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
Backup download fails with "file not found: {UUID}" #126
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hosternus on 2/18/2026
Environment
Databasus: latest (hub.docker.com, databasus/databasus, v3.14.0) → BROKEN
v3.12.2 (earlier version) → WORKS
Docker version 29.2.1, build a5c7197
Storage: Yandex Object Storage (S3) + Local Disk (both fail)
Target DB: MySQL 9.6.0
OS: Ubuntu 24.04 (amd64)
Steps to reproduce
1) Deploy docker-compose.yml
2) Add database: UI → Add Database → MySQL (host: mysql:3306, useHTTPS: true)
3) Create local/S3 storage → Successful
4) Proceed manual backu → Successful
5) Backups → Download → Error
Broken backups and logs
1) via Local storage
file source
{"error":"failed to get backup file: file not found: eb8394d5-dac0-41fc-ac4f-c9df2798c97b"}logs
Real filename:
/databasus-data/backups/test-db-20260217-233615-eb8394d5-dac0-41fc-ac4f-c9df2798c97bService tries to find backup file via UUID (like in earlier versions), not by full name
2) via S3 (YandexCloud object storage)
file source
{"error":"failed to get backup file: file does not exist in S3: The specified key does not exist."}logs
Real object name:
test-db-20260217-235619-c652b81e-c2aa-4952-b136-8e57a79f5aeaService queried name:
c652b81e-c2aa-4952-b136-8e57a79f5aeaSame problem like p.2
Please don't judge me too harshly, this is my first issue:)