Blame view

scripts/evaluation/run_coarse_fusion_tuning_resilient.sh 5.69 KB
d3dd01d3   tangwang   自动寻参:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  #!/bin/bash
  
  set -euo pipefail
  
  cd "$(dirname "$0")/../.."
  source ./activate.sh
  
  usage() {
    echo "usage: $0 <run_name> <dataset_id> <max_evals> <batch_size> <candidate_pool_size> <random_seed> <search_space> <seed_report> [resume_run_dir]" >&2
    exit 1
  }
  
  if [ "$#" -lt 8 ]; then
    usage
  fi
  
  RUN_NAME="$1"
  DATASET_ID="$2"
  MAX_EVALS="$3"
  BATCH_SIZE="$4"
  CANDIDATE_POOL_SIZE="$5"
  RANDOM_SEED="$6"
  SEARCH_SPACE="$7"
  SEED_REPORT="$8"
  RESUME_RUN_DIR="${9:-}"
  
  BATCH_EVAL_TIMEOUT_SEC="${BATCH_EVAL_TIMEOUT_SEC:-0}"
  RESTART_SLEEP_SEC="${RESTART_SLEEP_SEC:-30}"
  SEARCH_BASE_URL="${SEARCH_BASE_URL:-http://127.0.0.1:6002}"
  EVAL_WEB_BASE_URL="${EVAL_WEB_BASE_URL:-http://127.0.0.1:6010}"
  RUN_DIR="artifacts/search_evaluation/tuning_runs/${RUN_NAME}"
935f6e1b   tangwang   coarse_rank 搜参结果 ...
32
33
  LOCK_DIR="${RUN_DIR}/.resilient_lock"
  HEALTH_POLL_SEC="${HEALTH_POLL_SEC:-15}"
d3dd01d3   tangwang   自动寻参:
34
35
36
  
  mkdir -p "$(dirname "$RUN_DIR")"
  
935f6e1b   tangwang   coarse_rank 搜参结果 ...
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  release_lock() {
    if [ -d "$LOCK_DIR" ] && [ -f "$LOCK_DIR/pid" ] && [ "$(cat "$LOCK_DIR/pid" 2>/dev/null || true)" = "$$" ]; then
      rm -rf "$LOCK_DIR"
    fi
  }
  
  acquire_lock() {
    mkdir -p "$RUN_DIR"
    if mkdir "$LOCK_DIR" 2>/dev/null; then
      echo "$$" > "$LOCK_DIR/pid"
      date -u +%Y-%m-%dT%H:%M:%SZ > "$LOCK_DIR/started_at"
      return 0
    fi
  
    local owner_pid=""
    if [ -f "$LOCK_DIR/pid" ]; then
      owner_pid="$(cat "$LOCK_DIR/pid" 2>/dev/null || true)"
    fi
    if [ -n "$owner_pid" ] && kill -0 "$owner_pid" 2>/dev/null; then
      echo "[resilient] lock already held by pid=${owner_pid}, exiting"
      exit 0
    fi
  
    echo "[resilient] removing stale lock at ${LOCK_DIR}"
    rm -rf "$LOCK_DIR"
    if mkdir "$LOCK_DIR" 2>/dev/null; then
      echo "$$" > "$LOCK_DIR/pid"
      date -u +%Y-%m-%dT%H:%M:%SZ > "$LOCK_DIR/started_at"
      return 0
    fi
  
    echo "[resilient] failed to acquire lock at ${LOCK_DIR}"
    exit 1
  }
  
  trap release_lock EXIT INT TERM
  
d3dd01d3   tangwang   自动寻参:
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  count_live_successes() {
    python3 - "$RUN_DIR" <<'PY'
  import json
  import sys
  from pathlib import Path
  
  run_dir = Path(sys.argv[1])
  path = run_dir / "trials.jsonl"
  count = 0
  if path.is_file():
      for line in path.read_text(encoding="utf-8").splitlines():
          line = line.strip()
          if not line:
              continue
          obj = json.loads(line)
          if obj.get("status") == "ok" and not obj.get("is_seed"):
              count += 1
  print(count)
  PY
  }
  
935f6e1b   tangwang   coarse_rank 搜参结果 ...
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
  wait_for_health() {
    local url="$1"
    local timeout_sec="$2"
    local deadline=$(( $(date +%s) + timeout_sec ))
    while [ "$(date +%s)" -lt "$deadline" ]; do
      if curl -fsS "$url" >/dev/null 2>&1; then
        return 0
      fi
      sleep 2
    done
    return 1
  }
  
  ensure_services() {
    if ! wait_for_health "${SEARCH_BASE_URL}/health" 20; then
      echo "[resilient] backend unhealthy, restarting backend"
      ./restart.sh backend || true
      sleep 5
    fi
    if ! wait_for_health "${SEARCH_BASE_URL}/health" 180; then
      echo "[resilient] backend still unhealthy after restart"
      return 1
    fi
  
    if ! wait_for_health "${EVAL_WEB_BASE_URL}/api/history" 20; then
      echo "[resilient] eval-web unhealthy, restarting eval-web"
      ./restart.sh eval-web || true
      sleep 5
    fi
    if ! wait_for_health "${EVAL_WEB_BASE_URL}/api/history" 180; then
      echo "[resilient] eval-web still unhealthy after restart"
      return 1
    fi
    return 0
  }
  
  heal_services_nonblocking() {
    if ! curl -fsS "${SEARCH_BASE_URL}/health" >/dev/null 2>&1; then
      echo "[resilient] backend became unhealthy during run, restarting backend"
      ./restart.sh backend || true
      sleep 5
    fi
    if ! curl -fsS "${EVAL_WEB_BASE_URL}/api/history" >/dev/null 2>&1; then
      echo "[resilient] eval-web became unhealthy during run, restarting eval-web"
      ./restart.sh eval-web || true
      sleep 5
    fi
  }
  
d3dd01d3   tangwang   自动寻参:
144
145
146
147
148
149
  build_cmd() {
    local cmd=(
      python
      scripts/evaluation/tune_fusion.py
      --mode optimize
      --search-space "$SEARCH_SPACE"
d3dd01d3   tangwang   自动寻参:
150
151
152
153
154
155
156
157
158
159
160
161
162
      --tenant-id 163
      --dataset-id "$DATASET_ID"
      --queries-file scripts/evaluation/queries/queries.txt
      --top-k 100
      --language en
      --search-base-url "$SEARCH_BASE_URL"
      --eval-web-base-url "$EVAL_WEB_BASE_URL"
      --max-evals "$MAX_EVALS"
      --batch-size "$BATCH_SIZE"
      --candidate-pool-size "$CANDIDATE_POOL_SIZE"
      --random-seed "$RANDOM_SEED"
      --batch-eval-timeout-sec "$BATCH_EVAL_TIMEOUT_SEC"
    )
935f6e1b   tangwang   coarse_rank 搜参结果 ...
163
164
165
    if [ -n "$SEED_REPORT" ]; then
      cmd+=(--seed-report "$SEED_REPORT")
    fi
d3dd01d3   tangwang   自动寻参:
166
167
168
169
170
171
172
173
174
175
    if [ -n "$RESUME_RUN_DIR" ]; then
      cmd+=(--resume-run "$RESUME_RUN_DIR")
    else
      cmd+=(--run-name "$RUN_NAME")
    fi
    printf '%q ' "${cmd[@]}"
    printf '\n'
  }
  
  attempt=0
935f6e1b   tangwang   coarse_rank 搜参结果 ...
176
  acquire_lock
d3dd01d3   tangwang   自动寻参:
177
178
179
180
181
182
183
184
185
186
187
188
189
  while true; do
    live_successes="$(count_live_successes)"
    if [ "$live_successes" -ge "$MAX_EVALS" ]; then
      echo "[resilient] complete run_name=$RUN_NAME live_successes=$live_successes target=$MAX_EVALS"
      exit 0
    fi
  
    attempt=$((attempt + 1))
    if [ -d "$RUN_DIR" ]; then
      RESUME_RUN_DIR="$RUN_DIR"
    fi
  
    echo "[resilient] attempt=$attempt run_name=$RUN_NAME live_successes=$live_successes target=$MAX_EVALS"
935f6e1b   tangwang   coarse_rank 搜参结果 ...
190
191
192
193
194
    if ! ensure_services; then
      echo "[resilient] service preflight failed, sleeping ${RESTART_SLEEP_SEC}s before retry"
      sleep "$RESTART_SLEEP_SEC"
      continue
    fi
d3dd01d3   tangwang   自动寻参:
195
196
197
198
    CMD_STR="$(build_cmd)"
    echo "[resilient] cmd=$CMD_STR"
  
    set +e
935f6e1b   tangwang   coarse_rank 搜参结果 ...
199
200
201
202
203
204
205
206
    bash -lc "$CMD_STR" &
    child_pid=$!
    echo "[resilient] child_pid=${child_pid}"
    while kill -0 "$child_pid" 2>/dev/null; do
      heal_services_nonblocking
      sleep "$HEALTH_POLL_SEC"
    done
    wait "$child_pid"
d3dd01d3   tangwang   自动寻参:
207
208
209
210
211
212
213
214
215
216
217
    exit_code=$?
    set -e
  
    live_successes="$(count_live_successes)"
    echo "[resilient] exit_code=$exit_code live_successes=$live_successes"
  
    if [ "$live_successes" -ge "$MAX_EVALS" ]; then
      echo "[resilient] finished after attempt=$attempt"
      exit 0
    fi
  
935f6e1b   tangwang   coarse_rank 搜参结果 ...
218
219
220
    if ! ensure_services; then
      echo "[resilient] service recovery failed after exit_code=$exit_code"
    fi
d3dd01d3   tangwang   自动寻参:
221
222
223
    echo "[resilient] sleeping ${RESTART_SLEEP_SEC}s before resume"
    sleep "$RESTART_SLEEP_SEC"
  done