Datasets:
File size: 14,002 Bytes
2bc7a9b | 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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | #!/usr/bin/env python
"""Destructively remove beatmapsets from the compact v1 dataset."""
from __future__ import annotations
import argparse
import concurrent.futures
import json
import os
import shutil
import sqlite3
import sys
import time
import uuid
from pathlib import Path
from typing import Any
import pyarrow as pa
import pyarrow.compute as pc
import pyarrow.dataset as ds
import pyarrow.parquet as pq
from tqdm.auto import tqdm
from parquet_writer import PARQUET_WRITE_KWARGS, _atomic_write_parquet
DEFAULT_WORKERS = min(4, max(1, os.cpu_count() or 1))
def _parquet_files(path: Path) -> list[Path]:
return sorted(p for p in path.rglob("*.parquet") if p.is_file()) if path.exists() else []
def _table(path: Path, columns: list[str]) -> pa.Table:
files = [str(p) for p in _parquet_files(path)]
if not files:
return pa.table({name: [] for name in columns})
return ds.dataset(files, format="parquet").to_table(columns=columns)
def _hardlink_or_copy(src: Path, dst: Path) -> None:
dst.parent.mkdir(parents=True, exist_ok=True)
try:
os.link(src, dst)
except OSError:
shutil.copy2(src, dst)
def _batched(values: list[int], size: int = 500) -> list[list[int]]:
return [values[i : i + size] for i in range(0, len(values), size)]
def _choose_numeric_set_ids(repo_root: Path, schema_version: str, count: int) -> list[int]:
latest_dir = repo_root / "data" / schema_version / "all_revisions" / "latest_revisions"
table = _table(latest_dir, ["set_key"])
set_ids: set[int] = set()
for value in table.column("set_key").to_pylist():
if value is None:
continue
text = str(value)
if text.isdecimal():
set_id = int(text)
if set_id > 0:
set_ids.add(set_id)
if len(set_ids) < count:
raise SystemExit(f"only {len(set_ids)} numeric set ids available; cannot remove {count}")
return sorted(set_ids, reverse=True)[:count]
def _selection_details(
repo_root: Path,
schema_version: str,
selected_set_ids: set[int],
) -> dict[str, Any]:
all_rev = repo_root / "data" / schema_version / "all_revisions"
set_table = _table(
all_rev / "set_revisions",
["set_revision_id", "archive_revision_id", "beatmapset_id"],
)
set_revision_ids: set[str] = set()
archive_revision_ids: set[str] = set()
for row in set_table.to_pylist():
beatmapset_id = row.get("beatmapset_id")
if beatmapset_id is None or int(beatmapset_id) not in selected_set_ids:
continue
set_revision_ids.add(str(row["set_revision_id"]))
archive_revision_ids.add(str(row["archive_revision_id"]))
if not set_revision_ids:
raise SystemExit("selected set ids did not match any set_revisions rows")
archive_table = _table(
all_rev / "archive_revisions",
["archive_revision_id", "archive_path", "size_bytes"],
)
archive_paths: list[str] = []
archive_bytes = 0
for row in archive_table.to_pylist():
archive_revision_id = str(row["archive_revision_id"])
if archive_revision_id not in archive_revision_ids:
continue
archive_paths.append(str(row["archive_path"]))
archive_bytes += int(row.get("size_bytes") or 0)
return {
"set_ids": sorted(selected_set_ids),
"set_revision_ids": sorted(set_revision_ids),
"archive_revision_ids": sorted(archive_revision_ids),
"archive_paths": sorted(archive_paths),
"archive_bytes": archive_bytes,
}
def _filter_one_file(
src: Path,
dst: Path,
root: Path,
set_values: pa.Array,
archive_values: pa.Array,
) -> dict[str, Any]:
table = pq.read_table(src)
before = table.num_rows
removed = 0
if "set_revision_id" in table.column_names:
keep = pc.invert(pc.is_in(table["set_revision_id"], value_set=set_values))
table = table.filter(keep)
removed = before - table.num_rows
elif "archive_revision_id" in table.column_names:
keep = pc.invert(pc.is_in(table["archive_revision_id"], value_set=archive_values))
table = table.filter(keep)
removed = before - table.num_rows
if removed == 0:
_hardlink_or_copy(src, dst)
elif table.num_rows > 0:
dst.parent.mkdir(parents=True, exist_ok=True)
_atomic_write_parquet(table, dst, **PARQUET_WRITE_KWARGS)
return {
"file": str(src.relative_to(root)),
"rows_before": before,
"rows_after": table.num_rows,
"rows_removed": removed,
}
def _rewrite_table_dir(
repo_root: Path,
table_dir: Path,
staging_dir: Path,
trash_dir: Path,
set_revision_ids: set[str],
archive_revision_ids: set[str],
workers: int,
) -> dict[str, Any]:
files = _parquet_files(table_dir)
if not files:
return {
"table": table_dir.name,
"files_before": 0,
"files_after": 0,
"rows_before": 0,
"rows_after": 0,
"rows_removed": 0,
}
set_values = pa.array(sorted(set_revision_ids), type=pa.string())
archive_values = pa.array(sorted(archive_revision_ids), type=pa.string())
staged_table = staging_dir / table_dir.name
staged_table.mkdir(parents=True, exist_ok=True)
summaries: list[dict[str, Any]] = []
max_workers = min(max(1, workers), len(files))
bar = tqdm(
total=len(files),
desc=f"remove/{table_dir.name}",
unit="file",
file=sys.stderr,
mininterval=1.0,
dynamic_ncols=True,
)
try:
if max_workers == 1:
for src in files:
dst = staged_table / src.relative_to(table_dir)
summaries.append(
_filter_one_file(src, dst, repo_root, set_values, archive_values)
)
bar.update(1)
else:
with concurrent.futures.ThreadPoolExecutor(max_workers=max_workers) as ex:
futures = [
ex.submit(
_filter_one_file,
src,
staged_table / src.relative_to(table_dir),
repo_root,
set_values,
archive_values,
)
for src in files
]
for future in concurrent.futures.as_completed(futures):
summaries.append(future.result())
bar.update(1)
finally:
bar.close()
table_trash = trash_dir / table_dir.name
table_trash.parent.mkdir(parents=True, exist_ok=True)
table_dir.rename(table_trash)
staged_table.rename(table_dir)
rows_before = sum(int(s["rows_before"]) for s in summaries)
rows_after = sum(int(s["rows_after"]) for s in summaries)
rows_removed = sum(int(s["rows_removed"]) for s in summaries)
return {
"table": table_dir.name,
"files_before": len(files),
"files_after": len(_parquet_files(table_dir)),
"rows_before": rows_before,
"rows_after": rows_after,
"rows_removed": rows_removed,
}
def _remove_archive_files(repo_root: Path, archive_paths: list[str]) -> dict[str, int]:
removed = 0
missing = 0
for rel in archive_paths:
path = repo_root / rel
if path.exists():
path.unlink()
removed += 1
else:
missing += 1
return {"removed": removed, "missing": missing}
def _update_state_db(
state_db: Path,
set_ids: list[int],
*,
clear_enumerate_state: bool,
) -> dict[str, int]:
if not state_db.exists():
return {
"sets_deleted": 0,
"attempts_deleted": 0,
"discoveries_deleted": 0,
"meta_deleted": 0,
}
conn = sqlite3.connect(state_db)
conn.execute("PRAGMA foreign_keys=ON")
try:
attempts_deleted = 0
discoveries_deleted = 0
sets_deleted = 0
for batch in _batched(sorted(set_ids)):
placeholders = ",".join("?" for _ in batch)
attempts_deleted += conn.execute(
f"DELETE FROM mirror_attempts WHERE set_id IN ({placeholders})",
batch,
).rowcount
discoveries_deleted += conn.execute(
f"DELETE FROM mirror_discoveries WHERE set_id IN ({placeholders})",
batch,
).rowcount
sets_deleted += conn.execute(
f"DELETE FROM sets WHERE set_id IN ({placeholders})",
batch,
).rowcount
meta_deleted = 0
if clear_enumerate_state:
meta_deleted += conn.execute(
"DELETE FROM meta WHERE key LIKE 'enumerate.high_water.%'"
).rowcount
meta_deleted += conn.execute(
"DELETE FROM meta WHERE key LIKE 'enumerate.cursor.%'"
).rowcount
conn.commit()
conn.execute("PRAGMA wal_checkpoint(TRUNCATE)")
finally:
conn.close()
return {
"sets_deleted": sets_deleted,
"attempts_deleted": attempts_deleted,
"discoveries_deleted": discoveries_deleted,
"meta_deleted": meta_deleted,
}
def remove_maps_v1(
repo_root: Path,
*,
schema_version: str,
count: int,
state_db: Path | None,
clear_enumerate_state: bool,
workers: int,
) -> dict[str, Any]:
repo_root = repo_root.resolve()
all_revisions = repo_root / "data" / schema_version / "all_revisions"
if not all_revisions.exists():
raise FileNotFoundError(all_revisions)
selected_set_ids = set(_choose_numeric_set_ids(repo_root, schema_version, count))
details = _selection_details(repo_root, schema_version, selected_set_ids)
set_revision_ids = set(details["set_revision_ids"])
archive_revision_ids = set(details["archive_revision_ids"])
tx_id = f"remove-maps-{int(time.time())}-{uuid.uuid4().hex[:8]}"
tx_root = repo_root / ".scratch" / "remove-maps-v1" / tx_id
staging_root = tx_root / "staging" / "all_revisions"
trash_root = tx_root / "trash" / "all_revisions"
staging_root.mkdir(parents=True, exist_ok=True)
table_summaries: list[dict[str, Any]] = []
try:
for table_dir in sorted(p for p in all_revisions.iterdir() if p.is_dir()):
table_summaries.append(
_rewrite_table_dir(
repo_root,
table_dir,
staging_root,
trash_root,
set_revision_ids,
archive_revision_ids,
workers,
)
)
latest_dir = repo_root / "data" / schema_version / "latest"
if latest_dir.exists():
shutil.rmtree(latest_dir)
archive_delete = _remove_archive_files(repo_root, details["archive_paths"])
state_summary = (
_update_state_db(
state_db,
list(selected_set_ids),
clear_enumerate_state=clear_enumerate_state,
)
if state_db is not None
else {
"sets_deleted": 0,
"attempts_deleted": 0,
"discoveries_deleted": 0,
"meta_deleted": 0,
}
)
finally:
if trash_root.exists():
shutil.rmtree(trash_root, ignore_errors=True)
if staging_root.exists():
shutil.rmtree(staging_root, ignore_errors=True)
return {
"ok": True,
"tx_id": tx_id,
"requested_count": count,
"selected_set_count": len(selected_set_ids),
"selected_set_min": min(selected_set_ids),
"selected_set_max": max(selected_set_ids),
"set_revision_count": len(set_revision_ids),
"archive_revision_count": len(archive_revision_ids),
"archive_bytes_removed": int(details["archive_bytes"]),
"archive_files": archive_delete,
"state": state_summary,
"tables": table_summaries,
}
def parse_args(argv: list[str] | None = None) -> argparse.Namespace:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument("--repo-root", default=".")
parser.add_argument("--schema-version", default="v1")
parser.add_argument("--count", type=int, default=1000)
parser.add_argument("--state-db", default=None)
parser.add_argument("--clear-enumerate-state", action="store_true")
parser.add_argument("--workers", type=int, default=DEFAULT_WORKERS)
parser.add_argument("--summary-path", default=None)
parser.add_argument("--json", action="store_true")
return parser.parse_args(argv)
def main(argv: list[str] | None = None) -> int:
args = parse_args(argv)
repo_root = Path(args.repo_root).resolve()
state_db = Path(args.state_db) if args.state_db else None
if state_db is not None and not state_db.is_absolute():
state_db = repo_root / state_db
summary = remove_maps_v1(
repo_root,
schema_version=args.schema_version,
count=args.count,
state_db=state_db,
clear_enumerate_state=args.clear_enumerate_state,
workers=max(1, args.workers),
)
text = json.dumps(summary, indent=2, sort_keys=True)
if args.summary_path:
path = Path(args.summary_path)
if not path.is_absolute():
path = repo_root / path
path.parent.mkdir(parents=True, exist_ok=True)
path.write_text(text + "\n", encoding="utf-8")
if args.json:
print(text)
else:
print(
"removed "
f"{summary['selected_set_count']} set(s), "
f"{summary['archive_revision_count']} archive revision(s), "
f"{summary['archive_files']['removed']} local archive file(s)"
)
return 0
if __name__ == "__main__":
raise SystemExit(main())
|