fix(prune): reclaim merged branches, and size the volume for the clone
Two assumptions in the eviction pass did not hold on this forge, and between them a volume filled up three times in three days with nothing reclaimed automatically. Both are replaced here; the pass also moves ahead of the seed, which is the only order in which its work can help the run performing it. LIVENESS. Pass 1 evicted a cache only when its branch was gone from origin. Gitea keeps a PR's branch after the merge unless the repo opts into delete-on-merge, and zemyna does not — so ls-remote reports fifty merged branches and the signal fires for none of them. A second signal is added beside it: a branch still on origin whose tip is an ancestor of a protected branch's tip holds no commit that branch does not, so its cache will never be read again and goes in the same unconditional pass. Ancestry is answered from the commits in the job's own checkout, so the answer "cannot tell" exists and stays distinct from "not merged" at both granularities. A shallow checkout withholds the signal entirely, since a missing object is its normal case rather than evidence. A single branch whose tip is not in the checkout is kept, with a warning naming it. A squash or rebase merge leaves no ancestry and reads as live until the branch is deleted. All three are missed reclamations, which cost disk; the other direction costs a branch its cache mid-build. HEADROOM. Passes 2 and 3 gated on a percentage of the volume, which cannot express the failure they have to prevent: a clone runs out of disk while unsharing its mutable paths, and how much that needs is a property of the snapshot rather than of the disk. Staging failed at 34 G free and passed at 74 G, so a 10% floor — 19 G here — never fired first. The requirement is now measured per run off the very source the seed will read, the pass evicts oldest-first until it is met and stops there, and falling short of it fails with the shortfall and every directory it kept, rather than letting the seed fail seconds later against a staging path that names none of that. min-free-percent survives as an additional floor, defaulting to 0, and falling short of that one is still a warning and a self-clear. ORDERING. The prune step ran after the seed, so each run freed space for the next one. It now runs between resolve and seed. Two things that makes newly reachable are closed: the source about to be cloned is excluded from every pass by name, and a concurrent job's target dir already carries its lock from the instant it appears under its final name, so nothing is seen unlocked that is in use. Red-proven: sixteen assertions across the four new scenarios fail against the pre-fix scripts, including the zemyna layout evicting nothing where it should evict exactly one directory, and the headroom scenario exiting 0 where it should exit 1. Refs #20. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JXMQCJ5Eg5f9G9cfYzyh4Z
This commit is contained in:
+272
-32
@@ -1,8 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
# Eviction for the per-ref cache directories on the persistent volume.
|
||||
#
|
||||
# Usage: prune-cache.sh <cache-root> <own-target-dir> <protected-branches> <min-free-percent>
|
||||
# Usage: prune-cache.sh <cache-root> <own-target-dir> <protected-branches> \
|
||||
# <min-free-percent> [own-key] [base-key] [fallback-dir]
|
||||
# protected-branches space-separated raw refs (e.g. "dev main")
|
||||
# min-free-percent a FLOOR, not the gate — 0 to rely on the derived
|
||||
# requirement alone (the default)
|
||||
# own-key, base-key, fallback-dir
|
||||
# the same three the seed step resolves its source from.
|
||||
# Given them, this pass sizes the volume for the clone
|
||||
# that step is about to make; without them it has only
|
||||
# the percentage floor, and says so.
|
||||
#
|
||||
# Optional environment:
|
||||
# STALE_LOCK_SECONDS age past which a .ci-lock-* marker is treated as
|
||||
@@ -16,19 +24,41 @@
|
||||
#
|
||||
# Three passes, in order:
|
||||
#
|
||||
# 1. LIVENESS — every target-*/snapshot-* directory whose branch no longer
|
||||
# exists on origin is removed UNCONDITIONALLY, not gated on free space.
|
||||
# A directory for a branch deleted days ago is pure loss: nothing will
|
||||
# ever read it again, since a merged PR's branch cannot be reopened.
|
||||
# Waiting for disk pressure to notice means paying for it until then.
|
||||
# Skipped entirely, loudly, if the liveness signal itself is
|
||||
# unavailable — "couldn't determine" is never folded into "dead".
|
||||
# 2. PRESSURE — if free space is still under the threshold, evict remaining
|
||||
# (now necessarily live) directories oldest-first until it clears.
|
||||
# 3. SELF-CLEAR — if pass 2 still isn't enough, wipe this run's own target
|
||||
# dir and pay a cold rebuild, reported to the job summary as well as the
|
||||
# log, because a warning on a green run is what lets a silently 4x-slower
|
||||
# job go unnoticed.
|
||||
# 1. LIVENESS — every target-*/snapshot-* directory whose branch is DEAD is
|
||||
# removed UNCONDITIONALLY, not gated on free space. A directory for a
|
||||
# branch nothing will build again is pure loss; waiting for disk pressure
|
||||
# to notice means paying for it until then. Two signals make a branch
|
||||
# dead, and the second exists because the first alone is inert on a forge
|
||||
# that keeps branches after merge (gitdan-actions#20):
|
||||
#
|
||||
# DELETED — the branch is no longer on origin at all.
|
||||
# MERGED — the branch is still on origin, but its tip is an ancestor
|
||||
# of a protected branch's tip, so every commit it holds is
|
||||
# already on the branch its cache would be re-cloned from.
|
||||
#
|
||||
# Skipped entirely, loudly, if the signal itself is unavailable —
|
||||
# "couldn't determine" is never folded into "dead", for either signal
|
||||
# and at either granularity: a checkout that cannot answer ancestry at
|
||||
# all skips the merged half, and a single branch whose tip is not in the
|
||||
# checkout is kept with a warning naming it.
|
||||
# 2. PRESSURE — if free space is under the requirement, evict remaining
|
||||
# (now necessarily live) directories oldest-first until it clears. The
|
||||
# requirement is what the seed step is about to need to clone its source,
|
||||
# MEASURED off that source (see clone_headroom_kb in cache-lib.sh), and a
|
||||
# percentage floor only if one is configured. A percentage cannot express
|
||||
# this: the failure it has to prevent is a clone running out of disk
|
||||
# part-way through unsharing its mutable paths, and how much that needs
|
||||
# is a property of the snapshot, not of the volume.
|
||||
# 3. SELF-CLEAR — if pass 2 still isn't enough for the percentage floor,
|
||||
# wipe this run's own target dir and pay a cold rebuild, reported to the
|
||||
# job summary as well as the log, because a warning on a green run is
|
||||
# what lets a silently 4x-slower job go unnoticed. It is not a way out of
|
||||
# the derived requirement: a run that has an own target dir to wipe is a
|
||||
# run whose seed reuses it and clones nothing, so that requirement is
|
||||
# zero. Falling short of a NON-ZERO derived requirement fails the job
|
||||
# here, naming the shortfall and what was kept instead of it — the seed
|
||||
# would otherwise fail seconds later against a half-unshared staging
|
||||
# tree, which is the failure this pass exists to pre-empt.
|
||||
#
|
||||
# Reactive-only, with no hard cap on cache size: a workspace's natural working
|
||||
# set is what it is, and bounding the footprint preemptively means wiping
|
||||
@@ -75,16 +105,34 @@
|
||||
# than reimplementing a lookalike is what makes the classification sound; any
|
||||
# drift between two spellings would silently misclassify every directory.
|
||||
#
|
||||
# The merged half reads the TIP SHA out of that same `ls-remote` output and
|
||||
# asks `git merge-base --is-ancestor` against each protected branch's tip,
|
||||
# using the objects in this job's own checkout. Ancestry is only decidable
|
||||
# where the objects are there to decide it, so the answer "I cannot tell"
|
||||
# exists and is distinct from "not merged" everywhere it can arise:
|
||||
#
|
||||
# - a shallow checkout makes a MISSING object prove nothing, so the whole
|
||||
# signal is withheld rather than read as "no branch is merged";
|
||||
# - a protected tip that is not in the checkout is not used as an anchor;
|
||||
# - a branch tip that is not in the checkout is kept, loudly.
|
||||
#
|
||||
# A squash or rebase merge leaves no ancestor relationship at all, so its
|
||||
# branch reads as live here. That is a missed reclamation, not a wrong one,
|
||||
# and the deleted-branch signal still covers it once the branch is removed.
|
||||
#
|
||||
# Only ever globs inside <cache-root>. Another project's volume is a different
|
||||
# Docker named volume and is not mounted in this container at all, so "stays
|
||||
# scoped to this repo's cache" holds structurally, not by convention.
|
||||
set -euo pipefail
|
||||
. "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/cache-lib.sh"
|
||||
|
||||
ROOT="${1:?usage: prune-cache.sh <cache-root> <own-target-dir> <protected-branches> <min-free-percent>}"
|
||||
ROOT="${1:?usage: prune-cache.sh <cache-root> <own-target-dir> <protected-branches> <min-free-percent> [own-key] [base-key] [fallback-dir]}"
|
||||
OWN_DIR="${2:?}"
|
||||
PROTECTED_REFS="${3:-}"
|
||||
MIN_FREE_PCT="${4:-10}"
|
||||
MIN_FREE_PCT="${4:-0}"
|
||||
OWN_KEY="${5:-}"
|
||||
BASE_KEY="${6:-}"
|
||||
FALLBACK="${7:-}"
|
||||
# Mirrored by daniel/gitdan's ci-cache-reclaim.sh, whose copy must be >= this
|
||||
# one — raising this without raising theirs first lets that script treat a lock
|
||||
# this side still honours as abandoned. Same direction and same reasoning as
|
||||
@@ -102,6 +150,34 @@ STALE_LOCK_SECONDS="${STALE_LOCK_SECONDS:-7200}"
|
||||
# the volume is under pressure.
|
||||
EVICTION_ASIDE_SETTLE_SECONDS="${EVICTION_ASIDE_SETTLE_SECONDS:-60}"
|
||||
|
||||
# What the seed step is about to do, resolved through the same function that
|
||||
# step resolves it with (cache-lib.sh's seed_source_candidates). Empty when it
|
||||
# will clone nothing at all: its own target dir already exists and it reuses
|
||||
# it, or no source exists and it starts cold. Either way the derived
|
||||
# requirement is zero, because nothing is about to be copied.
|
||||
#
|
||||
# gb() is for reporting only. Every comparison below is in KB, because
|
||||
# `read_df` reports KB and rounding a threshold to a tenth of a GB either
|
||||
# passes a run that cannot fit or evicts a cache the run did not need.
|
||||
gb() { awk -v k="${1:-0}" 'BEGIN { printf "%.1f", k / 1048576 }'; }
|
||||
|
||||
SEED_SRC=""
|
||||
CLONE_KB=0
|
||||
if [ -n "$OWN_KEY" ]; then
|
||||
SEED_SRC=$(seed_clone_source "$ROOT" "$OWN_KEY" "$BASE_KEY" "$FALLBACK")
|
||||
if [ -n "$SEED_SRC" ]; then
|
||||
# A full walk of the source, and the reason this pass moved ahead of the
|
||||
# seed rather than staying where it was: the number is only useful before
|
||||
# the clone it describes.
|
||||
CLONE_KB=$(clone_headroom_kb "$SEED_SRC")
|
||||
echo "clone requirement: seeding from $(basename "$SEED_SRC") needs $(gb "$CLONE_KB") GB free (measured from its mutable set)"
|
||||
else
|
||||
echo "clone requirement: none — this run reuses its own cache or starts cold, so nothing will be copied"
|
||||
fi
|
||||
else
|
||||
echo "clone requirement: not derivable — no cache key was passed to this pass; the ${MIN_FREE_PCT}% floor is the only gate"
|
||||
fi
|
||||
|
||||
declare -A protected_ns=()
|
||||
for ref in $PROTECTED_REFS; do
|
||||
suffix=$(cache_key "$ref")
|
||||
@@ -109,14 +185,26 @@ for ref in $PROTECTED_REFS; do
|
||||
protected_ns["snapshot-${suffix}"]=1
|
||||
done
|
||||
|
||||
is_protected() {
|
||||
# Prints why <dir> is off limits to every pass, or nothing when it is a
|
||||
# candidate. The reason is not decoration: it is what the failure report at
|
||||
# the bottom lists against each directory it kept while running out of space.
|
||||
#
|
||||
# SEED_SRC is the third exclusion and the one this script did not used to need.
|
||||
# The prune ran after the seed, so the source had already been cloned and the
|
||||
# reader marker over it was gone; running BEFORE the seed puts the directory
|
||||
# this run is about to read squarely in the candidate set, and pass 1 would
|
||||
# take it the moment its branch merged.
|
||||
protected_reason() {
|
||||
local dir="$1" name
|
||||
name=$(basename "$dir")
|
||||
[ "$dir" = "$OWN_DIR" ] && return 0
|
||||
[ -n "${protected_ns[$name]:-}" ] && return 0
|
||||
[ "$dir" = "$OWN_DIR" ] && { printf 'this run own cache'; return 0; }
|
||||
[ -n "$SEED_SRC" ] && [ "$dir" = "$SEED_SRC" ] && { printf 'the source this run is about to clone'; return 0; }
|
||||
[ -n "${protected_ns[$name]:-}" ] && { printf 'a protected branch cache'; return 0; }
|
||||
return 1
|
||||
}
|
||||
|
||||
is_protected() { protected_reason "$1" >/dev/null; }
|
||||
|
||||
# is_locked <dir> [name]
|
||||
#
|
||||
# `name` is the directory's own name for reporting and for the reader-marker
|
||||
@@ -277,6 +365,11 @@ done
|
||||
|
||||
echo "=== pass 1: liveness (unconditional, not gated on free space) ==="
|
||||
declare -A live_ns=()
|
||||
# The tip SHA origin reports for the branch each directory name belongs to.
|
||||
# Same output, same loop, one field over — reading it from a second `git` call
|
||||
# would be reading a different instant.
|
||||
declare -A live_tip=()
|
||||
declare -A remote_tip_of=()
|
||||
LIVENESS_AVAILABLE=0
|
||||
LIVENESS_REASON=""
|
||||
if [ "${CACHE_LIVENESS:-true}" = "0" ] || [ "${CACHE_LIVENESS:-true}" = "false" ]; then
|
||||
@@ -289,9 +382,13 @@ elif remote_heads=$(timeout 20 git ls-remote --heads origin 2>&1); then
|
||||
case "$line" in *refs/heads/*) ;; *) continue ;; esac
|
||||
branch="${line#*refs/heads/}"
|
||||
[ -n "$branch" ] || continue
|
||||
sha="${line%%[[:space:]]*}"
|
||||
suffix=$(cache_key "$branch")
|
||||
live_ns["target-${suffix}"]=1
|
||||
live_ns["snapshot-${suffix}"]=1
|
||||
live_tip["target-${suffix}"]="$sha"
|
||||
live_tip["snapshot-${suffix}"]="$sha"
|
||||
remote_tip_of["$branch"]="$sha"
|
||||
branch_count=$((branch_count + 1))
|
||||
done <<< "$remote_heads"
|
||||
echo "liveness: ${branch_count} live branches on origin"
|
||||
@@ -299,6 +396,77 @@ else
|
||||
LIVENESS_REASON="git ls-remote --heads origin failed or timed out"
|
||||
fi
|
||||
|
||||
# The merged half of pass 1, and whether this checkout can answer it at all.
|
||||
# Every branch of this decision that ends in "no" ends in the signal being
|
||||
# WITHHELD, never in a directory being classified dead by default.
|
||||
MERGED_AVAILABLE=0
|
||||
MERGED_REASON=""
|
||||
PROTECTED_TIPS=()
|
||||
declare -A merged_verdict=()
|
||||
declare -A merged_into=()
|
||||
MERGED_INTO=""
|
||||
if [ "$LIVENESS_AVAILABLE" = "1" ]; then
|
||||
if ! git rev-parse --git-dir >/dev/null 2>&1; then
|
||||
MERGED_REASON="not inside a git checkout"
|
||||
elif [ "$(git rev-parse --is-shallow-repository 2>/dev/null || echo unknown)" != "false" ]; then
|
||||
# In a shallow clone an absent commit is the normal case, so `--is-ancestor`
|
||||
# answers about the graph that was fetched rather than the one that exists.
|
||||
MERGED_REASON="the checkout is shallow, so a commit missing from it says nothing about ancestry"
|
||||
else
|
||||
for ref in $PROTECTED_REFS; do
|
||||
tip="${remote_tip_of[$ref]:-}"
|
||||
[ -n "$tip" ] || continue
|
||||
git cat-file -e "${tip}^{commit}" 2>/dev/null || continue
|
||||
PROTECTED_TIPS+=("${ref}:${tip}")
|
||||
done
|
||||
if [ "${#PROTECTED_TIPS[@]}" -gt 0 ]; then
|
||||
MERGED_AVAILABLE=1
|
||||
echo "liveness: merged-branch detection anchored on ${PROTECTED_TIPS[*]%%:*}"
|
||||
else
|
||||
MERGED_REASON="none of the protected branch tips (${PROTECTED_REFS:-none configured}) is present in this checkout"
|
||||
fi
|
||||
fi
|
||||
[ "$MERGED_AVAILABLE" = "1" ] || \
|
||||
echo "::warning::liveness: ${MERGED_REASON} — merged-but-undeleted branches keep their caches this run"
|
||||
fi
|
||||
|
||||
# is_merged_dead <dir-name>
|
||||
#
|
||||
# True when the branch this directory belongs to is still on origin but every
|
||||
# commit it holds is already on a protected branch — a merged PR whose branch
|
||||
# the forge did not delete, which is the case zemyna hits on every merge and
|
||||
# which the deleted-branch signal above can never see.
|
||||
#
|
||||
# Memoised per tip because target-<key> and snapshot-<key> share one branch,
|
||||
# and because the "cannot tell" warning belongs to the branch rather than to
|
||||
# each of its directories.
|
||||
is_merged_dead() {
|
||||
local name="$1" tip="${live_tip[$1]:-}" entry ref psha
|
||||
MERGED_INTO=""
|
||||
[ "$MERGED_AVAILABLE" = "1" ] || return 1
|
||||
[ -n "$tip" ] || return 1
|
||||
case "${merged_verdict[$tip]:-}" in
|
||||
dead) MERGED_INTO="${merged_into[$tip]}"; return 0 ;;
|
||||
live|unknown) return 1 ;;
|
||||
esac
|
||||
if ! git cat-file -e "${tip}^{commit}" 2>/dev/null; then
|
||||
merged_verdict["$tip"]=unknown
|
||||
echo "::warning::prune: ${name}: its branch tip ${tip} is not in this checkout — cannot tell merged from live, keeping it"
|
||||
return 1
|
||||
fi
|
||||
for entry in "${PROTECTED_TIPS[@]}"; do
|
||||
ref="${entry%%:*}"; psha="${entry#*:}"
|
||||
if git merge-base --is-ancestor "$tip" "$psha" 2>/dev/null; then
|
||||
merged_verdict["$tip"]=dead
|
||||
merged_into["$tip"]="$ref"
|
||||
MERGED_INTO="$ref"
|
||||
return 0
|
||||
fi
|
||||
done
|
||||
merged_verdict["$tip"]=live
|
||||
return 1
|
||||
}
|
||||
|
||||
if [ "$LIVENESS_AVAILABLE" = "1" ]; then
|
||||
pruned_any=0
|
||||
# Tracked separately so the line below cannot contradict the decline lines
|
||||
@@ -309,12 +477,20 @@ if [ "$LIVENESS_AVAILABLE" = "1" ]; then
|
||||
[ -d "$dir" ] || continue
|
||||
name=$(basename "$dir")
|
||||
is_protected "$dir" && continue
|
||||
[ -n "${live_ns[$name]:-}" ] && continue
|
||||
if [ -z "${live_ns[$name]:-}" ]; then
|
||||
why="no matching branch on origin"
|
||||
why_summary="branch no longer exists on origin"
|
||||
elif is_merged_dead "$name"; then
|
||||
why="merged into ${MERGED_INTO}, whose tip already contains its every commit"
|
||||
why_summary="merged into \`${MERGED_INTO}\`"
|
||||
else
|
||||
continue
|
||||
fi
|
||||
is_locked "$dir" && { spared_any=1; continue; }
|
||||
dir_gb=$(usage_gb "$dir")
|
||||
evict_dir "$dir" || { spared_any=1; continue; }
|
||||
echo "::warning::pruned dead-branch cache ${name} (${dir_gb} GB) — no matching branch on origin"
|
||||
summary_line "- pruned dead-branch cache \`${name}\` (${dir_gb} GB) — branch no longer exists on origin"
|
||||
echo "::warning::pruned dead-branch cache ${name} (${dir_gb} GB) — ${why}"
|
||||
summary_line "- pruned dead-branch cache \`${name}\` (${dir_gb} GB) — ${why_summary}"
|
||||
pruned_any=1
|
||||
done
|
||||
if [ "$pruned_any" = "0" ]; then
|
||||
@@ -329,16 +505,45 @@ else
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "=== pass 2/3: disk pressure (threshold: free < ${MIN_FREE_PCT}%) ==="
|
||||
echo "=== pass 2/3: disk pressure ==="
|
||||
read -r TOTAL_KB FREE_KB <<< "$(read_df "$ROOT")"
|
||||
THRESHOLD_KB=$(( TOTAL_KB * MIN_FREE_PCT / 100 ))
|
||||
PCT_KB=$(( TOTAL_KB * MIN_FREE_PCT / 100 ))
|
||||
|
||||
if [ "$FREE_KB" -ge "$THRESHOLD_KB" ]; then
|
||||
echo "cache: $(basename "$OWN_DIR") $(usage_gb "$OWN_DIR") GB | $(report_df host "$FREE_KB" "$TOTAL_KB")"
|
||||
# The two floors, and which of them governs. They are kept apart all the way
|
||||
# down rather than collapsed here, because falling short of them means
|
||||
# different things: the derived one predicts that the very next step cannot
|
||||
# finish, and the percentage one is a hygiene target for the volume.
|
||||
REQUIRED_KB="$CLONE_KB"
|
||||
GOVERNS="the clone this run is about to make"
|
||||
if [ "$PCT_KB" -gt "$REQUIRED_KB" ]; then
|
||||
REQUIRED_KB="$PCT_KB"
|
||||
GOVERNS="the ${MIN_FREE_PCT}% floor"
|
||||
fi
|
||||
echo "required: $(gb "$REQUIRED_KB") GB free — ${GOVERNS} (clone $(gb "$CLONE_KB") GB, floor $(gb "$PCT_KB") GB)"
|
||||
|
||||
own_report() {
|
||||
if [ -d "$OWN_DIR" ]; then
|
||||
echo "cache: $(basename "$OWN_DIR") $(usage_gb "$OWN_DIR") GB | $(report_df host "$1" "$2")"
|
||||
else
|
||||
# Ordinary now that this pass runs ahead of the seed: on a branch's first
|
||||
# run of the day the directory does not exist yet, and reporting 0.0 GB
|
||||
# for it would read as an emptied cache.
|
||||
echo "cache: $(basename "$OWN_DIR") not seeded yet | $(report_df host "$1" "$2")"
|
||||
fi
|
||||
}
|
||||
|
||||
if [ "$FREE_KB" -ge "$REQUIRED_KB" ]; then
|
||||
own_report "$FREE_KB" "$TOTAL_KB"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "::warning::$(report_df disk "$FREE_KB" "$TOTAL_KB") < ${MIN_FREE_PCT}% threshold"
|
||||
echo "::warning::$(report_df disk "$FREE_KB" "$TOTAL_KB") < the $(gb "$REQUIRED_KB") GB this run requires"
|
||||
|
||||
# What survived the pass, and why, in the order the pass considered them. Read
|
||||
# only by the failure report at the bottom: a run that cannot fit its clone is
|
||||
# a run whose log has to answer "then what is all that space?" without anyone
|
||||
# having to reconstruct the pass by hand.
|
||||
KEPT=()
|
||||
|
||||
# A plain loop over a pre-materialised, pre-sorted list rather than a live
|
||||
# `find | while` pipeline, so `rm -rf` inside the loop cannot make a running
|
||||
@@ -346,21 +551,56 @@ echo "::warning::$(report_df disk "$FREE_KB" "$TOTAL_KB") < ${MIN_FREE_PCT}% thr
|
||||
mapfile -t LRU < <(list_by_lru)
|
||||
for dir in "${LRU[@]}"; do
|
||||
[ -d "$dir" ] || continue
|
||||
is_protected "$dir" && continue
|
||||
if reason=$(protected_reason "$dir"); then
|
||||
KEPT+=("$(basename "$dir") — ${reason}")
|
||||
continue
|
||||
fi
|
||||
read -r TOTAL_KB FREE_KB <<< "$(read_df "$ROOT")"
|
||||
[ "$FREE_KB" -ge "$THRESHOLD_KB" ] && break
|
||||
is_locked "$dir" && continue
|
||||
[ "$FREE_KB" -ge "$REQUIRED_KB" ] && break
|
||||
if is_locked "$dir"; then
|
||||
KEPT+=("$(basename "$dir") — held open by a running job")
|
||||
continue
|
||||
fi
|
||||
dir_gb=$(usage_gb "$dir")
|
||||
evict_dir "$dir" || continue
|
||||
if ! evict_dir "$dir"; then
|
||||
KEPT+=("$(basename "$dir") — claimed by a job while its eviction was in flight")
|
||||
continue
|
||||
fi
|
||||
echo "::warning::evicted $(basename "$dir") (${dir_gb} GB, LRU under disk pressure)"
|
||||
summary_line "- evicted \`$(basename "$dir")\` (${dir_gb} GB, LRU under disk pressure)"
|
||||
done
|
||||
|
||||
read -r TOTAL_KB FREE_KB <<< "$(read_df "$ROOT")"
|
||||
if [ "$FREE_KB" -lt "$THRESHOLD_KB" ]; then
|
||||
|
||||
# Falling short of the DERIVED requirement is a failure, not a warning. The
|
||||
# seed step is next, it will clone that source, and it will run out of disk
|
||||
# part-way through unsharing the clone's mutable paths — reported against a
|
||||
# staging path, with nothing in the message about which cache was holding the
|
||||
# space. Failing here says that instead.
|
||||
#
|
||||
# There is nothing to self-clear on this path and it is not skipped in error:
|
||||
# a non-zero requirement means the seed is about to CLONE, which means this
|
||||
# run has no own target dir to wipe (seed_clone_source returns nothing when it
|
||||
# does), so pass 3 has no candidate. See the header.
|
||||
if [ "$FREE_KB" -lt "$CLONE_KB" ]; then
|
||||
echo "::error::prune: $(gb "$FREE_KB") GB free after evicting every eligible cache, but seeding from $(basename "$SEED_SRC") needs $(gb "$CLONE_KB") GB — short by $(gb "$(( CLONE_KB - FREE_KB ))") GB"
|
||||
summary_line "- **out of disk**: seeding from \`$(basename "$SEED_SRC")\` needs $(gb "$CLONE_KB") GB, $(gb "$FREE_KB") GB free"
|
||||
echo "prune: kept, and why:"
|
||||
for entry in ${KEPT[@]+"${KEPT[@]}"}; do echo " ${entry}"; done
|
||||
[ "${#KEPT[@]}" -gt 0 ] || echo " (nothing — the volume holds no cache directories at all)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$FREE_KB" -lt "$PCT_KB" ]; then
|
||||
OWN_GB=$(usage_gb "$OWN_DIR")
|
||||
echo "::warning::still under threshold after evicting every eligible sibling; clearing own $(basename "$OWN_DIR") (was ${OWN_GB} GB) — this run pays a cold rebuild"
|
||||
summary_line "- **self-clear**: \`$(basename "$OWN_DIR")\` (was ${OWN_GB} GB) wiped — this run pays a cold rebuild"
|
||||
# Recreated empty rather than left absent, and that is what keeps this path
|
||||
# out of the requirement above: the seed reuses an own target dir that
|
||||
# exists, whatever is in it, so a self-cleared run clones nothing and needs
|
||||
# no headroom. Leaving it absent would send that run to the base snapshot
|
||||
# instead, needing a clone this pass has just spent its last eligible bytes
|
||||
# not sizing for.
|
||||
rm -rf "$OWN_DIR"
|
||||
mkdir -p "$OWN_DIR"
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user