Skip to main content
Manusで任意のスキルを実行
ワンクリックで
GitHub リポジトリ

cockroach-university-assets

cockroach-university-assets には cockroachlabs から収集した 101 個の skills があり、リポジトリ単位の職業カバレッジとサイト内 skill 詳細ページを表示します。

収集済み skills
101
Stars
1
更新
2026-06-02
Forks
0
職業カバレッジ
4 件の職業カテゴリ · 100% 分類済み
リポジトリエクスプローラー

このリポジトリの skills

analyze-estimated-row-counts-and-statistics
データベース管理者

Analyze table statistics and estimated row counts to understand optimizer decisions and diagnose plan quality issues

2026-06-02
analyze-incremental-backup-efficiency
データベース管理者

Use SHOW BACKUP to analyze incremental backup efficiency by comparing data_size, row_count, and performance metrics across backup chains. Calculate storage savings, monitor change rates, and optimize backup frequency based on data patterns. Essential for balancing RPO requirements with storage costs.

2026-06-02
analyze-key-value-pairs-and-range-distribution-using-show-ranges
データベース管理者

Use SHOW RANGES commands to analyze how table data and indexes are split into ranges and distributed across cluster nodes. Understand key-value encoding, range boundaries, replica placement, and leaseholder assignment for performance troubleshooting.

2026-06-02
analyze-query-latency-percentiles
データベース管理者

Analyze query latency using mean, max, and min metrics from statement statistics; percentile data (p50/p90/p99) only available in DB Console UI

2026-06-02
analyze-range-distribution-across-regions
データベース管理者

Analyze how ranges and replicas are distributed across regions in multi-region clusters. Query range placement, verify regional constraints, identify misplaced ranges, and detect rebalancing issues. Essential for troubleshooting latency, verifying compliance, and optimizing multi-region performance.

2026-06-02
apply-hash-sharding-to-prevent-sequential-key-hotspots
データベースアーキテクト

Use USING HASH clause to distribute sequential keys across ranges, preventing write hotspots. Hash function maps sequential values to buckets (default 16) spreading writes across the cluster. Fixes timestamp, auto-increment, and date-based hotspots with trade-off on range scan efficiency.

2026-06-02
apply-index-best-practices
データベースアーキテクト

Comprehensive guide to index best practices in CockroachDB. Covers when to create indexes, naming conventions, composite vs single-column indexes, covering indexes with STORING clause, avoiding redundant indexes, monitoring index usage, and dropping unused indexes. Use when user says "index best practices", "index guidelines", "index strategy", "how to index", or needs comprehensive indexing advice.

2026-06-02
cancel-long-running-queries-and-sessions
ネットワーク・コンピュータシステム管理者

Identify and cancel problematic queries and sessions impacting cluster performance

2026-06-02
check-cluster-version-and-upgrade-status
ネットワーク・コンピュータシステム管理者

Check cluster version and upgrade status using version queries, cluster settings, and internal tables to monitor upgrade progress and verify version states

2026-06-02
check-leaseholder-location-for-tables
ネットワーク・コンピュータシステム管理者

Check where leaseholders are located for tables using SHOW RANGES and crdb_internal queries. Verify leaseholder placement matches expected locality, troubleshoot wrong-region leaseholders, and understand how locality affects read performance.

2026-06-02
configure-cron-expressions-for-backup-schedules
ネットワーク・コンピュータシステム管理者

Understand and configure CRON expressions for CockroachDB backup schedules. Use when user asks "how to write cron", "schedule syntax", "cron format", "backup timing", or needs to configure custom backup frequencies beyond shortcuts.

2026-06-02
configure-haproxy-health-checks-and-backend-servers
ネットワーク・コンピュータシステム管理者

Configure HAProxy health checks, backend servers, load balancing algorithms, and connection limits for CockroachDB

2026-06-02
configure-load-balancer-health-checks-for-node-maintenance
ネットワーク・コンピュータシステム管理者

Configure load balancer health checks using CockroachDB health endpoints to automatically remove draining nodes from rotation during maintenance. Use when user asks "load balancer health check", "HAProxy health endpoint", "/health?ready=1", or "automatic node removal".

2026-06-02
configure-load-balancer-health-checks
ネットワーク・コンピュータシステム管理者

Configure load balancer health checks using CockroachDB /health?ready=1 endpoint to route traffic only to healthy, ready nodes and avoid routing to failed or draining nodes.

2026-06-02
configure-locality-aware-backups
ネットワーク・コンピュータシステム管理者

Configure backups with COCKROACH_LOCALITY URL parameter to write backup data to storage locations matching node locality. Minimizes cross-region data transfer costs and latency while supporting data sovereignty compliance by keeping data within geographic boundaries.

2026-06-02
create-automated-backup-schedules
ネットワーク・コンピュータシステム管理者

Create automated recurring backup schedules in CockroachDB using CREATE SCHEDULE FOR BACKUP command. Use when user asks to "automate backups", "schedule backups", "recurring backups", "automatic backups", or wants backups to run without manual intervention.

2026-06-02
create-backups-with-revision-history-for-pitr
データベース管理者

Create backups with revision history to enable point-in-time recovery (PITR) in CockroachDB. Captures all MVCC versions between backup start and end times, allowing restore to any timestamp within backup window. Use when user asks to "enable PITR", "backup with revision history", "point-in-time recovery", "backup all versions", or needs ability to restore to arbitrary timestamps.

2026-06-02
create-incremental-backups-with-backup-into-latest
データベース管理者

Create incremental backups using BACKUP INTO LATEST command to capture only data changed since last backup. Use when user asks for "incremental backup", "backup changes only", "reduce backup size", "hourly backups", or wants storage-efficient frequent backups.

2026-06-02
diagnose-node-failures-using-multiple-signals
データベース管理者

Diagnose node failures by correlating multiple signals including liveness, health checks, logs, and metrics. Use when investigating cluster instability, troubleshooting node outages, or determining root causes of failures.

2026-06-02
diagnose-write-intent-buildup-issues
データベース管理者

Diagnose write intent buildup issues by monitoring intent metrics, identifying problematic long-running transactions, analyzing root causes, and implementing resolution strategies to restore performance.

2026-06-02
enable-and-collect-query-diagnostics-bundles
データベース管理者

Enable automatic diagnostics collection for slow queries and download bundles containing EXPLAIN ANALYZE output, trace data, and execution metadata for deep troubleshooting

2026-06-02
enable-and-configure-backups-in-cloud
データベース管理者

Enable and configure managed backups for CockroachDB Cloud clusters, adjusting backup frequency and retention to meet disaster recovery requirements. Use when setting up automated backups, adjusting RPO/RTO targets, or optimizing backup costs.

2026-06-02
execute-cluster-level-full-backups
データベース管理者

Create full cluster backups in CockroachDB using BACKUP INTO command. Captures all databases, tables, schemas, users, and system metadata in a single consistent snapshot. Use when user asks to "backup the cluster", "create full backup", "backup all databases", "disaster recovery backup", "pre-upgrade backup", or needs complete cluster state for DR or migration.

2026-06-02
execute-database-level-backups
データベース管理者

Create database-level backups in CockroachDB using BACKUP DATABASE command. Use when user asks to "backup a database", "backup specific database", "application backup", or needs targeted recovery for single database without full cluster restore.

2026-06-02
execute-table-level-backups
データベース管理者

Create backups of individual tables or groups of tables in CockroachDB using BACKUP TABLE syntax. Enables surgical backup strategies for specific datasets with independent schedules and retention policies. Use when user asks to "backup a table", "backup specific tables", "backup schema", "surgical backup", or needs granular control over backup scope.

2026-06-02
inspect-backup-contents-with-show-backup
データベース管理者

Inspect CockroachDB backup metadata using SHOW BACKUP command to examine databases, tables, row counts, and sizes. Use when user asks to "check backup contents", "verify backup", "what's in backup", "inspect backup", or needs to validate backup before restore.

2026-06-02
inspect-cluster-node-status-and-health
ネットワーク・コンピュータシステム管理者

Inspect cluster node status and health using SHOW CLUSTER QUERIES, crdb_internal.kv_node_status, and related commands. Monitor node liveness, uptime, build version, and resource utilization across the cluster.

2026-06-02
list-available-backups-with-show-backups
ネットワーク・コンピュータシステム管理者

List all available CockroachDB backups in a storage location using SHOW BACKUPS command. Use when user asks "list backups", "show all backups", "available backups", "backup history", or needs to find restore points and manage retention.

2026-06-02
manage-backup-retention-policies
ネットワーク・コンピュータシステム管理者

Design and implement backup retention policies balancing RPO requirements with storage costs. Use storage lifecycle rules (S3/GCS) or manual cleanup scripts. Implement graduated retention strategies (daily 30d, weekly 90d, monthly 1yr). Ensure retention exceeds recovery window and meets compliance requirements.

2026-06-02
manage-backup-schedule-lifecycle
ネットワーク・コンピュータシステム管理者

Manage backup schedule lifecycle with PAUSE, RESUME, and DROP SCHEDULES commands. Use when user asks to "pause backups", "stop schedule", "resume backups", "delete schedule", or needs to manage automated backup schedules for maintenance or decommissioning.

2026-06-02
modify-backup-schedule-frequency
ネットワーク・コンピュータシステム管理者

Modify existing backup schedule frequencies using ALTER BACKUP SCHEDULE. Change full backup intervals with SET FULL BACKUP or incremental intervals with SET RECURRING. Supports CRON expressions and shortcuts. Find schedule IDs with SHOW SCHEDULES. Use when adjusting RPO requirements, backup windows, or cost optimization.

2026-06-02
monitor-admission-control-queuing
ネットワーク・コンピュータシステム管理者

Monitor admission control queue depths and wait times using DB Console Queues dashboard or crdb_internal.node_metrics. High queuing indicates cluster overload or insufficient capacity. Track queue length and wait duration metrics to detect performance bottlenecks.

2026-06-02
monitor-all-job-types-with-show-jobs
ネットワーク・コンピュータシステム管理者

Monitor background operations using SHOW JOBS to track BACKUP, RESTORE, IMPORT, CHANGEFEED, CREATE STATISTICS, and schema changes. Filter by status, type, and time. Monitor progress and troubleshoot failures.

2026-06-02
monitor-backup-jobs-in-cloud-console
ネットワーク・コンピュータシステム管理者

Monitor backup job status, progress, and history through the CockroachDB Cloud Console. Use when tracking backup execution, troubleshooting failed backups, validating backup schedules, or investigating backup performance issues.

2026-06-02
monitor-certificate-expiration-dates
ネットワーク・コンピュータシステム管理者

Check certificate expiration using cockroach cert list. Monitor node, client, and CA certificates. Alert when certificates expire within 30 days. Automate rotation procedures.

2026-06-02
monitor-changefeed-job-status
ネットワーク・コンピュータシステム管理者

Monitor and track changefeed job status, health, and progress using SQL commands and DB Console

2026-06-02
monitor-changefeed-lag-and-performance
ネットワーク・コンピュータシステム管理者

Monitor changefeed backlog and lag using max_behind_nanos metric, query crdb_internal.jobs for details, track emitted messages/bytes, and correlate lag with cluster load

2026-06-02
monitor-changefeed-metrics-in-db-console
ネットワーク・コンピュータシステム管理者

Access and interpret changefeed metrics in DB Console dashboard. Monitor emitted messages, bytes, backfill progress, lag (max behind nanos), and per-changefeed performance to identify throughput issues and correlate with SQL queries.

2026-06-02
monitor-changefeed-performance-and-health
ネットワーク・コンピュータシステム管理者

Monitor changefeed health using SHOW CHANGEFEED JOBS, DB Console metrics, high water mark lag, and sink-specific indicators

2026-06-02
monitor-clock-offset-across-nodes
ネットワーク・コンピュータシステム管理者

Monitor clock offset across cluster nodes using crdb_internal.node_metrics clock-offset.meannanos metric. Alert when offset exceeds 250ms (warning) or 500ms (fatal crash threshold). Critical for transaction timestamp ordering and HLC correctness. Use DB Console Hardware dashboard or SQL queries. Correlate with transaction errors, serialization failures, or "timestamp in future" issues.

2026-06-02
このリポジトリの収集済み skills 101 件中、上位 40 件を表示しています。