|
| 1 | +#!/bin/bash |
| 2 | +# |
| 3 | +# Batch Queue Concurrency Cleaner |
| 4 | +# |
| 5 | +# Detects and cleans up stale concurrency entries that block batch processing. |
| 6 | +# This is a workaround for a bug where visibility timeout reclaims don't release concurrency. |
| 7 | +# |
| 8 | +# Uses a Lua script for ATOMIC detection of stale entries - no race conditions. |
| 9 | +# |
| 10 | +# Usage: |
| 11 | +# ./batch-concurrency-cleaner.sh --read-redis <url> --write-redis <url> [--delay <seconds>] [--dry-run] |
| 12 | +# |
| 13 | + |
| 14 | +set -e |
| 15 | + |
| 16 | +# Defaults |
| 17 | +DELAY=10 |
| 18 | +DRY_RUN=false |
| 19 | +READ_REDIS="" |
| 20 | +WRITE_REDIS="" |
| 21 | + |
| 22 | +# Parse arguments |
| 23 | +while [[ $# -gt 0 ]]; do |
| 24 | + case $1 in |
| 25 | + --read-redis) |
| 26 | + READ_REDIS="$2" |
| 27 | + shift 2 |
| 28 | + ;; |
| 29 | + --write-redis) |
| 30 | + WRITE_REDIS="$2" |
| 31 | + shift 2 |
| 32 | + ;; |
| 33 | + --delay) |
| 34 | + DELAY="$2" |
| 35 | + shift 2 |
| 36 | + ;; |
| 37 | + --dry-run) |
| 38 | + DRY_RUN=true |
| 39 | + shift |
| 40 | + ;; |
| 41 | + -h|--help) |
| 42 | + echo "Usage: $0 --read-redis <url> --write-redis <url> [--delay <seconds>] [--dry-run]" |
| 43 | + exit 0 |
| 44 | + ;; |
| 45 | + *) |
| 46 | + echo "Unknown option: $1" |
| 47 | + exit 1 |
| 48 | + ;; |
| 49 | + esac |
| 50 | +done |
| 51 | + |
| 52 | +if [[ -z "$READ_REDIS" ]] || [[ -z "$WRITE_REDIS" ]]; then |
| 53 | + echo "Error: --read-redis and --write-redis are required" |
| 54 | + exit 1 |
| 55 | +fi |
| 56 | + |
| 57 | +echo "Batch Queue Concurrency Cleaner (Atomic Version)" |
| 58 | +echo "=================================================" |
| 59 | +echo "Read Redis: ${READ_REDIS:0:30}..." |
| 60 | +echo "Write Redis: ${WRITE_REDIS:0:30}..." |
| 61 | +echo "Delay: ${DELAY}s" |
| 62 | +echo "Dry run: $DRY_RUN" |
| 63 | +echo "" |
| 64 | + |
| 65 | +rcli_read() { |
| 66 | + redis-cli -u "$READ_REDIS" --no-auth-warning "$@" 2>/dev/null |
| 67 | +} |
| 68 | + |
| 69 | +rcli_write() { |
| 70 | + redis-cli -u "$WRITE_REDIS" --no-auth-warning "$@" 2>/dev/null |
| 71 | +} |
| 72 | + |
| 73 | +# Lua script that ATOMICALLY checks for stale concurrency entries |
| 74 | +# KEYS[1] = concurrency key to check |
| 75 | +# KEYS[2-13] = in-flight data hash keys for shards 0-11 |
| 76 | +# Returns: list of stale messageIds (not in any in-flight hash) |
| 77 | +FIND_STALE_LUA=' |
| 78 | +local concurrency_key = KEYS[1] |
| 79 | +local stale = {} |
| 80 | +
|
| 81 | +-- Get all members of the concurrency set |
| 82 | +local members = redis.call("SMEMBERS", concurrency_key) |
| 83 | +
|
| 84 | +for _, msg_id in ipairs(members) do |
| 85 | + local found = false |
| 86 | + -- Check each in-flight shard (KEYS[2] through KEYS[13]) |
| 87 | + for i = 2, 13 do |
| 88 | + if redis.call("HEXISTS", KEYS[i], msg_id) == 1 then |
| 89 | + found = true |
| 90 | + break |
| 91 | + end |
| 92 | + end |
| 93 | + if not found then |
| 94 | + table.insert(stale, msg_id) |
| 95 | + end |
| 96 | +end |
| 97 | +
|
| 98 | +return stale |
| 99 | +' |
| 100 | + |
| 101 | +# Build the in-flight keys array (used in every Lua call) |
| 102 | +INFLIGHT_KEYS="engine:batch:inflight:0:data" |
| 103 | +for shard in 1 2 3 4 5 6 7 8 9 10 11; do |
| 104 | + INFLIGHT_KEYS="$INFLIGHT_KEYS engine:batch:inflight:$shard:data" |
| 105 | +done |
| 106 | + |
| 107 | +# Main loop |
| 108 | +while true; do |
| 109 | + ts=$(date '+%H:%M:%S') |
| 110 | + |
| 111 | + # Get master queue total and in-flight count for status display |
| 112 | + master_total=0 |
| 113 | + for i in 0 1 2 3 4 5 6 7 8 9 10 11; do |
| 114 | + count=$(rcli_read ZCARD "engine:batch:master:$i") |
| 115 | + master_total=$((master_total + count)) |
| 116 | + done |
| 117 | + |
| 118 | + inflight_total=0 |
| 119 | + for i in 0 1 2 3 4 5 6 7 8 9 10 11; do |
| 120 | + count=$(rcli_read HLEN "engine:batch:inflight:$i:data") |
| 121 | + inflight_total=$((inflight_total + count)) |
| 122 | + done |
| 123 | + |
| 124 | + # Scan for concurrency keys |
| 125 | + cursor=0 |
| 126 | + total_stale=0 |
| 127 | + cleaned_tenants=0 |
| 128 | + |
| 129 | + while true; do |
| 130 | + scan_output=$(rcli_read SCAN $cursor MATCH 'engine:batch:concurrency:tenant:*' COUNT 1000) |
| 131 | + cursor=$(echo "$scan_output" | head -1) |
| 132 | + keys=$(echo "$scan_output" | tail -n +2) |
| 133 | + |
| 134 | + while IFS= read -r conc_key; do |
| 135 | + [[ -z "$conc_key" ]] && continue |
| 136 | + |
| 137 | + # ATOMIC check: Run Lua script to find stale entries |
| 138 | + # 13 keys total: 1 concurrency key + 12 in-flight keys |
| 139 | + stale_ids=$(rcli_read EVAL "$FIND_STALE_LUA" 13 "$conc_key" $INFLIGHT_KEYS) |
| 140 | + |
| 141 | + # Count stale entries |
| 142 | + stale_count=0 |
| 143 | + stale_array=() |
| 144 | + while IFS= read -r stale_id; do |
| 145 | + [[ -z "$stale_id" ]] && continue |
| 146 | + stale_array+=("$stale_id") |
| 147 | + stale_count=$((stale_count + 1)) |
| 148 | + done <<< "$stale_ids" |
| 149 | + |
| 150 | + if [[ $stale_count -gt 0 ]]; then |
| 151 | + tenant="${conc_key#engine:batch:concurrency:tenant:}" |
| 152 | + total_stale=$((total_stale + stale_count)) |
| 153 | + |
| 154 | + if [[ "$DRY_RUN" == "true" ]]; then |
| 155 | + echo "[$ts] STALE (dry-run): $tenant ($stale_count entries)" |
| 156 | + for sid in "${stale_array[@]}"; do |
| 157 | + echo " - $sid" |
| 158 | + done |
| 159 | + else |
| 160 | + # Remove each stale entry individually with SREM (idempotent, safe) |
| 161 | + for sid in "${stale_array[@]}"; do |
| 162 | + rcli_write SREM "$conc_key" "$sid" >/dev/null |
| 163 | + done |
| 164 | + echo "[$ts] CLEANED: $tenant ($stale_count stale entries removed)" |
| 165 | + cleaned_tenants=$((cleaned_tenants + 1)) |
| 166 | + fi |
| 167 | + fi |
| 168 | + done <<< "$keys" |
| 169 | + |
| 170 | + [[ "$cursor" == "0" ]] && break |
| 171 | + done |
| 172 | + |
| 173 | + if [[ "$DRY_RUN" == "true" ]]; then |
| 174 | + echo "[$ts] in-flight=$inflight_total master-queue=$master_total stale-found=$total_stale" |
| 175 | + else |
| 176 | + echo "[$ts] in-flight=$inflight_total master-queue=$master_total cleaned=$cleaned_tenants" |
| 177 | + fi |
| 178 | + |
| 179 | + sleep "$DELAY" |
| 180 | +done |
0 commit comments