chore(db): purge 21 accidentally-ingested e2e-test runs#617
Merged
Conversation
…al ingest Both are workflow_dispatch runs of .github/workflows/e2e-tests.yml on AMD agentx feature branches that were accidentally ingested into production: - 29651998085 (2026-07-18, amd/agentx_dsv4_sgl_mtp_0717): e2e Test - dsv4-fp4-mi355x-sglang-agentic-mtp ... - 29819261957 (2026-07-21, amd/agentx-v1.0-th-hicon): e2e Test - dsv4-fp4-mi355x-sglang-disagg-agentic-hicache (earlier sibling of 29912027293, purged in #616) On merge, apply-run-overrides.yml deletes each run's rows (benchmarks, agentic trace-replay sidecars, availability) from production, verifies the DB, and refreshes the cache; the entries also skip the runs on any future re-ingest.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
This PR updates the DB ingest override configuration to purge two additional GitHub Actions runs that were accidentally ingested into production benchmark data, ensuring they’re removed from the DB and skipped on any future re-ingest.
Changes:
- Add run
29651998085toPURGED_RUNS(accidental e2e test ingest). - Add run
29819261957toPURGED_RUNS(accidental e2e test ingest).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
adibarra
approved these changes
Jul 23, 2026
Extends the purge to every other ingested run of e2e-tests.yml found by sweeping workflow-info across all data-dates. All are workflow_dispatch runs on feature branches, none intended for production: - 5 dsv4 agentic (amd/agentx_dsv4_sgl_mtp_debug / _0717), 2026-07-16..18 - 14 GLM-5.2 AgentX (explore/glm52-* / feat/glm52-*), 2026-07-19..22, mostly labeled "unofficial" — same class as the 2026-07-20 GLM-5.2 leak Deliberately excluded: the 2 e2e runs that ran on `main` (29657732517 GLM-5.2 concurrency curve, 29765418393 MiniMax-M2.7 EAGLE smoke) — left intact pending confirmation they are not intentional data.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds 21 accidentally-ingested runs to
PURGED_RUNSinrun-overrides.ts. All areworkflow_dispatchruns of.github/workflows/e2e-tests.ymlon feature branches that leaked into production data. Found by sweepingworkflow-infoacross all 233 data-dates and filtering names starting withe2e Test -.Cluster A — dsv4 agentic (AMD agentx branches), 7 runs
Includes the two originally requested (
29651998085,29819261957) plus 5 earlier iterations of the samedsv4-fp4-mi355x-sglang-agenticconfig:29509107670,29512851569(amd/agentx_dsv4_sgl_mtp_debug, 07-16) ·29651589976,29651793829,29651909085,29651998085(amd/agentx_dsv4_sgl_mtp_0717, 07-18) ·29819261957(amd/agentx-v1.0-th-hicon, 07-21)29819261957is an earlier sibling of29912027293(purged in #616).Cluster B — GLM-5.2 AgentX (explore/feat branches), 14 runs
Mostly labeled "unofficial"; same class as the accidentally-ingested GLM-5.2 test runs purged on 2026-07-20:
29702212452(feat/glm52-mi325x-agentx-full-context, 07-19) ·29811350508,29820102138(explore/glm52-h200-agentx-pp-pareto, 07-21) ·29874235202,29874236524,29874237934,29874239449,29874240755,29874242029,29877960458,29878256381,29881040402,29881640438,29882624421(explore/glm52-h200-agentx-tuning-round2, 07-21..22)Deliberately excluded — ran on
main(may be intentional)29657732517(GLM-5.2 FP8 MI325X 1M AgentX concurrency curve, 07-18) and29765418393(Experimental MiniMax-M2.7 EAGLE AgentX smoke, att5, 07-20). Left intact pending confirmation they aren't intended data — trivial to add if they should go too.Effect on merge
.github/workflows/apply-run-overrides.ymlfires on this file changing onmasterand runspnpm admin:db:apply-overrides --yes, transactionally deleting each run's rows (benchmarks, server logs, run stats, evals, changelogs,agentic_trace_replaysidecars, orphanedavailability), verifying the DB, then invalidating + warming the prod cache. Whole-run purges (all attempts); the entries also skip these runs on any future re-ingest.Verification
e2e-tests.yml/workflow_dispatchruns on feature branches, and present in the live production API (ingested).mainruns correctly absent.pnpm lint/pnpm fmt/pnpm typecheckpass (pre-commit hook green).Note
Low Risk
List-only change to existing purge overrides; effect is removing bad benchmark data, not altering application logic or auth.
Overview
Expands
PURGED_RUNSinrun-overrides.tswith 21 GitHub Actions run IDs that were accidentally ingested from feature-branchworkflow_dispatchruns of the e2e tests workflow (dsv4 AgentX / GLM-5.2 AgentX experiments).Each entry includes a dated comment noting accidental ingest during testing. No ingest or purge logic changes—only the override list grows. After merge, CI is expected to apply overrides, delete those runs’ DB rows, and block future re-ingest for the same IDs.
Reviewed by Cursor Bugbot for commit ef463f9. Bugbot is set up for automated code reviews on this repo. Configure here.