forked from ava-labs/avalanchego
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmark_cchain_range.sh
More file actions
executable file
·274 lines (256 loc) · 12.1 KB
/
benchmark_cchain_range.sh
File metadata and controls
executable file
·274 lines (256 loc) · 12.1 KB
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
32
33
34
35
36
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#!/usr/bin/env bash
set -euo pipefail
# C-Chain Re-execution Benchmark and Chaos Test Script
#
# Usage:
# ./benchmark_cchain_range.sh [test-name]
#
# To see available tests: use `help` as the test name or invoke
# without a test name and without required env vars.
#
# Test names configure defaults for S3 sources and block ranges.
# If running in chaos mode, test names also configure defaults for the VM Config
# and min/max wait times.
# All defaults can be overridden via environment variables.
#
# Note: chaos tests can only be run with firewood VM configs.
#
# Environment variables:
# Data sources (provide S3 sources OR local paths):
# BLOCK_DIR_SRC: S3 object key for blocks (triggers S3 import).
# CURRENT_STATE_DIR_SRC: S3 object key for state. Optional—if unset, creates
# empty state directory for genesis execution.
# BLOCK_DIR: Path to local block directory.
# CURRENT_STATE_DIR: Path to local current state directory.
#
# Required:
# START_BLOCK: The starting block height (inclusive).
# END_BLOCK: The ending block height (inclusive).
#
# Optional (reexecution tests):
# CONFIG: VM config preset (default, archive, firewood, firewood-archive).
# LABELS: Comma-separated key=value pairs for metric labels.
# BENCHMARK_OUTPUT_FILE: If set, benchmark output is also written to this file.
# METRICS_SERVER_ENABLED: If set, enables the metrics server.
# METRICS_SERVER_PORT: If set, determines the port the metrics server will listen to.
# METRICS_COLLECTOR_ENABLED: If set, enables the metrics collector.
# PUSH_POST_STATE: S3 destination to push current-state after execution.
#
# Required (chaos tests):
# CHAOS_MODE: Set to enable chaos test mode (e.g., CHAOS_MODE=1).
# CONFIG: VM config preset (firewood or firewood-archive only).
# MIN_WAIT_TIME: Minimum wait before crash (e.g., 120s).
# MAX_WAIT_TIME: Maximum wait before crash (e.g., 150s).
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# CI-aware error function
error() {
if [[ "${GITHUB_ACTIONS:-}" == "true" ]]; then
echo "::error::$1"
else
echo "Error: $1" >&2
fi
exit 1
}
show_usage() {
cat <<EOF
Usage: $0 [test-name]
Available tests:
help - Show this help message
default - Quick test run (blocks 101-200, hashdb)
hashdb-101-250k - Blocks 101-250k with hashdb
hashdb-archive-101-250k - Blocks 101-250k with hashdb archive
hashdb-33m-33m500k - Blocks 33m-33.5m with hashdb
hashdb-69m-69m100k - Blocks 69m-69.1m with hashdb
hashdb-archive-69m-69m100k - Blocks 69m-69.1m with hashdb archive
hashdb-archive-ssc-69m-69m100k - Blocks 69m-69.1m with hashdb archive from a statesynced checkpoint
firewood-101-250k - Blocks 101-250k with firewood
firewood-archive-101-250k - Blocks 101-250k with firewood archive
firewood-33m-33m500k - Blocks 33m-33.5m with firewood
firewood-archive-33m-33m500k - Blocks 33m-33.5m with firewood archive
firewood-33m-40m - Blocks 33m-40m with firewood
firewood-archive-33m-40m - Blocks 33m-40m with firewood archive
EOF
}
# Set defaults based on test name (if provided)
TEST_NAME="${1:-}"
if [[ -n "$TEST_NAME" ]]; then
shift
case "$TEST_NAME" in
help)
show_usage
exit 0
;;
default)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-200-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-hashdb-full-100}"
START_BLOCK="${START_BLOCK:-101}"
END_BLOCK="${END_BLOCK:-200}"
;;
hashdb-101-250k)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-1m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-hashdb-full-100}"
START_BLOCK="${START_BLOCK:-101}"
END_BLOCK="${END_BLOCK:-250000}"
;;
hashdb-archive-101-250k)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-1m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-hashdb-archive-100}"
START_BLOCK="${START_BLOCK:-101}"
END_BLOCK="${END_BLOCK:-250000}"
CONFIG="${CONFIG:-archive}"
;;
hashdb-33m-33m500k)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-30m-40m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-hashdb-full-33m}"
START_BLOCK="${START_BLOCK:-33000001}"
END_BLOCK="${END_BLOCK:-33500000}"
;;
hashdb-69m-69m100k)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-69m-70m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-hashdb-full-69m}"
START_BLOCK="${START_BLOCK:-69000001}"
END_BLOCK="${END_BLOCK:-69100000}"
;;
hashdb-archive-69m-69m100k)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-69m-70m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-hashdb-archive-69m}"
START_BLOCK="${START_BLOCK:-69000001}"
END_BLOCK="${END_BLOCK:-69100000}"
CONFIG="${CONFIG:-archive}"
;;
hashdb-archive-ssc-69m-69m100k)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-69m-70m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-hashdb-statesync-checkpoint-69m}"
START_BLOCK="${START_BLOCK:-69000001}"
END_BLOCK="${END_BLOCK:-69100000}"
CONFIG="${CONFIG:-archive}"
;;
firewood-101-250k)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-1m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-firewood-100}"
START_BLOCK="${START_BLOCK:-101}"
END_BLOCK="${END_BLOCK:-250000}"
CONFIG="${CONFIG:-firewood}"
;;
firewood-archive-101-250k)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-1m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-firewood-archive-100}"
START_BLOCK="${START_BLOCK:-101}"
END_BLOCK="${END_BLOCK:-250000}"
CONFIG="${CONFIG:-firewood-archive}"
;;
firewood-33m-33m500k)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-30m-40m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-firewood-33m}"
START_BLOCK="${START_BLOCK:-33000001}"
END_BLOCK="${END_BLOCK:-33500000}"
CONFIG="${CONFIG:-firewood}"
;;
firewood-archive-33m-33m500k)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-30m-40m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-firewood-archive-33m}"
START_BLOCK="${START_BLOCK:-33000001}"
END_BLOCK="${END_BLOCK:-33500000}"
CONFIG="${CONFIG:-firewood-archive}"
;;
firewood-33m-40m)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-30m-40m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-firewood-33m}"
START_BLOCK="${START_BLOCK:-33000001}"
END_BLOCK="${END_BLOCK:-40000000}"
CONFIG="${CONFIG:-firewood}"
;;
firewood-archive-33m-40m)
BLOCK_DIR_SRC="${BLOCK_DIR_SRC:-cchain-mainnet-blocks-30m-40m-ldb}"
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-cchain-current-state-firewood-archive-33m}"
START_BLOCK="${START_BLOCK:-33000001}"
END_BLOCK="${END_BLOCK:-40000000}"
CONFIG="${CONFIG:-firewood-archive}"
;;
*)
error "Unknown test '$TEST_NAME'"
;;
esac
fi
# Set chaos test defaults when using a defined test with CHAOS_MODE
if [[ -n "${CHAOS_MODE:-}" && -n "${TEST_NAME:-}" ]]; then
MIN_WAIT_TIME="${MIN_WAIT_TIME:-120s}"
MAX_WAIT_TIME="${MAX_WAIT_TIME:-150s}"
fi
# Determine data source: S3 import or local paths
if [[ -n "${BLOCK_DIR_SRC:-}" ]]; then
# S3 mode - import data (CURRENT_STATE_DIR_SRC is optional; if unset, genesis mode)
TIMESTAMP=$(date '+%Y%m%d-%H%M%S')
EXECUTION_DATA_DIR="${EXECUTION_DATA_DIR:-/tmp/reexec-${TEST_NAME:-custom}-${TIMESTAMP}}"
BLOCK_DIR_SRC="${BLOCK_DIR_SRC}" \
CURRENT_STATE_DIR_SRC="${CURRENT_STATE_DIR_SRC:-}" \
EXECUTION_DATA_DIR="${EXECUTION_DATA_DIR}" \
"${SCRIPT_DIR}/setup_cchain_data.sh"
BLOCK_DIR="${EXECUTION_DATA_DIR}/blocks"
CURRENT_STATE_DIR="${EXECUTION_DATA_DIR}/current-state"
elif [[ -n "${CURRENT_STATE_DIR_SRC:-}" ]]; then
error "CURRENT_STATE_DIR_SRC requires BLOCK_DIR_SRC to also be set"
elif [[ -z "${BLOCK_DIR:-}" || -z "${CURRENT_STATE_DIR:-}" ]]; then
show_usage
echo ""
echo "Env vars status:"
echo " S3 sources:"
[[ -n "${BLOCK_DIR_SRC:-}" ]] && echo " BLOCK_DIR_SRC: ${BLOCK_DIR_SRC}" || echo " BLOCK_DIR_SRC: (not set)"
[[ -n "${CURRENT_STATE_DIR_SRC:-}" ]] && echo " CURRENT_STATE_DIR_SRC: ${CURRENT_STATE_DIR_SRC}" || echo " CURRENT_STATE_DIR_SRC: (not set)"
echo " Local paths:"
[[ -n "${BLOCK_DIR:-}" ]] && echo " BLOCK_DIR: ${BLOCK_DIR}" || echo " BLOCK_DIR: (not set)"
[[ -n "${CURRENT_STATE_DIR:-}" ]] && echo " CURRENT_STATE_DIR: ${CURRENT_STATE_DIR}" || echo " CURRENT_STATE_DIR: (not set)"
echo " Block range:"
[[ -n "${START_BLOCK:-}" ]] && echo " START_BLOCK: ${START_BLOCK}" || echo " START_BLOCK: (not set)"
[[ -n "${END_BLOCK:-}" ]] && echo " END_BLOCK: ${END_BLOCK}" || echo " END_BLOCK: (not set)"
if [[ -n "${CHAOS_MODE:-}" ]]; then
echo " Timeouts (chaos tests):"
[[ -n "${MIN_WAIT_TIME:-}" ]] && echo " MIN_WAIT_TIME: ${MIN_WAIT_TIME}" || echo " MIN_WAIT_TIME: (not set)"
[[ -n "${MAX_WAIT_TIME:-}" ]] && echo " MAX_WAIT_TIME: ${MAX_WAIT_TIME}" || echo " MAX_WAIT_TIME: (not set)"
fi
exit 1
fi
# Validate block range
if [[ -z "${START_BLOCK:-}" || -z "${END_BLOCK:-}" ]]; then
error "START_BLOCK and END_BLOCK are required"
fi
if [[ -n "${CHAOS_MODE:-}" ]]; then
# Chaos tests require additional validation
if [[ -z "${MIN_WAIT_TIME:-}" || -z "${MAX_WAIT_TIME:-}" || -z "${CONFIG:-}" ]]; then
error "MIN_WAIT_TIME and MAX_WAIT_TIME and CONFIG are required for chaos tests"
fi
echo "=== Firewood Chaos Test: ${TEST_NAME:-custom} ==="
echo "Crashing between ${MIN_WAIT_TIME} and ${MAX_WAIT_TIME}"
else
echo "=== C-Chain Re-execution Test: ${TEST_NAME:-custom} ==="
fi
echo "Blocks: ${START_BLOCK} - ${END_BLOCK}"
echo "CONFIG: ${CONFIG:-default}"
echo "=== Running Test ==="
if [[ -n "${CHAOS_MODE:-}" ]]; then
go run ./tests/reexecute/chaos \
--start-block="${START_BLOCK}" \
--end-block="${END_BLOCK}" \
--current-state-dir="${CURRENT_STATE_DIR}" \
--block-dir="${BLOCK_DIR}" \
--min-wait-time="${MIN_WAIT_TIME}" \
--max-wait-time="${MAX_WAIT_TIME}" \
--config="${CONFIG}"
else
go run github.com/ava-labs/avalanchego/tests/reexecute/c \
--block-dir="${BLOCK_DIR}" \
--current-state-dir="${CURRENT_STATE_DIR}" \
${RUNNER_TYPE:+--runner="${RUNNER_TYPE}"} \
${CONFIG:+--config="${CONFIG}"} \
--start-block="${START_BLOCK}" \
--end-block="${END_BLOCK}" \
${LABELS:+--labels="${LABELS}"} \
${BENCHMARK_OUTPUT_FILE:+--benchmark-output-file="${BENCHMARK_OUTPUT_FILE}"} \
${METRICS_SERVER_ENABLED:+--metrics-server-enabled="${METRICS_SERVER_ENABLED}"} \
${METRICS_SERVER_PORT:+--metrics-server-port="${METRICS_SERVER_PORT}"} \
${METRICS_COLLECTOR_ENABLED:+--metrics-collector-enabled="${METRICS_COLLECTOR_ENABLED}"}
if [[ -n "${PUSH_POST_STATE:-}" ]]; then
echo "=== Pushing post-state to S3 ==="
"${SCRIPT_DIR}/copy_dir.sh" "${CURRENT_STATE_DIR}/" "${PUSH_POST_STATE}"
fi
fi