SkillVaultskills Browse all 1,000+ skills

Debugging · Version 1.1.0 · Reviewed 2026-08-02

MySQL Production Debug Specialist

Diagnose MySQL production incident triage and MySQL root-cause isolation with evidence, explicit trade-offs, and a verification plan.

4 method steps 6 documented failure modes 5 diagnostic checks 7 quality gates

Diagnoses production failures from runtime evidence instead of symptom matching in MySQL using schema, execution plans, indexes, isolation settings, and replication topology and EXPLAIN ANALYZE, performance schema waits, slow queries, and replica lag, with explicit attention to range or gap locking turning a small write into broad contention.

₹199 one-time

Get this skill archive

Install in your AI coding tool

SkillVault packages this skill in the open Agent Skills format for five leading coding tools.

What this skill helps you do

  • MySQL production incident triage
  • MySQL root-cause isolation
  • MySQL fix verification

How MySQL Production Debug Specialist works

You provide

Schema, query plans, and the real access pattern

It inspects

Plan accuracy and lock behavior for MySQL production incident triage

It decides

A MySQL root-cause isolation change weighed against write cost

You verify

Re-measured plan with buffer reads and timing compared

What it checks first

MySQL Production Debug Specialist diagnoses production failures from runtime evidence instead of symptom matching in MySQL using schema, execution plans, indexes, isolation settings, and replication topology and EXPLAIN ANALYZE, performance schema waits, slow queries, and replica lag, with explicit attention to range or gap locking turning a small write into broad contention. Use it when the work involves MySQL production incident triage, MySQL root-cause isolation, MySQL fix verification.

  1. The actual query plan with real row counts, not the estimated plan or the query text alone.
  2. Whether the workload is read-heavy, write-heavy, or mixed, since the correct design differs sharply.
  3. Transaction boundaries and duration, because long transactions block vacuum and hold locks.
  4. Index coverage relative to both the filter and the sort, since satisfying one but not the other still costs a sort.
  5. Connection pool behavior, as pool exhaustion presents as database slowness while the database is idle.

Failure modes it recognizes

  • An index that serves the predicate but not the ordering, forcing a full sort for a small LIMIT.
  • A long-running transaction preventing vacuum and causing gradual bloat and plan degradation.
  • Implicit type casting on a join or filter column silently disabling index use.
  • Connection pool exhaustion from long-held connections, appearing as a database problem.
  • A write-heavy table with excessive indexes where insert cost dominates the workload.
  • Statistics stale after a bulk load, so the planner chooses a plan for a table size that no longer exists.

Answers it will reject

  • Adding an index per slow query until write amplification becomes the new bottleneck.
  • Tuning configuration parameters before examining the plan for the dominant query.
  • Interpreting `EXPLAIN` without `ANALYZE`, which reports estimates and proves nothing.
  • Increasing pool size to fix latency caused by lock contention, which adds waiters rather than capacity.

Decision rules it applies

  • Optimize the query that dominates total time, not the one that feels slowest in isolation.
  • Order composite index columns by equality first, then range or sort last.
  • Keep transactions short and never hold one open across an external call.
  • Create and drop indexes concurrently on live tables, accepting the longer build for the absent lock.

Evidence it asks for

  • `EXPLAIN (ANALYZE, BUFFERS)` to compare estimated with actual rows and attribute I/O.
  • Rank queries by cumulative execution time rather than by single-execution latency.
  • Monitor the oldest open transaction and lock wait counts as standing metrics.

The method inside

  1. Reconstruct the symptom timeline and define what healthy behavior would look like for MySQL production incident triage.
  2. Rank hypotheses for MySQL root-cause isolation by evidence, blast radius, and ability to explain every observed symptom.
  3. Run the cheapest discriminating check for MySQL fix verification; update confidence only when evidence changes.
  4. Separate immediate stabilization, confirmed cause, contributing conditions, and prevention; finish with a reproducible verification.

Deliverables

  • MySQL production incident triage assessment
  • MySQL root-cause isolation decision and action plan
  • MySQL fix verification verification checklist

Evidence requirements

  • Exact symptoms and timestamps
  • Reproduction conditions and recent changes
  • Logs, traces, metrics, code, or configuration

Quality gates

  • Every material claim traces to supplied evidence or is labeled as a hypothesis.
  • The response follows the declared deliverable contract.
  • No execution, access, measurement, or verification is invented.
  • Secrets and personal data are redacted rather than repeated.
  • The user receives a concrete independent verification step.
  • The relevant failure modes in this domain were considered rather than only the reported symptom.
  • No listed anti-pattern was recommended as a solution.

Example task

Input

Apply the production debug specialist to our MySQL system before the next production change. We can provide schema, execution plans, indexes, isolation settings, and replication topology; the main concern is range or gap locking turning a small write into broad contention.

Expected output

Start with EXPLAIN ANALYZE, performance schema waits, slow queries, and replica lag and split the affected population before changing configuration. The leading hypothesis is range or gap locking turning a small write into broad contention. Run the smallest test that distinguishes that mechanism from dependency failure, preserve the evidence, and verify recovery against the original symptom.

Boundaries and compatibility

Ideal for

  • MySQL production incident triage: produce a decision or artifact grounded in supplied evidence.
  • MySQL root-cause isolation: produce a decision or artifact grounded in supplied evidence.
  • MySQL fix verification: produce a decision or artifact grounded in supplied evidence.

Out of scope

  • Guessing a root cause from a symptom alone
  • Claiming a fix worked without test evidence

Agent compatibility

  • GitHub Copilot Agent Skills
  • Cursor Agent Skills
  • Claude Code Skills
  • OpenAI Codex Skills
  • JetBrains Junie Skills

Tool policy: Advisory by default. No tools are assumed. If the host provides tools, use read-only evidence gathering unless the user explicitly approves a scoped write or execution action.