Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

monitoring-background-jobs监控后台作业

Agent Skill

monitoring-background-jobs 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

396

周安装

17

GitHub Stars

9

下载量

139
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:monitoring-background-jobs(监控后台作业)
来源仓库:https://github.com/cockroachlabs/cockroachdb-skills
仓库路径:skills/monitoring-background-jobs
安装命令:
npx skills add https://github.com/cockroachlabs/cockroachdb-skills --skill monitoring-background-jobs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cockroachlabs/cockroachdb-skills --skill monitoring-background-jobs

简介

monitoring-background-jobs 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Monitoring Background Jobs

Monitors background job health by identifying failed, paused, and long-running jobs that are distinct from user queries. Uses SQL-only interfaces (SHOW JOBS and SHOW AUTOMATIC JOBS) to surface schema changes, backups/restores, automatic statistics collection, and SQL stats compaction without requiring DB Console access.

When to Use This Skill

  • Schema changes appear stuck or delayed (ALTER TABLE, CREATE INDEX, DROP operations)
  • Backups or restores are failing or taking longer than expected
  • Need to verify automatic statistics collection is running
  • Investigating "waiting for MVCC GC" status in schema change cleanup
  • Troubleshooting failed jobs without DB Console access
  • Monitoring long-running operations that don't appear in query metrics

For live query monitoring: Use triaging-live-sql-activity to monitor currently executing user queries. Note that background jobs execute statements that may not appear in SHOW CLUSTER STATEMENTS.

For historical query analysis: Use profiling-statement-fingerprints for query pattern trends. Note that background jobs are excluded from statement statistics.

Prerequisites

Required SQL access:

  • Connection to any CockroachDB node
  • For cluster-wide job visibility: VIEWJOB system privilege (read-only monitoring)
  • For job control operations: CONTROLJOB role option (pause/cancel/resume jobs)
  • Without these: Limited visibility into jobs you created

Check your privileges:

SHOW GRANTS ON ROLE <username>;

Look for:

  • VIEWJOB in the privilege_type column (system privilege)
  • CONTROLJOB in role options (check with SHOW USERS)

See permissions reference for detailed RBAC setup.

Core Concepts

Jobs vs Statements

Key distinction:

  • Statements: User-initiated SQL queries tracked by SHOW CLUSTER STATEMENTS and statement statistics
  • Background jobs: Long-running operations tracked separately by SHOW JOBS

Background jobs are excluded from:

  • SHOW CLUSTER STATEMENTS (live query monitoring)
  • crdb_internal.statement_statistics (historical query analysis)
  • Statement fingerprint metrics and DB Console Statements page

Common job types:

CategoryJob TypesExamples
User-initiatedSCHEMA CHANGE, BACKUP, RESTORE, IMPORT, CHANGEFEEDALTER TABLE, CREATE INDEX, BACKUP DATABASE, RESTORE
AutomaticSCHEMA CHANGE GC, AUTO CREATE STATS, AUTO SQL STATS COMPACTIONPost-DROP cleanup, table statistics refresh, stats table maintenance

See job types reference for complete catalog.

SHOW JOBS vs SHOW AUTOMATIC JOBS

InterfaceScopeTime WindowUse Case
SHOW JOBSUser-initiated + automaticLast 12 hours (default)Monitor backups, schema changes, user operations
SHOW AUTOMATIC JOBSAutomatic onlyConfigurable (recommend 24h)Monitor AUTO CREATE STATS, AUTO SQL STATS COMPACTION, SCHEMA CHANGE GC

Time retention:

  • Default retention: 14 days in crdb_internal.jobs table
  • SHOW JOBS display window: 12 hours (configurable with SHOW JOBS SELECT * FROM [SHOW JOBS] WHERE...)
  • SHOW AUTOMATIC JOBS display window: Configurable with WHERE created > now() - INTERVAL '...'

Job Status Values

StatusMeaningAction Required
runningJob is actively executingMonitor progress via fraction_completed
succeededJob completed successfullyNone
failedJob encountered an errorInvestigate error column, may need to retry
pausedJob manually pausedResume with RESUME JOB if appropriate
canceledJob was canceled (terminal state)Retry operation if needed
pendingJob queued but not startedMonitor; may indicate resource constraints
revertingJob failed and is rolling back changesWait for completion; check error after

Running status sub-states:

  • performing backup: Backup job actively transferring data
  • restoring: Restore job actively applying data
  • waiting for MVCC GC: SCHEMA CHANGE GC waiting for garbage collection eligibility

See job states reference for detailed state transitions and "waiting for MVCC GC" explanation.

Core Diagnostic Queries

Query 1: Failed Jobs (Last 12 Hours)

Identify jobs that failed with error messages:

-- Failed jobs in last 12 hours
WITH j AS (SHOW JOBS)
SELECT
  job_id,
  job_type,
  description,
  created,
  finished,
  now() - created AS total_duration,
  error
FROM j
WHERE status = 'failed'
  AND created > now() - INTERVAL '12 hours'
ORDER BY created DESC
LIMIT 50;

Key columns:

  • error: Failure reason (check for permission errors, disk space, network issues)
  • description: Human-readable description of what the job was doing
  • total_duration: How long the job ran before failing

Common failure patterns:

  • Permission denied: User lacks required privileges
  • Disk space: Backup destination full
  • Network timeout: External storage unreachable
  • Constraint violation: Restore conflicts with existing data

Query 2: Long-Running Jobs

Find jobs running longer than expected threshold:

-- Jobs running longer than 1 hour
WITH j AS (SHOW JOBS)
SELECT
  job_id,
  job_type,
  description,
  status,
  running_status,
  created,
  now() - created AS running_for,
  fraction_completed,
  coordinator_id
FROM j
WHERE status = 'running'
  AND created < now() - INTERVAL '1 hour'
ORDER BY created
LIMIT 50;

Key columns:

  • running_for: Total elapsed time since job started
  • fraction_completed: Progress estimate (0.0 to 1.0, NULL if unavailable)
  • running_status: Sub-state details (e.g., "waiting for MVCC GC")

Customizable thresholds:

  • Schema changes: 30 minutes to several hours (depends on table size)
  • Backups: 1-6+ hours (depends on data volume)
  • Automatic jobs: Usually < 30 minutes

Query 3: Paused Jobs

Identify jobs that are paused and may need attention:

-- Paused jobs needing resume
WITH j AS (SHOW JOBS)
SELECT
  job_id,
  job_type,
  description,
  created,
  now() - created AS paused_for,
  coordinator_id
FROM j
WHERE status = 'paused'
ORDER BY created
LIMIT 50;

Action required: Resume with RESUME JOB <job_id> after verifying the pause reason.

Common reasons for paused jobs:

  • Manual user pause for maintenance
  • Resource constraints (cluster paused the job)
  • Error requiring manual intervention

Query 4: Schema Changes Waiting for MVCC GC

Find SCHEMA CHANGE GC jobs waiting for garbage collection:

-- Schema change cleanup jobs waiting for GC
WITH j AS (SHOW JOBS)
SELECT
  job_id,
  job_type,
  description,
  created,
  now() - created AS waiting_for,
  running_status
FROM j
WHERE status = 'running'
  AND job_type = 'SCHEMA CHANGE GC'
  AND running_status LIKE '%waiting for MVCC GC%'
ORDER BY created
LIMIT 50;

Interpretation:

  • Normal: SCHEMA CHANGE GC jobs wait for data to become garbage-collectable based on gc.ttlseconds setting (default 25 hours)
  • Expected duration: Up to gc.ttlseconds + some overhead
  • When to worry: Waiting > 2x gc.ttlseconds (check setting with SHOW CLUSTER SETTING gc.ttlseconds)

Why this happens: After DROP TABLE/INDEX operations, CockroachDB must wait for all reads at older timestamps to complete before physically removing data. This prevents "time-travel" queries from failing.

See job states reference for detailed MVCC GC explanation.

Query 5: Automatic Job Health (24h Window)

Monitor automatic background jobs like statistics collection:

-- Automatic jobs in last 24 hours
SELECT
  job_id,
  job_type,
  description,
  status,
  created,
  finished,
  COALESCE(finished, now()) - created AS duration
FROM [SHOW AUTOMATIC JOBS]
WHERE created > now() - INTERVAL '24 hours'
  AND job_type IN ('AUTO CREATE STATS', 'AUTO SQL STATS COMPACTION')
ORDER BY created DESC
LIMIT 50;

Key job types:

  • AUTO CREATE STATS: Automatic table statistics refresh (critical for query optimizer)
  • AUTO SQL STATS COMPACTION: Periodic cleanup of statement/transaction statistics tables

Health indicators:

  • Healthy: Regular successful executions (every few hours)
  • Unhealthy: No recent executions, or high failure rate
  • Impact of failure: Stale statistics lead to poor query plans and slow queries

Query 6: Jobs by Type and Status

Aggregated view for pattern analysis:

-- Job distribution by type and status (last 24h)
WITH j AS (SHOW JOBS)
SELECT
  job_type,
  status,
  COUNT(*) AS job_count,
  MIN(created) AS oldest,
  MAX(created) AS newest
FROM j
WHERE created > now() - INTERVAL '24 hours'
GROUP BY job_type, status
ORDER BY job_type, status;

Use case:

  • Identify patterns (e.g., all BACKUP jobs failing, multiple schema changes stuck)
  • Spot anomalies (e.g., unusual job type volume)
  • Track job success rates by type

Query 7: Backup and Restore Progress

Track progress of backup/restore jobs:

-- Active backup/restore jobs with progress
WITH j AS (SHOW JOBS)
SELECT
  job_id,
  job_type,
  description,
  created,
  now() - created AS running_for,
  ROUND(COALESCE(fraction_completed, 0) * 100, 2) AS percent_complete,
  CASE
    WHEN fraction_completed > 0 AND fraction_completed < 1 THEN
      ((now() - created) / fraction_completed) - (now() - created)
    ELSE NULL
  END AS estimated_time_remaining,
  running_status
FROM j
WHERE status = 'running'
  AND job_type IN ('BACKUP', 'RESTORE')
ORDER BY created
LIMIT 50;

Key columns:

  • percent_complete: Progress percentage (0-100)
  • estimated_time_remaining: Rough estimate based on current progress rate
  • running_status: Detailed status (e.g., "performing backup to s3://...")

Note: fraction_completed may be NULL for some job types or early in execution.

Common Workflows

Workflow 1: Schema Change Stuck Investigation

Scenario: User reports ALTER TABLE or CREATE INDEX appears stuck.

  1. Check for running schema changes: WITH j AS (SHOW JOBS) SELECT job_id, description, created, now() - created AS running_for, fraction_completed, running_status FROM j WHERE status = 'running' AND job_type IN ('SCHEMA CHANGE', 'NEW SCHEMA CHANGE') ORDER BY created;
  2. Identify MVCC GC waits: -- Use Query 4 to find "waiting for MVCC GC" jobs
  3. Interpret results:

- If running_status = "waiting for MVCC GC": Normal for post-DROP cleanup (wait up to gc.ttlseconds) - If long-running with low fraction_completed: Check for contention, large table size, or resource constraints - If failed: Check error column for specific failure reason

  1. Next steps:

- MVCC GC wait: Verify SHOW CLUSTER SETTING gc.ttlseconds and wait - Resource constraints: Check cluster CPU/memory usage - Failed job: Address error (permissions, constraints) and retry operation

Workflow 2: Failed Backup Triage

Scenario: Scheduled backup job failed.

  1. Find recent failed backups: -- Use Query 1 filtered for BACKUP job type WITH j AS (SHOW JOBS) SELECT job_id, description, created, finished, error FROM j WHERE status = 'failed' AND job_type = 'BACKUP' AND created > now() - INTERVAL '24 hours' ORDER BY created DESC;
  2. Analyze error messages:

- "permission denied": Check external storage credentials - "timeout": Network connectivity to backup destination - "no space left": Destination storage full - "connection refused": External storage endpoint unreachable

  1. Verify backup destination: -- Check SHOW BACKUP for successful backups to same destination SHOW BACKUP 's3://bucket/path';
  2. Remediate and retry:

- Fix underlying issue (credentials, storage, network) - Re-run backup command - Monitor with Query 7 for progress

Workflow 3: Automatic Job Health Check

Scenario: Proactive monitoring of automatic background jobs.

  1. Check AUTO CREATE STATS frequency: -- Use Query 5 to see recent automatic statistics jobs SELECT job_type, status, COUNT(*) AS job_count, MAX(created) AS most_recent FROM [SHOW AUTOMATIC JOBS] WHERE created > now() - INTERVAL '24 hours' AND job_type = 'AUTO CREATE STATS' GROUP BY job_type, status;
  2. Expected pattern:

- Multiple successful AUTO CREATE STATS jobs per day (depends on table update frequency) - Regular AUTO SQL STATS COMPACTION (typically once per hour)

  1. Warning signs:

- No AUTO CREATE STATS in last 24h: Statistics collection may be disabled - High failure rate: Check cluster resource constraints or permission issues - No AUTO SQL STATS COMPACTION: Stats table may grow unbounded

  1. Verify settings: SHOW CLUSTER SETTING sql.stats.automatic_collection.enabled; -- Should be true SHOW CLUSTER SETTING sql.stats.automatic_collection.min_stale_rows;

Workflow 4: Long-Running Job Monitoring

Scenario: Track progress of expected long-running operations.

  1. Identify long-running jobs: -- Use Query 2 with custom threshold WITH j AS (SHOW JOBS) SELECT job_id, job_type, description, now() - created AS running_for, fraction_completed FROM j WHERE status = 'running' AND created < now() - INTERVAL '30 minutes' ORDER BY created;
  2. Monitor progress over time: -- Re-run every 10-15 minutes, track fraction_completed changes -- Example: 0.25 → 0.40 → 0.55 indicates steady progress
  3. Estimate completion: -- Use Query 7 for backup/restore jobs with time estimates
  4. Decide on action:

- Steady progress: Continue monitoring - Stalled progress (fraction_completed not increasing): Investigate with triaging-live-sql-activity - Failed: Use Query 1 to check error

Safety Considerations

Read-only operations (all diagnostic queries): All SHOW JOBS and SHOW AUTOMATIC JOBS queries are read-only and safe to run in production. No performance impact on cluster operations.

Job control operations (opt-in):

CAUTION: Pausing or canceling jobs can have data integrity implications

Only proceed with job control if:

  • You have CONTROLJOB role option
  • You understand the implications (e.g., canceling a schema change mid-execution may require manual cleanup)
  • You have authorization to interrupt cluster operations
  • You've verified the job is truly problematic (not just slow)

Job control commands:

-- Pause a running job (can be resumed later)
PAUSE JOB <job_id>;

-- Resume a paused job
RESUME JOB <job_id>;

-- Cancel a job (terminal - cannot be resumed)
CANCEL JOB <job_id>;

Risks by job type:

  • SCHEMA CHANGE: Canceling may leave schema in inconsistent state; prefer PAUSE and investigation
  • BACKUP: Canceling is safe (can retry); pausing is better for temporary issues
  • RESTORE: Canceling may leave database partially restored; requires cleanup
  • AUTO CREATE STATS: Canceling is safe (will retry later automatically)

Best practice: Focus on monitoring and diagnosis; only use control operations when explicitly required and authorized.

See permissions reference for CONTROLJOB role option setup.

Troubleshooting

IssueCauseFix
SHOW JOBS returns emptyNo jobs in last 12h, or insufficient privilegesGrant VIEWJOB privilege; verify cluster has recent job activity
"waiting for MVCC GC" for many hoursNormal behavior for SCHEMA CHANGE GC after DROP operationsWait up to gc.ttlseconds (default 25h); check SHOW CLUSTER SETTING gc.ttlseconds
Can't pause/resume job: "permission denied"Missing CONTROLJOB role optionUse ALTER ROLE <username> WITH CONTROLJOB (not GRANT SYSTEM)
Job stuck at same fraction_completedJob may be processing large batch, or actually stuckWait 15-30 min and re-check; if no change, investigate with live query triage
No AUTO CREATE STATS jobsAutomatic collection disabledCheck sql.stats.automatic_collection.enabled = true
SHOW AUTOMATIC JOBS shows old jobs onlyNeed to filter by time windowAdd WHERE created > now() - INTERVAL '24 hours'
Failed job with "schema change GC" errorExpected for post-DROP cleanup failuresUsually safe to ignore; job will retry automatically
Job error: "concurrent schema change"Multiple schema changes on same tableWait for first schema change to complete, then retry

Key Considerations

  • Jobs vs queries: Background jobs execute statements that don't appear in SHOW STATEMENTS or statement statistics
  • Time windows: SHOW JOBS default 12h retention; use crdb_internal.jobs for up to 14 days
  • MVCC GC waiting: Normal and expected for post-DROP cleanup; duration tied to gc.ttlseconds
  • LIMIT clauses: Always include for production safety (prevents overwhelming output)
  • Privilege model: VIEWJOB (system privilege) for read-only; CONTROLJOB (role option) for control
  • Automatic job health: Regular AUTO CREATE STATS is critical for query optimizer performance
  • Progress estimates: fraction_completed may be NULL or sparse for some job types
  • Job control risks: PAUSE is safer than CANCEL; some cancellations require manual cleanup

References

Skill references:

Related skills:

Official CockroachDB Documentation:

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.01%
按下载量换算51

Claude

29.13%
按下载量换算40

Cursor

19.67%
按下载量换算27

Gemini CLI

8.92%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/cockroachlabs/cockroachdb-skills --skill monitoring-background-jobs 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills