mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-08-16 20:26:45 +00:00
* test: add FUSE database load/durability/perf benchmark Runs MySQL (InnoDB) and SQLite with ~1GB datadirs on a SeaweedFS FUSE mount. Two parts: - durability: normal shutdown, kill -9, and crash-during-write all keep every fsync-committed row (verified by integrity check + row count + contiguous prefix + per-row CRC). - performance: FUSE vs the same local disk. fsync/commit latency is the dominant cost (~0.13ms -> ~1.18ms), so small transactions run ~9-12x slower while bulk loads and warm reads stay close. Harness is path-independent (runtime under $SEAWEED_BENCH_WORK) and only touches its own processes on non-default ports. * test/benchmark/fuse_db: portable to Linux + crash-safe progress - export MYSQL_BIN; mysql_bench.py falls back to PATH when unset - unmount via fusermount/fusermount3 (non-root Linux), then umount/diskutil - atomic progress write (tmp+fsync+rename); treat empty progress file as 0 - reuse a single PRNG in the perf probe so RNG init doesn't skew timings * test/benchmark/fuse_db: validate inputs, add subprocess timeout - mysql_bench.py: 1800s timeout on mysql CLI calls; reject db names that aren't plain identifiers (interpolated into SQL) - sqlite_gen.py / sqlite_verify.py: allowlist journal/synchronous modes and the verify mode so a typo can't silently weaken durability or relax checks - run_mysql.sh: durable atomic progress write (tmp+fsync+rename), matching sqlite_gen.py; quote $LB in both crash-test verify calls
49 lines
2.1 KiB
Python
49 lines
2.1 KiB
Python
#!/usr/bin/env python3
|
|
# MySQL performance probe via the mysql CLI (no driver needed). Times each phase
|
|
# in Python. Prints TSV: METRIC<TAB>secs<TAB>rate
|
|
# LOAD : bulk-load <rows> rows (4096B incompressible AES payload), <batch>-row txns
|
|
# OLTP : <oltp> single-row autocommit INSERTs (each fsyncs redo, trx_commit=1) -> tx/s
|
|
# SCAN : SUM(CRC32(payload)) over the table (reads every payload) -> MB/s
|
|
import os, re, sys, subprocess, time
|
|
|
|
sock = sys.argv[1]
|
|
db = sys.argv[2]
|
|
rows = int(sys.argv[3])
|
|
batch = int(sys.argv[4])
|
|
oltp = int(sys.argv[5])
|
|
MYSQL = os.environ.get("MYSQL_BIN", "mysql") # lib.sh exports MYSQL_BIN; else use PATH
|
|
|
|
if not re.fullmatch(r"[A-Za-z0-9_]+", db): # db is interpolated into SQL
|
|
raise SystemExit(f"invalid database name: {db!r}")
|
|
|
|
def run(sql):
|
|
r = subprocess.run([MYSQL, "--socket", sock, "-uroot"], input=sql.encode(),
|
|
stdout=subprocess.DEVNULL, stderr=subprocess.PIPE, timeout=1800)
|
|
if r.returncode != 0:
|
|
sys.stderr.write(r.stderr.decode()[:500]); raise SystemExit("mysql failed")
|
|
|
|
run(f"DROP DATABASE IF EXISTS {db}; CREATE DATABASE {db};"
|
|
f"CREATE TABLE {db}.t(id INT PRIMARY KEY,payload BLOB,chk BIGINT) ENGINE=InnoDB;"
|
|
f"CREATE TABLE {db}.o(id INT AUTO_INCREMENT PRIMARY KEY,v INT) ENGINE=InnoDB;")
|
|
|
|
mb = rows * 4096 / 1048576
|
|
stmts = ["SET SESSION cte_max_recursion_depth=1000000;"]
|
|
o = 0
|
|
while o < rows:
|
|
b = min(batch, rows - o)
|
|
stmts.append(
|
|
f"INSERT INTO {db}.t(id,payload,chk) "
|
|
f"WITH RECURSIVE seq(n) AS (SELECT 0 UNION ALL SELECT n+1 FROM seq WHERE n<{b-1}) "
|
|
f"SELECT n+{o},AES_ENCRYPT(REPEAT('a',4080),SHA2(n+{o},256)),"
|
|
f"CRC32(AES_ENCRYPT(REPEAT('a',4080),SHA2(n+{o},256))) FROM seq;")
|
|
o += b
|
|
t = time.time(); run("\n".join(stmts)); dt = time.time() - t
|
|
print(f"LOAD\t{dt:.1f}\t{mb/dt:.0f} MB/s")
|
|
|
|
sql = "\n".join(f"INSERT INTO {db}.o(v) VALUES({i});" for i in range(oltp))
|
|
t = time.time(); run(sql); dt = time.time() - t
|
|
print(f"OLTP\t{dt:.2f}\t{oltp/dt:.0f} tx/s")
|
|
|
|
t = time.time(); run(f"SELECT SUM(CRC32(payload)) FROM {db}.t;"); dt = time.time() - t
|
|
print(f"SCAN\t{dt:.1f}\t{mb/dt:.0f} MB/s")
|