mirror of
https://github.com/kevinveenbirkenbach/docker-volume-backup.git
synced 2026-08-24 23:04:34 +00:00
Each volume is copied twice into the same destination: once hot with the container running, once cold after it is stopped (backup/app.py:127-131). rsync ran with -b, so --delete did not remove a file the source had dropped between the passes - it renamed it. Stopping a container is exactly what makes the source drop files: a graceful shutdown flushes, and the format rolls its commit point. For an opaque payload the twin is stale bytes nobody reads. For a format that enumerates its own directory it is corruption. Lucene resolves the current commit by parsing every file starting with segments as a radix-36 generation, so a restored segments_3~ raises NumberFormatException, the shard store cannot be read, and the primary is left NO_VALID_SHARD_COPY. With .security-7 unallocatable the reserved elastic user has no password hash, every probe gets HTTP 401, and the container never turns healthy. Seen in infinito-nexus-core CI run 30963648828: the restore drill waited 1200s on elasticsearch while all 29 other containers came back healthy; the generation held segments_3~ next to segments_4 in all three index directories. A run two days earlier passed the same drill because that stack was idle and nothing rolled between the passes - which is why this reads as flaky rather than broken. Reproduced with real rsync in all three shapes: two passes into the same destination with -b leave segments_3~ beside segments_4, without -b only segments_4 survives, and a single pass keeps segments_3. Measured on the same fixtures, dropping -b leaves the predecessor generation byte-identical and keeps the --link-dest hardlinks intact, so the incremental scheme is unaffected; generations get smaller, never larger. --link-dest already provides the cheap incrementals. -b contributed nothing on top of it but the twins, and no caller reads them: the restore path is an unfiltered rsync -avv --delete into the live volume (restore/files.py:35). Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
66 lines
2.0 KiB
Python
66 lines
2.0 KiB
Python
from __future__ import annotations
|
|
|
|
import os
|
|
import pathlib
|
|
|
|
from .shell import BackupException, execute_shell_command
|
|
|
|
|
|
def get_storage_path(volume_name: str) -> str:
|
|
path = execute_shell_command(
|
|
f"docker volume inspect --format '{{{{ .Mountpoint }}}}' {volume_name}"
|
|
)[0]
|
|
return f"{path}/"
|
|
|
|
|
|
def get_last_backup_dir(
|
|
versions_dir: str, volume_name: str, current_backup_dir: str
|
|
) -> str | None:
|
|
versions = sorted(os.listdir(versions_dir), reverse=True)
|
|
for version in versions:
|
|
candidate = os.path.join(versions_dir, version, volume_name, "files", "")
|
|
if candidate != current_backup_dir and os.path.isdir(candidate):
|
|
return candidate
|
|
return None
|
|
|
|
|
|
def backup_volume(
|
|
versions_dir: str,
|
|
volume_name: str,
|
|
volume_dir: str,
|
|
*,
|
|
authoritative: bool,
|
|
source: str,
|
|
) -> None:
|
|
"""Perform incremental file backup of a Docker volume.
|
|
|
|
Args:
|
|
authoritative: compare source and destination by content instead of by
|
|
size and whole-second mtime. Required on a pass whose destination was
|
|
already written from a live source, where a file can differ while
|
|
both attributes still agree.
|
|
source: directory to read from - the volume's mountpoint, or its path
|
|
inside a snapshot.
|
|
"""
|
|
dest = os.path.join(volume_dir, "files") + "/"
|
|
pathlib.Path(dest).mkdir(parents=True, exist_ok=True)
|
|
|
|
last = get_last_backup_dir(versions_dir, volume_name, dest)
|
|
link_dest = f"--link-dest='{last}'" if last else ""
|
|
verify = "--checksum " if authoritative else ""
|
|
|
|
cmd = (
|
|
f"rsync -aP --no-D --delete --delete-excluded "
|
|
f"{verify}{link_dest} {source} {dest}"
|
|
)
|
|
|
|
try:
|
|
execute_shell_command(cmd)
|
|
except BackupException as e:
|
|
if "file has vanished" in str(e):
|
|
print(
|
|
"Warning: Some files vanished before transfer. Continuing.", flush=True
|
|
)
|
|
else:
|
|
raise
|