[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-cockroachdb-managing-cluster-settings":3,"mdc--l5hz67-key":36,"related-repo-cockroachdb-managing-cluster-settings":1821,"related-org-cockroachdb-managing-cluster-settings":1916},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":31,"sourceUrl":34,"mdContent":35},"managing-cluster-settings","manage CockroachDB cluster settings","Reviews, audits, and modifies CockroachDB cluster settings. Self-Hosted has full control over all settings and start flags. Advanced\u002FBYOC can modify most SQL-level settings but infrastructure settings are managed by CRL. Standard has limited settings access — session variables are the primary tuning mechanism. Basic has minimal settings — use session variables and Cloud Console. Use when auditing configuration, tuning performance, or troubleshooting settings-related issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"cockroachdb","CockroachDB","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcockroachdb.png",[12,16,19],{"name":13,"slug":14,"type":15},"Operations","operations","tag",{"name":17,"slug":18,"type":15},"Configuration","configuration",{"name":20,"slug":21,"type":15},"Database","database",3,"https:\u002F\u002Fgithub.com\u002Fcockroachdb\u002Fclaude-plugin","2026-07-12T07:57:09.469147",null,2,[28,29,8,30],"claude","cockroach-cloud","developer-tools",{"repoUrl":23,"stars":22,"forks":26,"topics":32,"description":33},[28,29,8,30],"CockroachDB development plugin for Claude","https:\u002F\u002Fgithub.com\u002Fcockroachdb\u002Fclaude-plugin\u002Ftree\u002FHEAD\u002Fskills\u002Fcockroachdb-operations-and-lifecycle\u002Fmanaging-cluster-settings","---\nname: managing-cluster-settings\ndescription: Reviews, audits, and modifies CockroachDB cluster settings. Self-Hosted has full control over all settings and start flags. Advanced\u002FBYOC can modify most SQL-level settings but infrastructure settings are managed by CRL. Standard has limited settings access — session variables are the primary tuning mechanism. Basic has minimal settings — use session variables and Cloud Console. Use when auditing configuration, tuning performance, or troubleshooting settings-related issues.\ncompatibility: Self-Hosted has full control with admin role. Advanced\u002FBYOC can modify most settings. Standard has limited SET CLUSTER SETTING access. Basic has minimal access. All tiers support SHOW CLUSTER SETTING for visible settings.\nmetadata:\n  author: cockroachdb\n  version: \"2.0\"\n---\n\n# Managing Cluster Settings\n\nReviews, audits, and modifies CockroachDB cluster settings. Before providing procedures, this skill gathers context to determine which settings are available and which modification approach to recommend for the operator's tier.\n\n## When to Use This Skill\n\n- Auditing cluster configuration for production readiness\n- Identifying settings that deviate from defaults\n- Tuning performance, replication, or admission control\n- Verifying settings after an upgrade or incident\n- Understanding which settings are modifiable on your tier\n- Managing enterprise license installation and renewal (Self-Hosted)\n\n**For version management:** Use [upgrading-cluster-version](..\u002Fupgrading-cluster-version\u002FSKILL.md) — do not change settings during an upgrade.\n**For health checks:** Use [reviewing-cluster-health](..\u002Freviewing-cluster-health\u002FSKILL.md).\n\n---\n\n## Step 1: Gather Context\n\n### Required Context\n\n| Question | Options | Why It Matters |\n|----------|---------|----------------|\n| **Deployment tier?** | Self-Hosted, Advanced, BYOC, Standard, Basic | Determines which settings are viewable and modifiable |\n| **Goal?** | Audit\u002Freview, Tune performance, Fix specific issue, Post-upgrade verification | Directs which queries and procedures to use |\n\n### Additional Context (by tier)\n\n**If Self-Hosted:**\n\n| Question | Options | Why It Matters |\n|----------|---------|----------------|\n| **SQL access level?** | admin, MODIFYCLUSTERSETTING, VIEWCLUSTERSETTING | Determines available operations |\n| **Specific setting or area?** | e.g., \"timeout\", \"replication\", \"gc\" | Narrows search to relevant settings |\n| **Currently mid-upgrade?** | Yes, No | Settings must NOT be changed during rolling upgrades |\n\n**If Advanced or BYOC:**\n\n| Question | Options | Why It Matters |\n|----------|---------|----------------|\n| **SQL access level?** | admin, limited | Determines available operations |\n| **Specific setting or area?** | e.g., \"timeout\", \"rangefeed\" | Narrows search |\n\n**If Standard or Basic:** No additional context needed — settings access is limited. Session variables are the primary tuning mechanism.\n\n### Context-Driven Routing\n\n| Tier | Settings Access | Go To |\n|------|----------------|-------|\n| Self-Hosted | Full | [Self-Hosted Settings](#self-hosted-settings) |\n| Advanced \u002F BYOC | Most (some restricted) | [Advanced \u002F BYOC Settings](#advanced--byoc-settings) |\n| Standard | Limited | [Standard Settings](#standard-settings) |\n| Basic | Minimal | [Basic Settings](#basic-settings) |\n\n---\n\n## Audit Queries (All Tiers)\n\nThese read-only queries work on Self-Hosted and Advanced\u002FBYOC. Standard and Basic may have restricted visibility — see tier-specific sections below.\n\n### Non-Default Settings\n\n```sql\nSELECT variable, value, setting_type, description\nFROM [SHOW ALL CLUSTER SETTINGS]\nWHERE value != default_value ORDER BY variable;\n```\n\n### Production-Critical Settings\n\n```sql\nSELECT variable, value FROM [SHOW ALL CLUSTER SETTINGS]\nWHERE variable IN (\n  'kv.rangefeed.enabled', 'sql.stats.automatic_collection.enabled',\n  'server.time_until_store_dead', 'admission.kv.enabled',\n  'cluster.preserve_downgrade_option',\n  'sql.defaults.idle_in_transaction_session_timeout'\n) ORDER BY variable;\n```\n\n`gc.ttlseconds` is a zone-config parameter, not a cluster setting; check with `SHOW ZONE CONFIGURATION FOR ...` against the relevant table\u002Fdatabase\u002Frange.\n\n### Search by Keyword\n\n```sql\nSELECT variable, value, description FROM [SHOW ALL CLUSTER SETTINGS]\nWHERE variable LIKE '%\u003Ckeyword>%' OR description LIKE '%\u003Ckeyword>%'\nORDER BY variable;\n```\n\nSee [sql-queries reference](references\u002Fsql-queries.md) for additional audit queries.\nSee [recommended-values reference](references\u002Frecommended-values.md) for production-recommended settings.\n\n---\n\n## Self-Hosted Settings\n\n**Applies when:** Tier = Self-Hosted\n\nFull control over all cluster settings and node-level start flags.\n\n### Modify a Setting\n\n```sql\nSHOW CLUSTER SETTING \u003Cname>;          -- Document current value first\nSET CLUSTER SETTING \u003Cname> = \u003Cvalue>; -- Apply\nSHOW CLUSTER SETTING \u003Cname>;          -- Verify\n```\n\n### Reset to Default\n\n```sql\nRESET CLUSTER SETTING \u003Cname>;\n```\n\n### Node-Level Settings (require node restart)\n\nNode-level settings are `cockroach start` flags and cannot be changed at runtime. To change: drain the node, stop the process, update flags, restart. See [performing-cluster-maintenance](..\u002Fperforming-cluster-maintenance\u002FSKILL.md).\n\nSee [node-level-settings reference](references\u002Fnode-level-settings.md) for the complete list of start flags.\n\n### License Management\n\nCockroachDB Self-Hosted requires an enterprise license for features like backup\u002Frestore, changefeeds, encryption at rest, and multi-region capabilities. The license is stored as a cluster setting.\n\n**Check current license:**\n```sql\nSHOW CLUSTER SETTING cluster.organization;\nSHOW CLUSTER SETTING enterprise.license;\n```\n\n**Install or renew a license:**\n```sql\nSET CLUSTER SETTING cluster.organization = '\u003Corganization-name>';\nSET CLUSTER SETTING enterprise.license = '\u003Clicense-key>';\n```\n\n**Verify license is active:**\n```sql\nSELECT * FROM [SHOW CLUSTER SETTING enterprise.license];\n```\n\n**License expiry:** Expired licenses do not cause data loss or cluster unavailability. Enterprise features (backups, CDC, EAR) stop working until renewed. Core features remain available. Monitor license expiry proactively.\n\n**CockroachDB Core (free):** If running without an enterprise license, no license management is needed. Core features are always available.\n\n---\n\n## Advanced \u002F BYOC Settings\n\n**Applies when:** Tier = Advanced or BYOC\n\nMost SQL-level cluster settings are modifiable. Infrastructure-level settings are managed by Cockroach Labs.\n\n### Modifiable (common examples)\n\n```sql\nSET CLUSTER SETTING sql.defaults.idle_in_transaction_session_timeout = '300s';\nSET CLUSTER SETTING sql.defaults.statement_timeout = '30s';\nSET CLUSTER SETTING kv.rangefeed.enabled = true;\n-- gc.ttlseconds is a zone configuration parameter, not a cluster setting\nALTER RANGE default CONFIGURE ZONE USING gc.ttlseconds = 86400;\n```\n\n### Restricted (managed by CRL)\n\nSettings managed by Cockroach Labs that cannot be modified:\n- `server.time_until_store_dead`\n- `kv.snapshot_rebalance.max_rate`\n- `cluster.preserve_downgrade_option` (use Cloud Console for upgrades)\n- Node-level flags (`--cache`, `--max-sql-memory`) — managed by CRL\n\nIf a modification is rejected, the error will indicate the setting is managed by CockroachDB Cloud. Use Cloud Console or contact support.\n\n**License:** Enterprise license is managed automatically by Cockroach Labs on Advanced\u002FBYOC. No customer action needed.\n\nSee [cloud-restricted-settings reference](references\u002Fcloud-restricted-settings.md) for the full list.\n\n---\n\n## Standard Settings\n\n**Applies when:** Tier = Standard\n\nStandard is a multi-tenant managed service. Most cluster settings are not modifiable because changes could affect other tenants. Use **session variables** as the primary tuning mechanism.\n\n### Session Variables (recommended approach)\n\n```sql\n-- Per-session\nSET statement_timeout = '30s';\n\n-- Default for all sessions (preferred over sql.defaults.*)\nALTER ROLE ALL SET statement_timeout = '30s';\nALTER ROLE ALL SET idle_in_transaction_session_timeout = '300s';\n```\n\n### What You Can Configure\n\n- Session-level timeouts and defaults via `SET` and `ALTER ROLE`\n- SQL-level behavior through session variables\n\n### What Is Managed by CRL\n\n- All infrastructure settings (replication, admission control, storage)\n- Compute and networking — configured via Cloud Console\n\n**Note:** `SHOW ALL CLUSTER SETTINGS` may return a limited set of settings on Standard.\n\n---\n\n## Basic Settings\n\n**Applies when:** Tier = Basic\n\nBasic is a serverless offering with minimal settings access. Infrastructure is fully managed and auto-scales. Use session variables for SQL-level tuning.\n\n### Session Variables\n\n```sql\nSET statement_timeout = '30s';\nALTER ROLE ALL SET statement_timeout = '30s';\n```\n\n### Cloud Console Configuration\n\n- Spending limits\n- IP allowlists\n- Region selection\n\nAll other configuration is managed by Cockroach Labs. If more control over settings is needed, consider upgrading to Standard or Advanced.\n\n---\n\n## Safety Considerations\n\n**Read-only queries are safe on all tiers.**\n\n**Before modifying any setting:**\n1. Document the current value (for rollback)\n2. Verify you are NOT mid-upgrade\n3. Understand the impact (check `description` field)\n4. Change one setting at a time\n5. Monitor for 15-30 minutes before making additional changes\n\n**Risk levels:**\n- **Low:** `sql.defaults.statement_timeout`, `diagnostics.reporting.enabled`\n- **Medium:** `kv.snapshot_rebalance.max_rate`, `gc.ttlseconds` (zone-config parameter — same risk class)\n- **High:** `cluster.preserve_downgrade_option`, `admission.kv.enabled`\n\n**Critical:** Never change settings during a rolling upgrade. Cluster settings affect ALL workloads on the cluster — prefer session variables for narrower scope when possible.\n\nSee [safety-guide reference](references\u002Fsafety-guide.md) for detailed risk assessments per setting.\n\n## Troubleshooting\n\n| Issue | Tier | Fix |\n|-------|------|-----|\n| \"permission denied\" on SET | SH\u002FADV\u002FBYOC | Grant MODIFYCLUSTERSETTING or use admin role |\n| \"managed by Cloud\" error | ADV\u002FBYOC | Setting restricted on this tier; use Cloud Console or contact support |\n| Setting not visible | STD\u002FBAS | Expected — limited settings visibility on multi-tenant\u002Fserverless tiers |\n| No visible effect | SH\u002FADV\u002FBYOC | Check for session variable override; verify with SHOW |\n| Setting reverted after upgrade | SH | Re-apply; document in operational runbook |\n| Enterprise features stopped working | SH | License expired; renew with SET CLUSTER SETTING enterprise.license |\n| \"enterprise license required\" error | SH | Install license or use core-only alternative |\n\n## References\n\n**Skill references:**\n- [SQL audit queries](references\u002Fsql-queries.md)\n- [Recommended production values](references\u002Frecommended-values.md)\n- [Node-level settings (start flags)](references\u002Fnode-level-settings.md)\n- [Cloud-restricted settings](references\u002Fcloud-restricted-settings.md)\n- [Safety guide](references\u002Fsafety-guide.md)\n\n**Related skills:**\n- [reviewing-cluster-health](..\u002Freviewing-cluster-health\u002FSKILL.md)\n- [upgrading-cluster-version](..\u002Fupgrading-cluster-version\u002FSKILL.md)\n\n**Official CockroachDB Documentation:**\n- [Cluster Settings](https:\u002F\u002Fwww.cockroachlabs.com\u002Fdocs\u002Fstable\u002Fcluster-settings)\n- [SET CLUSTER SETTING](https:\u002F\u002Fwww.cockroachlabs.com\u002Fdocs\u002Fstable\u002Fset-cluster-setting)\n- [Production Checklist](https:\u002F\u002Fwww.cockroachlabs.com\u002Fdocs\u002Fstable\u002Frecommended-production-settings)\n",{"data":37,"body":41},{"name":4,"description":6,"compatibility":38,"metadata":39},"Self-Hosted has full control with admin role. Advanced\u002FBYOC can modify most settings. Standard has limited SET CLUSTER SETTING access. Basic has minimal access. All tiers support SHOW CLUSTER SETTING for visible settings.",{"author":8,"version":40},"2.0",{"type":42,"children":43},"root",[44,52,58,65,100,134,138,144,151,226,232,240,327,335,398,408,414,529,532,538,543,549,588,594,661,680,686,717,738,741,746,756,761,767,798,804,818,824,844,856,862,867,875,898,906,929,937,951,961,971,974,979,988,993,999,1046,1052,1057,1110,1115,1125,1137,1140,1145,1154,1166,1172,1228,1234,1261,1267,1280,1298,1301,1306,1315,1320,1326,1347,1353,1371,1376,1379,1385,1393,1401,1438,1446,1514,1524,1536,1542,1691,1697,1705,1748,1756,1773,1781,1815],{"type":45,"tag":46,"props":47,"children":48},"element","h1",{"id":4},[49],{"type":50,"value":51},"text","Managing Cluster Settings",{"type":45,"tag":53,"props":54,"children":55},"p",{},[56],{"type":50,"value":57},"Reviews, audits, and modifies CockroachDB cluster settings. Before providing procedures, this skill gathers context to determine which settings are available and which modification approach to recommend for the operator's tier.",{"type":45,"tag":59,"props":60,"children":62},"h2",{"id":61},"when-to-use-this-skill",[63],{"type":50,"value":64},"When to Use This Skill",{"type":45,"tag":66,"props":67,"children":68},"ul",{},[69,75,80,85,90,95],{"type":45,"tag":70,"props":71,"children":72},"li",{},[73],{"type":50,"value":74},"Auditing cluster configuration for production readiness",{"type":45,"tag":70,"props":76,"children":77},{},[78],{"type":50,"value":79},"Identifying settings that deviate from defaults",{"type":45,"tag":70,"props":81,"children":82},{},[83],{"type":50,"value":84},"Tuning performance, replication, or admission control",{"type":45,"tag":70,"props":86,"children":87},{},[88],{"type":50,"value":89},"Verifying settings after an upgrade or incident",{"type":45,"tag":70,"props":91,"children":92},{},[93],{"type":50,"value":94},"Understanding which settings are modifiable on your tier",{"type":45,"tag":70,"props":96,"children":97},{},[98],{"type":50,"value":99},"Managing enterprise license installation and renewal (Self-Hosted)",{"type":45,"tag":53,"props":101,"children":102},{},[103,109,111,118,120,125,126,132],{"type":45,"tag":104,"props":105,"children":106},"strong",{},[107],{"type":50,"value":108},"For version management:",{"type":50,"value":110}," Use ",{"type":45,"tag":112,"props":113,"children":115},"a",{"href":114},"..\u002Fupgrading-cluster-version\u002FSKILL.md",[116],{"type":50,"value":117},"upgrading-cluster-version",{"type":50,"value":119}," — do not change settings during an upgrade.\n",{"type":45,"tag":104,"props":121,"children":122},{},[123],{"type":50,"value":124},"For health checks:",{"type":50,"value":110},{"type":45,"tag":112,"props":127,"children":129},{"href":128},"..\u002Freviewing-cluster-health\u002FSKILL.md",[130],{"type":50,"value":131},"reviewing-cluster-health",{"type":50,"value":133},".",{"type":45,"tag":135,"props":136,"children":137},"hr",{},[],{"type":45,"tag":59,"props":139,"children":141},{"id":140},"step-1-gather-context",[142],{"type":50,"value":143},"Step 1: Gather Context",{"type":45,"tag":145,"props":146,"children":148},"h3",{"id":147},"required-context",[149],{"type":50,"value":150},"Required Context",{"type":45,"tag":152,"props":153,"children":154},"table",{},[155,179],{"type":45,"tag":156,"props":157,"children":158},"thead",{},[159],{"type":45,"tag":160,"props":161,"children":162},"tr",{},[163,169,174],{"type":45,"tag":164,"props":165,"children":166},"th",{},[167],{"type":50,"value":168},"Question",{"type":45,"tag":164,"props":170,"children":171},{},[172],{"type":50,"value":173},"Options",{"type":45,"tag":164,"props":175,"children":176},{},[177],{"type":50,"value":178},"Why It Matters",{"type":45,"tag":180,"props":181,"children":182},"tbody",{},[183,205],{"type":45,"tag":160,"props":184,"children":185},{},[186,195,200],{"type":45,"tag":187,"props":188,"children":189},"td",{},[190],{"type":45,"tag":104,"props":191,"children":192},{},[193],{"type":50,"value":194},"Deployment tier?",{"type":45,"tag":187,"props":196,"children":197},{},[198],{"type":50,"value":199},"Self-Hosted, Advanced, BYOC, Standard, Basic",{"type":45,"tag":187,"props":201,"children":202},{},[203],{"type":50,"value":204},"Determines which settings are viewable and modifiable",{"type":45,"tag":160,"props":206,"children":207},{},[208,216,221],{"type":45,"tag":187,"props":209,"children":210},{},[211],{"type":45,"tag":104,"props":212,"children":213},{},[214],{"type":50,"value":215},"Goal?",{"type":45,"tag":187,"props":217,"children":218},{},[219],{"type":50,"value":220},"Audit\u002Freview, Tune performance, Fix specific issue, Post-upgrade verification",{"type":45,"tag":187,"props":222,"children":223},{},[224],{"type":50,"value":225},"Directs which queries and procedures to use",{"type":45,"tag":145,"props":227,"children":229},{"id":228},"additional-context-by-tier",[230],{"type":50,"value":231},"Additional Context (by tier)",{"type":45,"tag":53,"props":233,"children":234},{},[235],{"type":45,"tag":104,"props":236,"children":237},{},[238],{"type":50,"value":239},"If Self-Hosted:",{"type":45,"tag":152,"props":241,"children":242},{},[243,261],{"type":45,"tag":156,"props":244,"children":245},{},[246],{"type":45,"tag":160,"props":247,"children":248},{},[249,253,257],{"type":45,"tag":164,"props":250,"children":251},{},[252],{"type":50,"value":168},{"type":45,"tag":164,"props":254,"children":255},{},[256],{"type":50,"value":173},{"type":45,"tag":164,"props":258,"children":259},{},[260],{"type":50,"value":178},{"type":45,"tag":180,"props":262,"children":263},{},[264,285,306],{"type":45,"tag":160,"props":265,"children":266},{},[267,275,280],{"type":45,"tag":187,"props":268,"children":269},{},[270],{"type":45,"tag":104,"props":271,"children":272},{},[273],{"type":50,"value":274},"SQL access level?",{"type":45,"tag":187,"props":276,"children":277},{},[278],{"type":50,"value":279},"admin, MODIFYCLUSTERSETTING, VIEWCLUSTERSETTING",{"type":45,"tag":187,"props":281,"children":282},{},[283],{"type":50,"value":284},"Determines available operations",{"type":45,"tag":160,"props":286,"children":287},{},[288,296,301],{"type":45,"tag":187,"props":289,"children":290},{},[291],{"type":45,"tag":104,"props":292,"children":293},{},[294],{"type":50,"value":295},"Specific setting or area?",{"type":45,"tag":187,"props":297,"children":298},{},[299],{"type":50,"value":300},"e.g., \"timeout\", \"replication\", \"gc\"",{"type":45,"tag":187,"props":302,"children":303},{},[304],{"type":50,"value":305},"Narrows search to relevant settings",{"type":45,"tag":160,"props":307,"children":308},{},[309,317,322],{"type":45,"tag":187,"props":310,"children":311},{},[312],{"type":45,"tag":104,"props":313,"children":314},{},[315],{"type":50,"value":316},"Currently mid-upgrade?",{"type":45,"tag":187,"props":318,"children":319},{},[320],{"type":50,"value":321},"Yes, No",{"type":45,"tag":187,"props":323,"children":324},{},[325],{"type":50,"value":326},"Settings must NOT be changed during rolling upgrades",{"type":45,"tag":53,"props":328,"children":329},{},[330],{"type":45,"tag":104,"props":331,"children":332},{},[333],{"type":50,"value":334},"If Advanced or BYOC:",{"type":45,"tag":152,"props":336,"children":337},{},[338,356],{"type":45,"tag":156,"props":339,"children":340},{},[341],{"type":45,"tag":160,"props":342,"children":343},{},[344,348,352],{"type":45,"tag":164,"props":345,"children":346},{},[347],{"type":50,"value":168},{"type":45,"tag":164,"props":349,"children":350},{},[351],{"type":50,"value":173},{"type":45,"tag":164,"props":353,"children":354},{},[355],{"type":50,"value":178},{"type":45,"tag":180,"props":357,"children":358},{},[359,378],{"type":45,"tag":160,"props":360,"children":361},{},[362,369,374],{"type":45,"tag":187,"props":363,"children":364},{},[365],{"type":45,"tag":104,"props":366,"children":367},{},[368],{"type":50,"value":274},{"type":45,"tag":187,"props":370,"children":371},{},[372],{"type":50,"value":373},"admin, limited",{"type":45,"tag":187,"props":375,"children":376},{},[377],{"type":50,"value":284},{"type":45,"tag":160,"props":379,"children":380},{},[381,388,393],{"type":45,"tag":187,"props":382,"children":383},{},[384],{"type":45,"tag":104,"props":385,"children":386},{},[387],{"type":50,"value":295},{"type":45,"tag":187,"props":389,"children":390},{},[391],{"type":50,"value":392},"e.g., \"timeout\", \"rangefeed\"",{"type":45,"tag":187,"props":394,"children":395},{},[396],{"type":50,"value":397},"Narrows search",{"type":45,"tag":53,"props":399,"children":400},{},[401,406],{"type":45,"tag":104,"props":402,"children":403},{},[404],{"type":50,"value":405},"If Standard or Basic:",{"type":50,"value":407}," No additional context needed — settings access is limited. Session variables are the primary tuning mechanism.",{"type":45,"tag":145,"props":409,"children":411},{"id":410},"context-driven-routing",[412],{"type":50,"value":413},"Context-Driven Routing",{"type":45,"tag":152,"props":415,"children":416},{},[417,438],{"type":45,"tag":156,"props":418,"children":419},{},[420],{"type":45,"tag":160,"props":421,"children":422},{},[423,428,433],{"type":45,"tag":164,"props":424,"children":425},{},[426],{"type":50,"value":427},"Tier",{"type":45,"tag":164,"props":429,"children":430},{},[431],{"type":50,"value":432},"Settings Access",{"type":45,"tag":164,"props":434,"children":435},{},[436],{"type":50,"value":437},"Go To",{"type":45,"tag":180,"props":439,"children":440},{},[441,463,485,507],{"type":45,"tag":160,"props":442,"children":443},{},[444,449,454],{"type":45,"tag":187,"props":445,"children":446},{},[447],{"type":50,"value":448},"Self-Hosted",{"type":45,"tag":187,"props":450,"children":451},{},[452],{"type":50,"value":453},"Full",{"type":45,"tag":187,"props":455,"children":456},{},[457],{"type":45,"tag":112,"props":458,"children":460},{"href":459},"#self-hosted-settings",[461],{"type":50,"value":462},"Self-Hosted Settings",{"type":45,"tag":160,"props":464,"children":465},{},[466,471,476],{"type":45,"tag":187,"props":467,"children":468},{},[469],{"type":50,"value":470},"Advanced \u002F BYOC",{"type":45,"tag":187,"props":472,"children":473},{},[474],{"type":50,"value":475},"Most (some restricted)",{"type":45,"tag":187,"props":477,"children":478},{},[479],{"type":45,"tag":112,"props":480,"children":482},{"href":481},"#advanced--byoc-settings",[483],{"type":50,"value":484},"Advanced \u002F BYOC Settings",{"type":45,"tag":160,"props":486,"children":487},{},[488,493,498],{"type":45,"tag":187,"props":489,"children":490},{},[491],{"type":50,"value":492},"Standard",{"type":45,"tag":187,"props":494,"children":495},{},[496],{"type":50,"value":497},"Limited",{"type":45,"tag":187,"props":499,"children":500},{},[501],{"type":45,"tag":112,"props":502,"children":504},{"href":503},"#standard-settings",[505],{"type":50,"value":506},"Standard Settings",{"type":45,"tag":160,"props":508,"children":509},{},[510,515,520],{"type":45,"tag":187,"props":511,"children":512},{},[513],{"type":50,"value":514},"Basic",{"type":45,"tag":187,"props":516,"children":517},{},[518],{"type":50,"value":519},"Minimal",{"type":45,"tag":187,"props":521,"children":522},{},[523],{"type":45,"tag":112,"props":524,"children":526},{"href":525},"#basic-settings",[527],{"type":50,"value":528},"Basic Settings",{"type":45,"tag":135,"props":530,"children":531},{},[],{"type":45,"tag":59,"props":533,"children":535},{"id":534},"audit-queries-all-tiers",[536],{"type":50,"value":537},"Audit Queries (All Tiers)",{"type":45,"tag":53,"props":539,"children":540},{},[541],{"type":50,"value":542},"These read-only queries work on Self-Hosted and Advanced\u002FBYOC. Standard and Basic may have restricted visibility — see tier-specific sections below.",{"type":45,"tag":145,"props":544,"children":546},{"id":545},"non-default-settings",[547],{"type":50,"value":548},"Non-Default Settings",{"type":45,"tag":550,"props":551,"children":556},"pre",{"className":552,"code":553,"language":554,"meta":555,"style":555},"language-sql shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","SELECT variable, value, setting_type, description\nFROM [SHOW ALL CLUSTER SETTINGS]\nWHERE value != default_value ORDER BY variable;\n","sql","",[557],{"type":45,"tag":558,"props":559,"children":560},"code",{"__ignoreMap":555},[561,572,580],{"type":45,"tag":562,"props":563,"children":566},"span",{"class":564,"line":565},"line",1,[567],{"type":45,"tag":562,"props":568,"children":569},{},[570],{"type":50,"value":571},"SELECT variable, value, setting_type, description\n",{"type":45,"tag":562,"props":573,"children":574},{"class":564,"line":26},[575],{"type":45,"tag":562,"props":576,"children":577},{},[578],{"type":50,"value":579},"FROM [SHOW ALL CLUSTER SETTINGS]\n",{"type":45,"tag":562,"props":581,"children":582},{"class":564,"line":22},[583],{"type":45,"tag":562,"props":584,"children":585},{},[586],{"type":50,"value":587},"WHERE value != default_value ORDER BY variable;\n",{"type":45,"tag":145,"props":589,"children":591},{"id":590},"production-critical-settings",[592],{"type":50,"value":593},"Production-Critical Settings",{"type":45,"tag":550,"props":595,"children":597},{"className":552,"code":596,"language":554,"meta":555,"style":555},"SELECT variable, value FROM [SHOW ALL CLUSTER SETTINGS]\nWHERE variable IN (\n  'kv.rangefeed.enabled', 'sql.stats.automatic_collection.enabled',\n  'server.time_until_store_dead', 'admission.kv.enabled',\n  'cluster.preserve_downgrade_option',\n  'sql.defaults.idle_in_transaction_session_timeout'\n) ORDER BY variable;\n",[598],{"type":45,"tag":558,"props":599,"children":600},{"__ignoreMap":555},[601,609,617,625,634,643,652],{"type":45,"tag":562,"props":602,"children":603},{"class":564,"line":565},[604],{"type":45,"tag":562,"props":605,"children":606},{},[607],{"type":50,"value":608},"SELECT variable, value FROM [SHOW ALL CLUSTER SETTINGS]\n",{"type":45,"tag":562,"props":610,"children":611},{"class":564,"line":26},[612],{"type":45,"tag":562,"props":613,"children":614},{},[615],{"type":50,"value":616},"WHERE variable IN (\n",{"type":45,"tag":562,"props":618,"children":619},{"class":564,"line":22},[620],{"type":45,"tag":562,"props":621,"children":622},{},[623],{"type":50,"value":624},"  'kv.rangefeed.enabled', 'sql.stats.automatic_collection.enabled',\n",{"type":45,"tag":562,"props":626,"children":628},{"class":564,"line":627},4,[629],{"type":45,"tag":562,"props":630,"children":631},{},[632],{"type":50,"value":633},"  'server.time_until_store_dead', 'admission.kv.enabled',\n",{"type":45,"tag":562,"props":635,"children":637},{"class":564,"line":636},5,[638],{"type":45,"tag":562,"props":639,"children":640},{},[641],{"type":50,"value":642},"  'cluster.preserve_downgrade_option',\n",{"type":45,"tag":562,"props":644,"children":646},{"class":564,"line":645},6,[647],{"type":45,"tag":562,"props":648,"children":649},{},[650],{"type":50,"value":651},"  'sql.defaults.idle_in_transaction_session_timeout'\n",{"type":45,"tag":562,"props":653,"children":655},{"class":564,"line":654},7,[656],{"type":45,"tag":562,"props":657,"children":658},{},[659],{"type":50,"value":660},") ORDER BY variable;\n",{"type":45,"tag":53,"props":662,"children":663},{},[664,670,672,678],{"type":45,"tag":558,"props":665,"children":667},{"className":666},[],[668],{"type":50,"value":669},"gc.ttlseconds",{"type":50,"value":671}," is a zone-config parameter, not a cluster setting; check with ",{"type":45,"tag":558,"props":673,"children":675},{"className":674},[],[676],{"type":50,"value":677},"SHOW ZONE CONFIGURATION FOR ...",{"type":50,"value":679}," against the relevant table\u002Fdatabase\u002Frange.",{"type":45,"tag":145,"props":681,"children":683},{"id":682},"search-by-keyword",[684],{"type":50,"value":685},"Search by Keyword",{"type":45,"tag":550,"props":687,"children":689},{"className":552,"code":688,"language":554,"meta":555,"style":555},"SELECT variable, value, description FROM [SHOW ALL CLUSTER SETTINGS]\nWHERE variable LIKE '%\u003Ckeyword>%' OR description LIKE '%\u003Ckeyword>%'\nORDER BY variable;\n",[690],{"type":45,"tag":558,"props":691,"children":692},{"__ignoreMap":555},[693,701,709],{"type":45,"tag":562,"props":694,"children":695},{"class":564,"line":565},[696],{"type":45,"tag":562,"props":697,"children":698},{},[699],{"type":50,"value":700},"SELECT variable, value, description FROM [SHOW ALL CLUSTER SETTINGS]\n",{"type":45,"tag":562,"props":702,"children":703},{"class":564,"line":26},[704],{"type":45,"tag":562,"props":705,"children":706},{},[707],{"type":50,"value":708},"WHERE variable LIKE '%\u003Ckeyword>%' OR description LIKE '%\u003Ckeyword>%'\n",{"type":45,"tag":562,"props":710,"children":711},{"class":564,"line":22},[712],{"type":45,"tag":562,"props":713,"children":714},{},[715],{"type":50,"value":716},"ORDER BY variable;\n",{"type":45,"tag":53,"props":718,"children":719},{},[720,722,728,730,736],{"type":50,"value":721},"See ",{"type":45,"tag":112,"props":723,"children":725},{"href":724},"references\u002Fsql-queries.md",[726],{"type":50,"value":727},"sql-queries reference",{"type":50,"value":729}," for additional audit queries.\nSee ",{"type":45,"tag":112,"props":731,"children":733},{"href":732},"references\u002Frecommended-values.md",[734],{"type":50,"value":735},"recommended-values reference",{"type":50,"value":737}," for production-recommended settings.",{"type":45,"tag":135,"props":739,"children":740},{},[],{"type":45,"tag":59,"props":742,"children":744},{"id":743},"self-hosted-settings",[745],{"type":50,"value":462},{"type":45,"tag":53,"props":747,"children":748},{},[749,754],{"type":45,"tag":104,"props":750,"children":751},{},[752],{"type":50,"value":753},"Applies when:",{"type":50,"value":755}," Tier = Self-Hosted",{"type":45,"tag":53,"props":757,"children":758},{},[759],{"type":50,"value":760},"Full control over all cluster settings and node-level start flags.",{"type":45,"tag":145,"props":762,"children":764},{"id":763},"modify-a-setting",[765],{"type":50,"value":766},"Modify a Setting",{"type":45,"tag":550,"props":768,"children":770},{"className":552,"code":769,"language":554,"meta":555,"style":555},"SHOW CLUSTER SETTING \u003Cname>;          -- Document current value first\nSET CLUSTER SETTING \u003Cname> = \u003Cvalue>; -- Apply\nSHOW CLUSTER SETTING \u003Cname>;          -- Verify\n",[771],{"type":45,"tag":558,"props":772,"children":773},{"__ignoreMap":555},[774,782,790],{"type":45,"tag":562,"props":775,"children":776},{"class":564,"line":565},[777],{"type":45,"tag":562,"props":778,"children":779},{},[780],{"type":50,"value":781},"SHOW CLUSTER SETTING \u003Cname>;          -- Document current value first\n",{"type":45,"tag":562,"props":783,"children":784},{"class":564,"line":26},[785],{"type":45,"tag":562,"props":786,"children":787},{},[788],{"type":50,"value":789},"SET CLUSTER SETTING \u003Cname> = \u003Cvalue>; -- Apply\n",{"type":45,"tag":562,"props":791,"children":792},{"class":564,"line":22},[793],{"type":45,"tag":562,"props":794,"children":795},{},[796],{"type":50,"value":797},"SHOW CLUSTER SETTING \u003Cname>;          -- Verify\n",{"type":45,"tag":145,"props":799,"children":801},{"id":800},"reset-to-default",[802],{"type":50,"value":803},"Reset to Default",{"type":45,"tag":550,"props":805,"children":807},{"className":552,"code":806,"language":554,"meta":555,"style":555},"RESET CLUSTER SETTING \u003Cname>;\n",[808],{"type":45,"tag":558,"props":809,"children":810},{"__ignoreMap":555},[811],{"type":45,"tag":562,"props":812,"children":813},{"class":564,"line":565},[814],{"type":45,"tag":562,"props":815,"children":816},{},[817],{"type":50,"value":806},{"type":45,"tag":145,"props":819,"children":821},{"id":820},"node-level-settings-require-node-restart",[822],{"type":50,"value":823},"Node-Level Settings (require node restart)",{"type":45,"tag":53,"props":825,"children":826},{},[827,829,835,837,843],{"type":50,"value":828},"Node-level settings are ",{"type":45,"tag":558,"props":830,"children":832},{"className":831},[],[833],{"type":50,"value":834},"cockroach start",{"type":50,"value":836}," flags and cannot be changed at runtime. To change: drain the node, stop the process, update flags, restart. See ",{"type":45,"tag":112,"props":838,"children":840},{"href":839},"..\u002Fperforming-cluster-maintenance\u002FSKILL.md",[841],{"type":50,"value":842},"performing-cluster-maintenance",{"type":50,"value":133},{"type":45,"tag":53,"props":845,"children":846},{},[847,848,854],{"type":50,"value":721},{"type":45,"tag":112,"props":849,"children":851},{"href":850},"references\u002Fnode-level-settings.md",[852],{"type":50,"value":853},"node-level-settings reference",{"type":50,"value":855}," for the complete list of start flags.",{"type":45,"tag":145,"props":857,"children":859},{"id":858},"license-management",[860],{"type":50,"value":861},"License Management",{"type":45,"tag":53,"props":863,"children":864},{},[865],{"type":50,"value":866},"CockroachDB Self-Hosted requires an enterprise license for features like backup\u002Frestore, changefeeds, encryption at rest, and multi-region capabilities. The license is stored as a cluster setting.",{"type":45,"tag":53,"props":868,"children":869},{},[870],{"type":45,"tag":104,"props":871,"children":872},{},[873],{"type":50,"value":874},"Check current license:",{"type":45,"tag":550,"props":876,"children":878},{"className":552,"code":877,"language":554,"meta":555,"style":555},"SHOW CLUSTER SETTING cluster.organization;\nSHOW CLUSTER SETTING enterprise.license;\n",[879],{"type":45,"tag":558,"props":880,"children":881},{"__ignoreMap":555},[882,890],{"type":45,"tag":562,"props":883,"children":884},{"class":564,"line":565},[885],{"type":45,"tag":562,"props":886,"children":887},{},[888],{"type":50,"value":889},"SHOW CLUSTER SETTING cluster.organization;\n",{"type":45,"tag":562,"props":891,"children":892},{"class":564,"line":26},[893],{"type":45,"tag":562,"props":894,"children":895},{},[896],{"type":50,"value":897},"SHOW CLUSTER SETTING enterprise.license;\n",{"type":45,"tag":53,"props":899,"children":900},{},[901],{"type":45,"tag":104,"props":902,"children":903},{},[904],{"type":50,"value":905},"Install or renew a license:",{"type":45,"tag":550,"props":907,"children":909},{"className":552,"code":908,"language":554,"meta":555,"style":555},"SET CLUSTER SETTING cluster.organization = '\u003Corganization-name>';\nSET CLUSTER SETTING enterprise.license = '\u003Clicense-key>';\n",[910],{"type":45,"tag":558,"props":911,"children":912},{"__ignoreMap":555},[913,921],{"type":45,"tag":562,"props":914,"children":915},{"class":564,"line":565},[916],{"type":45,"tag":562,"props":917,"children":918},{},[919],{"type":50,"value":920},"SET CLUSTER SETTING cluster.organization = '\u003Corganization-name>';\n",{"type":45,"tag":562,"props":922,"children":923},{"class":564,"line":26},[924],{"type":45,"tag":562,"props":925,"children":926},{},[927],{"type":50,"value":928},"SET CLUSTER SETTING enterprise.license = '\u003Clicense-key>';\n",{"type":45,"tag":53,"props":930,"children":931},{},[932],{"type":45,"tag":104,"props":933,"children":934},{},[935],{"type":50,"value":936},"Verify license is active:",{"type":45,"tag":550,"props":938,"children":940},{"className":552,"code":939,"language":554,"meta":555,"style":555},"SELECT * FROM [SHOW CLUSTER SETTING enterprise.license];\n",[941],{"type":45,"tag":558,"props":942,"children":943},{"__ignoreMap":555},[944],{"type":45,"tag":562,"props":945,"children":946},{"class":564,"line":565},[947],{"type":45,"tag":562,"props":948,"children":949},{},[950],{"type":50,"value":939},{"type":45,"tag":53,"props":952,"children":953},{},[954,959],{"type":45,"tag":104,"props":955,"children":956},{},[957],{"type":50,"value":958},"License expiry:",{"type":50,"value":960}," Expired licenses do not cause data loss or cluster unavailability. Enterprise features (backups, CDC, EAR) stop working until renewed. Core features remain available. Monitor license expiry proactively.",{"type":45,"tag":53,"props":962,"children":963},{},[964,969],{"type":45,"tag":104,"props":965,"children":966},{},[967],{"type":50,"value":968},"CockroachDB Core (free):",{"type":50,"value":970}," If running without an enterprise license, no license management is needed. Core features are always available.",{"type":45,"tag":135,"props":972,"children":973},{},[],{"type":45,"tag":59,"props":975,"children":977},{"id":976},"advanced-byoc-settings",[978],{"type":50,"value":484},{"type":45,"tag":53,"props":980,"children":981},{},[982,986],{"type":45,"tag":104,"props":983,"children":984},{},[985],{"type":50,"value":753},{"type":50,"value":987}," Tier = Advanced or BYOC",{"type":45,"tag":53,"props":989,"children":990},{},[991],{"type":50,"value":992},"Most SQL-level cluster settings are modifiable. Infrastructure-level settings are managed by Cockroach Labs.",{"type":45,"tag":145,"props":994,"children":996},{"id":995},"modifiable-common-examples",[997],{"type":50,"value":998},"Modifiable (common examples)",{"type":45,"tag":550,"props":1000,"children":1002},{"className":552,"code":1001,"language":554,"meta":555,"style":555},"SET CLUSTER SETTING sql.defaults.idle_in_transaction_session_timeout = '300s';\nSET CLUSTER SETTING sql.defaults.statement_timeout = '30s';\nSET CLUSTER SETTING kv.rangefeed.enabled = true;\n-- gc.ttlseconds is a zone configuration parameter, not a cluster setting\nALTER RANGE default CONFIGURE ZONE USING gc.ttlseconds = 86400;\n",[1003],{"type":45,"tag":558,"props":1004,"children":1005},{"__ignoreMap":555},[1006,1014,1022,1030,1038],{"type":45,"tag":562,"props":1007,"children":1008},{"class":564,"line":565},[1009],{"type":45,"tag":562,"props":1010,"children":1011},{},[1012],{"type":50,"value":1013},"SET CLUSTER SETTING sql.defaults.idle_in_transaction_session_timeout = '300s';\n",{"type":45,"tag":562,"props":1015,"children":1016},{"class":564,"line":26},[1017],{"type":45,"tag":562,"props":1018,"children":1019},{},[1020],{"type":50,"value":1021},"SET CLUSTER SETTING sql.defaults.statement_timeout = '30s';\n",{"type":45,"tag":562,"props":1023,"children":1024},{"class":564,"line":22},[1025],{"type":45,"tag":562,"props":1026,"children":1027},{},[1028],{"type":50,"value":1029},"SET CLUSTER SETTING kv.rangefeed.enabled = true;\n",{"type":45,"tag":562,"props":1031,"children":1032},{"class":564,"line":627},[1033],{"type":45,"tag":562,"props":1034,"children":1035},{},[1036],{"type":50,"value":1037},"-- gc.ttlseconds is a zone configuration parameter, not a cluster setting\n",{"type":45,"tag":562,"props":1039,"children":1040},{"class":564,"line":636},[1041],{"type":45,"tag":562,"props":1042,"children":1043},{},[1044],{"type":50,"value":1045},"ALTER RANGE default CONFIGURE ZONE USING gc.ttlseconds = 86400;\n",{"type":45,"tag":145,"props":1047,"children":1049},{"id":1048},"restricted-managed-by-crl",[1050],{"type":50,"value":1051},"Restricted (managed by CRL)",{"type":45,"tag":53,"props":1053,"children":1054},{},[1055],{"type":50,"value":1056},"Settings managed by Cockroach Labs that cannot be modified:",{"type":45,"tag":66,"props":1058,"children":1059},{},[1060,1069,1078,1089],{"type":45,"tag":70,"props":1061,"children":1062},{},[1063],{"type":45,"tag":558,"props":1064,"children":1066},{"className":1065},[],[1067],{"type":50,"value":1068},"server.time_until_store_dead",{"type":45,"tag":70,"props":1070,"children":1071},{},[1072],{"type":45,"tag":558,"props":1073,"children":1075},{"className":1074},[],[1076],{"type":50,"value":1077},"kv.snapshot_rebalance.max_rate",{"type":45,"tag":70,"props":1079,"children":1080},{},[1081,1087],{"type":45,"tag":558,"props":1082,"children":1084},{"className":1083},[],[1085],{"type":50,"value":1086},"cluster.preserve_downgrade_option",{"type":50,"value":1088}," (use Cloud Console for upgrades)",{"type":45,"tag":70,"props":1090,"children":1091},{},[1092,1094,1100,1102,1108],{"type":50,"value":1093},"Node-level flags (",{"type":45,"tag":558,"props":1095,"children":1097},{"className":1096},[],[1098],{"type":50,"value":1099},"--cache",{"type":50,"value":1101},", ",{"type":45,"tag":558,"props":1103,"children":1105},{"className":1104},[],[1106],{"type":50,"value":1107},"--max-sql-memory",{"type":50,"value":1109},") — managed by CRL",{"type":45,"tag":53,"props":1111,"children":1112},{},[1113],{"type":50,"value":1114},"If a modification is rejected, the error will indicate the setting is managed by CockroachDB Cloud. Use Cloud Console or contact support.",{"type":45,"tag":53,"props":1116,"children":1117},{},[1118,1123],{"type":45,"tag":104,"props":1119,"children":1120},{},[1121],{"type":50,"value":1122},"License:",{"type":50,"value":1124}," Enterprise license is managed automatically by Cockroach Labs on Advanced\u002FBYOC. No customer action needed.",{"type":45,"tag":53,"props":1126,"children":1127},{},[1128,1129,1135],{"type":50,"value":721},{"type":45,"tag":112,"props":1130,"children":1132},{"href":1131},"references\u002Fcloud-restricted-settings.md",[1133],{"type":50,"value":1134},"cloud-restricted-settings reference",{"type":50,"value":1136}," for the full list.",{"type":45,"tag":135,"props":1138,"children":1139},{},[],{"type":45,"tag":59,"props":1141,"children":1143},{"id":1142},"standard-settings",[1144],{"type":50,"value":506},{"type":45,"tag":53,"props":1146,"children":1147},{},[1148,1152],{"type":45,"tag":104,"props":1149,"children":1150},{},[1151],{"type":50,"value":753},{"type":50,"value":1153}," Tier = Standard",{"type":45,"tag":53,"props":1155,"children":1156},{},[1157,1159,1164],{"type":50,"value":1158},"Standard is a multi-tenant managed service. Most cluster settings are not modifiable because changes could affect other tenants. Use ",{"type":45,"tag":104,"props":1160,"children":1161},{},[1162],{"type":50,"value":1163},"session variables",{"type":50,"value":1165}," as the primary tuning mechanism.",{"type":45,"tag":145,"props":1167,"children":1169},{"id":1168},"session-variables-recommended-approach",[1170],{"type":50,"value":1171},"Session Variables (recommended approach)",{"type":45,"tag":550,"props":1173,"children":1175},{"className":552,"code":1174,"language":554,"meta":555,"style":555},"-- Per-session\nSET statement_timeout = '30s';\n\n-- Default for all sessions (preferred over sql.defaults.*)\nALTER ROLE ALL SET statement_timeout = '30s';\nALTER ROLE ALL SET idle_in_transaction_session_timeout = '300s';\n",[1176],{"type":45,"tag":558,"props":1177,"children":1178},{"__ignoreMap":555},[1179,1187,1195,1204,1212,1220],{"type":45,"tag":562,"props":1180,"children":1181},{"class":564,"line":565},[1182],{"type":45,"tag":562,"props":1183,"children":1184},{},[1185],{"type":50,"value":1186},"-- Per-session\n",{"type":45,"tag":562,"props":1188,"children":1189},{"class":564,"line":26},[1190],{"type":45,"tag":562,"props":1191,"children":1192},{},[1193],{"type":50,"value":1194},"SET statement_timeout = '30s';\n",{"type":45,"tag":562,"props":1196,"children":1197},{"class":564,"line":22},[1198],{"type":45,"tag":562,"props":1199,"children":1201},{"emptyLinePlaceholder":1200},true,[1202],{"type":50,"value":1203},"\n",{"type":45,"tag":562,"props":1205,"children":1206},{"class":564,"line":627},[1207],{"type":45,"tag":562,"props":1208,"children":1209},{},[1210],{"type":50,"value":1211},"-- Default for all sessions (preferred over sql.defaults.*)\n",{"type":45,"tag":562,"props":1213,"children":1214},{"class":564,"line":636},[1215],{"type":45,"tag":562,"props":1216,"children":1217},{},[1218],{"type":50,"value":1219},"ALTER ROLE ALL SET statement_timeout = '30s';\n",{"type":45,"tag":562,"props":1221,"children":1222},{"class":564,"line":645},[1223],{"type":45,"tag":562,"props":1224,"children":1225},{},[1226],{"type":50,"value":1227},"ALTER ROLE ALL SET idle_in_transaction_session_timeout = '300s';\n",{"type":45,"tag":145,"props":1229,"children":1231},{"id":1230},"what-you-can-configure",[1232],{"type":50,"value":1233},"What You Can Configure",{"type":45,"tag":66,"props":1235,"children":1236},{},[1237,1256],{"type":45,"tag":70,"props":1238,"children":1239},{},[1240,1242,1248,1250],{"type":50,"value":1241},"Session-level timeouts and defaults via ",{"type":45,"tag":558,"props":1243,"children":1245},{"className":1244},[],[1246],{"type":50,"value":1247},"SET",{"type":50,"value":1249}," and ",{"type":45,"tag":558,"props":1251,"children":1253},{"className":1252},[],[1254],{"type":50,"value":1255},"ALTER ROLE",{"type":45,"tag":70,"props":1257,"children":1258},{},[1259],{"type":50,"value":1260},"SQL-level behavior through session variables",{"type":45,"tag":145,"props":1262,"children":1264},{"id":1263},"what-is-managed-by-crl",[1265],{"type":50,"value":1266},"What Is Managed by CRL",{"type":45,"tag":66,"props":1268,"children":1269},{},[1270,1275],{"type":45,"tag":70,"props":1271,"children":1272},{},[1273],{"type":50,"value":1274},"All infrastructure settings (replication, admission control, storage)",{"type":45,"tag":70,"props":1276,"children":1277},{},[1278],{"type":50,"value":1279},"Compute and networking — configured via Cloud Console",{"type":45,"tag":53,"props":1281,"children":1282},{},[1283,1288,1290,1296],{"type":45,"tag":104,"props":1284,"children":1285},{},[1286],{"type":50,"value":1287},"Note:",{"type":50,"value":1289}," ",{"type":45,"tag":558,"props":1291,"children":1293},{"className":1292},[],[1294],{"type":50,"value":1295},"SHOW ALL CLUSTER SETTINGS",{"type":50,"value":1297}," may return a limited set of settings on Standard.",{"type":45,"tag":135,"props":1299,"children":1300},{},[],{"type":45,"tag":59,"props":1302,"children":1304},{"id":1303},"basic-settings",[1305],{"type":50,"value":528},{"type":45,"tag":53,"props":1307,"children":1308},{},[1309,1313],{"type":45,"tag":104,"props":1310,"children":1311},{},[1312],{"type":50,"value":753},{"type":50,"value":1314}," Tier = Basic",{"type":45,"tag":53,"props":1316,"children":1317},{},[1318],{"type":50,"value":1319},"Basic is a serverless offering with minimal settings access. Infrastructure is fully managed and auto-scales. Use session variables for SQL-level tuning.",{"type":45,"tag":145,"props":1321,"children":1323},{"id":1322},"session-variables",[1324],{"type":50,"value":1325},"Session Variables",{"type":45,"tag":550,"props":1327,"children":1329},{"className":552,"code":1328,"language":554,"meta":555,"style":555},"SET statement_timeout = '30s';\nALTER ROLE ALL SET statement_timeout = '30s';\n",[1330],{"type":45,"tag":558,"props":1331,"children":1332},{"__ignoreMap":555},[1333,1340],{"type":45,"tag":562,"props":1334,"children":1335},{"class":564,"line":565},[1336],{"type":45,"tag":562,"props":1337,"children":1338},{},[1339],{"type":50,"value":1194},{"type":45,"tag":562,"props":1341,"children":1342},{"class":564,"line":26},[1343],{"type":45,"tag":562,"props":1344,"children":1345},{},[1346],{"type":50,"value":1219},{"type":45,"tag":145,"props":1348,"children":1350},{"id":1349},"cloud-console-configuration",[1351],{"type":50,"value":1352},"Cloud Console Configuration",{"type":45,"tag":66,"props":1354,"children":1355},{},[1356,1361,1366],{"type":45,"tag":70,"props":1357,"children":1358},{},[1359],{"type":50,"value":1360},"Spending limits",{"type":45,"tag":70,"props":1362,"children":1363},{},[1364],{"type":50,"value":1365},"IP allowlists",{"type":45,"tag":70,"props":1367,"children":1368},{},[1369],{"type":50,"value":1370},"Region selection",{"type":45,"tag":53,"props":1372,"children":1373},{},[1374],{"type":50,"value":1375},"All other configuration is managed by Cockroach Labs. If more control over settings is needed, consider upgrading to Standard or Advanced.",{"type":45,"tag":135,"props":1377,"children":1378},{},[],{"type":45,"tag":59,"props":1380,"children":1382},{"id":1381},"safety-considerations",[1383],{"type":50,"value":1384},"Safety Considerations",{"type":45,"tag":53,"props":1386,"children":1387},{},[1388],{"type":45,"tag":104,"props":1389,"children":1390},{},[1391],{"type":50,"value":1392},"Read-only queries are safe on all tiers.",{"type":45,"tag":53,"props":1394,"children":1395},{},[1396],{"type":45,"tag":104,"props":1397,"children":1398},{},[1399],{"type":50,"value":1400},"Before modifying any setting:",{"type":45,"tag":1402,"props":1403,"children":1404},"ol",{},[1405,1410,1415,1428,1433],{"type":45,"tag":70,"props":1406,"children":1407},{},[1408],{"type":50,"value":1409},"Document the current value (for rollback)",{"type":45,"tag":70,"props":1411,"children":1412},{},[1413],{"type":50,"value":1414},"Verify you are NOT mid-upgrade",{"type":45,"tag":70,"props":1416,"children":1417},{},[1418,1420,1426],{"type":50,"value":1419},"Understand the impact (check ",{"type":45,"tag":558,"props":1421,"children":1423},{"className":1422},[],[1424],{"type":50,"value":1425},"description",{"type":50,"value":1427}," field)",{"type":45,"tag":70,"props":1429,"children":1430},{},[1431],{"type":50,"value":1432},"Change one setting at a time",{"type":45,"tag":70,"props":1434,"children":1435},{},[1436],{"type":50,"value":1437},"Monitor for 15-30 minutes before making additional changes",{"type":45,"tag":53,"props":1439,"children":1440},{},[1441],{"type":45,"tag":104,"props":1442,"children":1443},{},[1444],{"type":50,"value":1445},"Risk levels:",{"type":45,"tag":66,"props":1447,"children":1448},{},[1449,1471,1493],{"type":45,"tag":70,"props":1450,"children":1451},{},[1452,1457,1458,1464,1465],{"type":45,"tag":104,"props":1453,"children":1454},{},[1455],{"type":50,"value":1456},"Low:",{"type":50,"value":1289},{"type":45,"tag":558,"props":1459,"children":1461},{"className":1460},[],[1462],{"type":50,"value":1463},"sql.defaults.statement_timeout",{"type":50,"value":1101},{"type":45,"tag":558,"props":1466,"children":1468},{"className":1467},[],[1469],{"type":50,"value":1470},"diagnostics.reporting.enabled",{"type":45,"tag":70,"props":1472,"children":1473},{},[1474,1479,1480,1485,1486,1491],{"type":45,"tag":104,"props":1475,"children":1476},{},[1477],{"type":50,"value":1478},"Medium:",{"type":50,"value":1289},{"type":45,"tag":558,"props":1481,"children":1483},{"className":1482},[],[1484],{"type":50,"value":1077},{"type":50,"value":1101},{"type":45,"tag":558,"props":1487,"children":1489},{"className":1488},[],[1490],{"type":50,"value":669},{"type":50,"value":1492}," (zone-config parameter — same risk class)",{"type":45,"tag":70,"props":1494,"children":1495},{},[1496,1501,1502,1507,1508],{"type":45,"tag":104,"props":1497,"children":1498},{},[1499],{"type":50,"value":1500},"High:",{"type":50,"value":1289},{"type":45,"tag":558,"props":1503,"children":1505},{"className":1504},[],[1506],{"type":50,"value":1086},{"type":50,"value":1101},{"type":45,"tag":558,"props":1509,"children":1511},{"className":1510},[],[1512],{"type":50,"value":1513},"admission.kv.enabled",{"type":45,"tag":53,"props":1515,"children":1516},{},[1517,1522],{"type":45,"tag":104,"props":1518,"children":1519},{},[1520],{"type":50,"value":1521},"Critical:",{"type":50,"value":1523}," Never change settings during a rolling upgrade. Cluster settings affect ALL workloads on the cluster — prefer session variables for narrower scope when possible.",{"type":45,"tag":53,"props":1525,"children":1526},{},[1527,1528,1534],{"type":50,"value":721},{"type":45,"tag":112,"props":1529,"children":1531},{"href":1530},"references\u002Fsafety-guide.md",[1532],{"type":50,"value":1533},"safety-guide reference",{"type":50,"value":1535}," for detailed risk assessments per setting.",{"type":45,"tag":59,"props":1537,"children":1539},{"id":1538},"troubleshooting",[1540],{"type":50,"value":1541},"Troubleshooting",{"type":45,"tag":152,"props":1543,"children":1544},{},[1545,1565],{"type":45,"tag":156,"props":1546,"children":1547},{},[1548],{"type":45,"tag":160,"props":1549,"children":1550},{},[1551,1556,1560],{"type":45,"tag":164,"props":1552,"children":1553},{},[1554],{"type":50,"value":1555},"Issue",{"type":45,"tag":164,"props":1557,"children":1558},{},[1559],{"type":50,"value":427},{"type":45,"tag":164,"props":1561,"children":1562},{},[1563],{"type":50,"value":1564},"Fix",{"type":45,"tag":180,"props":1566,"children":1567},{},[1568,1586,1604,1622,1639,1657,1674],{"type":45,"tag":160,"props":1569,"children":1570},{},[1571,1576,1581],{"type":45,"tag":187,"props":1572,"children":1573},{},[1574],{"type":50,"value":1575},"\"permission denied\" on SET",{"type":45,"tag":187,"props":1577,"children":1578},{},[1579],{"type":50,"value":1580},"SH\u002FADV\u002FBYOC",{"type":45,"tag":187,"props":1582,"children":1583},{},[1584],{"type":50,"value":1585},"Grant MODIFYCLUSTERSETTING or use admin role",{"type":45,"tag":160,"props":1587,"children":1588},{},[1589,1594,1599],{"type":45,"tag":187,"props":1590,"children":1591},{},[1592],{"type":50,"value":1593},"\"managed by Cloud\" error",{"type":45,"tag":187,"props":1595,"children":1596},{},[1597],{"type":50,"value":1598},"ADV\u002FBYOC",{"type":45,"tag":187,"props":1600,"children":1601},{},[1602],{"type":50,"value":1603},"Setting restricted on this tier; use Cloud Console or contact support",{"type":45,"tag":160,"props":1605,"children":1606},{},[1607,1612,1617],{"type":45,"tag":187,"props":1608,"children":1609},{},[1610],{"type":50,"value":1611},"Setting not visible",{"type":45,"tag":187,"props":1613,"children":1614},{},[1615],{"type":50,"value":1616},"STD\u002FBAS",{"type":45,"tag":187,"props":1618,"children":1619},{},[1620],{"type":50,"value":1621},"Expected — limited settings visibility on multi-tenant\u002Fserverless tiers",{"type":45,"tag":160,"props":1623,"children":1624},{},[1625,1630,1634],{"type":45,"tag":187,"props":1626,"children":1627},{},[1628],{"type":50,"value":1629},"No visible effect",{"type":45,"tag":187,"props":1631,"children":1632},{},[1633],{"type":50,"value":1580},{"type":45,"tag":187,"props":1635,"children":1636},{},[1637],{"type":50,"value":1638},"Check for session variable override; verify with SHOW",{"type":45,"tag":160,"props":1640,"children":1641},{},[1642,1647,1652],{"type":45,"tag":187,"props":1643,"children":1644},{},[1645],{"type":50,"value":1646},"Setting reverted after upgrade",{"type":45,"tag":187,"props":1648,"children":1649},{},[1650],{"type":50,"value":1651},"SH",{"type":45,"tag":187,"props":1653,"children":1654},{},[1655],{"type":50,"value":1656},"Re-apply; document in operational runbook",{"type":45,"tag":160,"props":1658,"children":1659},{},[1660,1665,1669],{"type":45,"tag":187,"props":1661,"children":1662},{},[1663],{"type":50,"value":1664},"Enterprise features stopped working",{"type":45,"tag":187,"props":1666,"children":1667},{},[1668],{"type":50,"value":1651},{"type":45,"tag":187,"props":1670,"children":1671},{},[1672],{"type":50,"value":1673},"License expired; renew with SET CLUSTER SETTING enterprise.license",{"type":45,"tag":160,"props":1675,"children":1676},{},[1677,1682,1686],{"type":45,"tag":187,"props":1678,"children":1679},{},[1680],{"type":50,"value":1681},"\"enterprise license required\" error",{"type":45,"tag":187,"props":1683,"children":1684},{},[1685],{"type":50,"value":1651},{"type":45,"tag":187,"props":1687,"children":1688},{},[1689],{"type":50,"value":1690},"Install license or use core-only alternative",{"type":45,"tag":59,"props":1692,"children":1694},{"id":1693},"references",[1695],{"type":50,"value":1696},"References",{"type":45,"tag":53,"props":1698,"children":1699},{},[1700],{"type":45,"tag":104,"props":1701,"children":1702},{},[1703],{"type":50,"value":1704},"Skill references:",{"type":45,"tag":66,"props":1706,"children":1707},{},[1708,1716,1724,1732,1740],{"type":45,"tag":70,"props":1709,"children":1710},{},[1711],{"type":45,"tag":112,"props":1712,"children":1713},{"href":724},[1714],{"type":50,"value":1715},"SQL audit queries",{"type":45,"tag":70,"props":1717,"children":1718},{},[1719],{"type":45,"tag":112,"props":1720,"children":1721},{"href":732},[1722],{"type":50,"value":1723},"Recommended production values",{"type":45,"tag":70,"props":1725,"children":1726},{},[1727],{"type":45,"tag":112,"props":1728,"children":1729},{"href":850},[1730],{"type":50,"value":1731},"Node-level settings (start flags)",{"type":45,"tag":70,"props":1733,"children":1734},{},[1735],{"type":45,"tag":112,"props":1736,"children":1737},{"href":1131},[1738],{"type":50,"value":1739},"Cloud-restricted settings",{"type":45,"tag":70,"props":1741,"children":1742},{},[1743],{"type":45,"tag":112,"props":1744,"children":1745},{"href":1530},[1746],{"type":50,"value":1747},"Safety guide",{"type":45,"tag":53,"props":1749,"children":1750},{},[1751],{"type":45,"tag":104,"props":1752,"children":1753},{},[1754],{"type":50,"value":1755},"Related skills:",{"type":45,"tag":66,"props":1757,"children":1758},{},[1759,1766],{"type":45,"tag":70,"props":1760,"children":1761},{},[1762],{"type":45,"tag":112,"props":1763,"children":1764},{"href":128},[1765],{"type":50,"value":131},{"type":45,"tag":70,"props":1767,"children":1768},{},[1769],{"type":45,"tag":112,"props":1770,"children":1771},{"href":114},[1772],{"type":50,"value":117},{"type":45,"tag":53,"props":1774,"children":1775},{},[1776],{"type":45,"tag":104,"props":1777,"children":1778},{},[1779],{"type":50,"value":1780},"Official CockroachDB Documentation:",{"type":45,"tag":66,"props":1782,"children":1783},{},[1784,1795,1805],{"type":45,"tag":70,"props":1785,"children":1786},{},[1787],{"type":45,"tag":112,"props":1788,"children":1792},{"href":1789,"rel":1790},"https:\u002F\u002Fwww.cockroachlabs.com\u002Fdocs\u002Fstable\u002Fcluster-settings",[1791],"nofollow",[1793],{"type":50,"value":1794},"Cluster Settings",{"type":45,"tag":70,"props":1796,"children":1797},{},[1798],{"type":45,"tag":112,"props":1799,"children":1802},{"href":1800,"rel":1801},"https:\u002F\u002Fwww.cockroachlabs.com\u002Fdocs\u002Fstable\u002Fset-cluster-setting",[1791],[1803],{"type":50,"value":1804},"SET CLUSTER SETTING",{"type":45,"tag":70,"props":1806,"children":1807},{},[1808],{"type":45,"tag":112,"props":1809,"children":1812},{"href":1810,"rel":1811},"https:\u002F\u002Fwww.cockroachlabs.com\u002Fdocs\u002Fstable\u002Frecommended-production-settings",[1791],[1813],{"type":50,"value":1814},"Production Checklist",{"type":45,"tag":1816,"props":1817,"children":1818},"style",{},[1819],{"type":50,"value":1820},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1822,"total":1915},[1823,1837,1851,1868,1879,1892,1905],{"slug":1824,"name":1824,"fn":1825,"description":1826,"org":1827,"tags":1828,"stars":22,"repoUrl":23,"updatedAt":1836},"analyzing-range-distribution","analyze CockroachDB range distribution and health","Analyzes CockroachDB range distribution across tables and indexes using SHOW RANGES to identify range count, size patterns, leaseholder placement, and replication health. Use when investigating hotspots, uneven data distribution, range fragmentation, or validating zone configuration effects without DB Console access.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1829,1830,1833],{"name":20,"slug":21,"type":15},{"name":1831,"slug":1832,"type":15},"Monitoring","monitoring",{"name":1834,"slug":1835,"type":15},"Performance","performance","2026-07-12T07:57:18.753533",{"slug":1838,"name":1838,"fn":1839,"description":1840,"org":1841,"tags":1842,"stars":22,"repoUrl":23,"updatedAt":1850},"analyzing-schema-change-storage-risk","analyze schema change storage requirements","Estimates storage requirements for CockroachDB online schema change backfills using SHOW RANGES WITH DETAILS, KEYS, INDEXES. Use before CREATE INDEX, ADD COLUMN with INDEX\u002FUNIQUE, ALTER PRIMARY KEY, CREATE MATERIALIZED VIEW, CREATE TABLE AS, REFRESH, or SET LOCALITY on tables with large per-index footprints, to avoid mid-backfill disk exhaustion.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1843,1846,1847,1848],{"name":1844,"slug":1845,"type":15},"Data Modeling","data-modeling",{"name":20,"slug":21,"type":15},{"name":1834,"slug":1835,"type":15},{"name":1849,"slug":554,"type":15},"SQL","2026-07-12T07:57:22.763788",{"slug":1852,"name":1852,"fn":1853,"description":1854,"org":1855,"tags":1856,"stars":22,"repoUrl":23,"updatedAt":1867},"auditing-cis-benchmark","audit CockroachDB clusters against CIS benchmarks","Audits a self-hosted CockroachDB cluster against the CIS CockroachDB Benchmark v1.0.0 Level 1 controls. Supports two audit depths — quick automated scans and full CIS audit procedures. Produces a structured PASS\u002FFAIL\u002FMANUAL report covering installation, system hardening, logging, user access, data protection, and CockroachDB settings. Use when preparing for CIS compliance assessments, hardening self-hosted deployments, or validating security posture against industry benchmarks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1857,1860,1863,1864],{"name":1858,"slug":1859,"type":15},"Audit","audit",{"name":1861,"slug":1862,"type":15},"Compliance","compliance",{"name":20,"slug":21,"type":15},{"name":1865,"slug":1866,"type":15},"Security","security","2026-07-18T05:48:00.862384",{"slug":1869,"name":1869,"fn":1870,"description":1871,"org":1872,"tags":1873,"stars":22,"repoUrl":23,"updatedAt":1878},"auditing-cloud-cluster-security","audit CockroachDB cluster security posture","Audits the security posture of a CockroachDB cluster (Cloud or self-hosted) across network, authentication, authorization, encryption, audit logging, and backup dimensions. Use when assessing cluster security readiness, preparing for compliance reviews, or investigating security configuration gaps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1874,1875,1876,1877],{"name":1858,"slug":1859,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":1865,"slug":1866,"type":15},"2026-07-12T07:57:01.506735",{"slug":1880,"name":1880,"fn":1881,"description":1882,"org":1883,"tags":1884,"stars":22,"repoUrl":23,"updatedAt":1891},"auditing-table-statistics","audit optimizer table statistics","Audits optimizer table statistics for staleness, missing coverage, and data quality issues using SHOW STATISTICS. Use when diagnosing poor query performance, unexpected plan changes, or after bulk data changes to identify stale statistics requiring refresh via CREATE STATISTICS.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1885,1886,1889,1890],{"name":1858,"slug":1859,"type":15},{"name":1887,"slug":1888,"type":15},"Data Analysis","data-analysis",{"name":20,"slug":21,"type":15},{"name":1834,"slug":1835,"type":15},"2026-07-12T07:57:16.190081",{"slug":1893,"name":1893,"fn":1894,"description":1895,"org":1896,"tags":1897,"stars":22,"repoUrl":23,"updatedAt":1904},"benchmarking-transaction-patterns","benchmark CockroachDB transaction patterns","Guides benchmarking and comparing explicit multi-statement transactions versus single-statement CTE transactions in CockroachDB, with fair test methodology, contention analysis, and performance interpretation. Use when comparing transaction formulations, benchmarking CockroachDB workloads under contention, investigating retry pressure, or deciding whether to rewrite multi-step application flows into single SQL statements.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1898,1899,1902,1903],{"name":20,"slug":21,"type":15},{"name":1900,"slug":1901,"type":15},"Engineering","engineering",{"name":1834,"slug":1835,"type":15},{"name":1849,"slug":554,"type":15},"2026-07-12T07:57:26.543278",{"slug":1906,"name":1906,"fn":1907,"description":1908,"org":1909,"tags":1910,"stars":22,"repoUrl":23,"updatedAt":1914},"cockroachdb-sql","write and optimize CockroachDB SQL","Use when writing, generating, or optimizing SQL for CockroachDB, designing CockroachDB schemas, or when the user asks about CockroachDB-specific SQL patterns, type mappings, and distributed database best practices. Also use when encountering CockroachDB anti-patterns like missing primary keys, sequential ID hotspots, or incorrect type usage.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1911,1912,1913],{"name":20,"slug":21,"type":15},{"name":1834,"slug":1835,"type":15},{"name":1849,"slug":554,"type":15},"2026-07-25T05:31:22.562808",34,{"items":1917,"total":2037},[1918,1935,1949,1964,1975,1985,1996,2002,2009,2016,2023,2030],{"slug":1919,"name":1919,"fn":1920,"description":1921,"org":1922,"tags":1923,"stars":1932,"repoUrl":1933,"updatedAt":1934},"collecting-cockroachdb-operator-escalation-packet","collect CockroachDB operator escalation packets","Collects a complete CockroachDB Operator escalation packet for TSC\u002FTSE or operator-team handoff, including Helm state, Kubernetes resources, logs, operation-specific evidence, pprof goroutine dumps, metrics, and a customer action timeline. Use when general diagnosis cannot resolve an operator-managed CockroachDB Helm issue or before restarting a stuck operator.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1924,1925,1928,1931],{"name":20,"slug":21,"type":15},{"name":1926,"slug":1927,"type":15},"Incident Response","incident-response",{"name":1929,"slug":1930,"type":15},"Kubernetes","kubernetes",{"name":1831,"slug":1832,"type":15},105,"https:\u002F\u002Fgithub.com\u002Fcockroachdb\u002Fhelm-charts","2026-07-12T07:57:25.288146",{"slug":1936,"name":1936,"fn":1937,"description":1938,"org":1939,"tags":1940,"stars":1932,"repoUrl":1933,"updatedAt":1948},"configuring-cockroachdb-helm-tls","configure TLS for CockroachDB Helm charts","Selects and validates TLS settings for CockroachDB Helm chart deployments, including self-signer, cert-manager, and external certificate modes. Use when a customer needs secure CockroachDB Helm values, certificate secret mapping, cert-manager integration, or TLS install troubleshooting before deploying the chart.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1941,1944,1947],{"name":1942,"slug":1943,"type":15},"Deployment","deployment",{"name":1945,"slug":1946,"type":15},"Encryption","encryption",{"name":1865,"slug":1866,"type":15},"2026-07-12T07:56:37.675396",{"slug":1950,"name":1950,"fn":1951,"description":1952,"org":1953,"tags":1954,"stars":1932,"repoUrl":1933,"updatedAt":1963},"debugging-cockroachdb-operator-migrations","debug CockroachDB Operator migration scenarios","Debugs CockroachDB Operator migration scenarios, including Helm StatefulSet to v1beta1 CrdbNode migration and public operator v1alpha1 to v1beta1 migration. Use when migration labels, migration phases, source StatefulSet ownership, converted CRDs, PVC ownership, or post-migration reconciliation are unclear or stuck.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1955,1956,1959,1960],{"name":20,"slug":21,"type":15},{"name":1957,"slug":1958,"type":15},"Debugging","debugging",{"name":1929,"slug":1930,"type":15},{"name":1961,"slug":1962,"type":15},"Migration","migration","2026-07-12T07:56:48.360871",{"slug":1965,"name":1965,"fn":1966,"description":1967,"org":1968,"tags":1969,"stars":1932,"repoUrl":1933,"updatedAt":1974},"diagnosing-cockroachdb-helm-deployments","diagnose CockroachDB Helm chart deployments","Diagnoses failed or unhealthy CockroachDB Helm chart deployments by checking Helm release state, operator health, CrdbCluster and CrdbNode status, pod readiness, RBAC, webhooks, TLS, upgrades, scaling, PVCs, DNS, and multi-region assumptions. Use when Helm install or upgrade fails, pods are not Ready, or the operator is not reconciling.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1970,1971,1972,1973],{"name":20,"slug":21,"type":15},{"name":1957,"slug":1958,"type":15},{"name":1942,"slug":1943,"type":15},{"name":1929,"slug":1930,"type":15},"2026-07-12T07:57:24.018818",{"slug":1976,"name":1976,"fn":1977,"description":1978,"org":1979,"tags":1980,"stars":1932,"repoUrl":1933,"updatedAt":1984},"installing-cockroachdb-with-helm","install CockroachDB using Helm","Guides customer-facing installation of CockroachDB on Kubernetes using the CockroachDB split Helm charts and operator-managed v1beta1 resources. Use when installing CockroachDB with Helm, choosing between published and local split charts, verifying a new install, or helping an agent complete first-time Kubernetes onboarding.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1981,1982,1983],{"name":20,"slug":21,"type":15},{"name":1942,"slug":1943,"type":15},{"name":1929,"slug":1930,"type":15},"2026-07-12T07:56:45.777567",{"slug":1986,"name":1986,"fn":1987,"description":1988,"org":1989,"tags":1990,"stars":1932,"repoUrl":1933,"updatedAt":1995},"validating-cockroachdb-helm-multiregion","validate CockroachDB multi-region Helm deployments","Validates CockroachDB Helm chart values and Kubernetes prerequisites for operator-managed multi-region deployments. Use before adding a region, deploying CockroachDB across multiple Kubernetes clusters, checking region DNS domains, or confirming that all regions share certificate and networking assumptions.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1991,1992,1993,1994],{"name":20,"slug":21,"type":15},{"name":1942,"slug":1943,"type":15},{"name":1929,"slug":1930,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T07:56:47.082609",{"slug":1824,"name":1824,"fn":1825,"description":1826,"org":1997,"tags":1998,"stars":22,"repoUrl":23,"updatedAt":1836},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1999,2000,2001],{"name":20,"slug":21,"type":15},{"name":1831,"slug":1832,"type":15},{"name":1834,"slug":1835,"type":15},{"slug":1838,"name":1838,"fn":1839,"description":1840,"org":2003,"tags":2004,"stars":22,"repoUrl":23,"updatedAt":1850},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2005,2006,2007,2008],{"name":1844,"slug":1845,"type":15},{"name":20,"slug":21,"type":15},{"name":1834,"slug":1835,"type":15},{"name":1849,"slug":554,"type":15},{"slug":1852,"name":1852,"fn":1853,"description":1854,"org":2010,"tags":2011,"stars":22,"repoUrl":23,"updatedAt":1867},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2012,2013,2014,2015],{"name":1858,"slug":1859,"type":15},{"name":1861,"slug":1862,"type":15},{"name":20,"slug":21,"type":15},{"name":1865,"slug":1866,"type":15},{"slug":1869,"name":1869,"fn":1870,"description":1871,"org":2017,"tags":2018,"stars":22,"repoUrl":23,"updatedAt":1878},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2019,2020,2021,2022],{"name":1858,"slug":1859,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":1865,"slug":1866,"type":15},{"slug":1880,"name":1880,"fn":1881,"description":1882,"org":2024,"tags":2025,"stars":22,"repoUrl":23,"updatedAt":1891},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2026,2027,2028,2029],{"name":1858,"slug":1859,"type":15},{"name":1887,"slug":1888,"type":15},{"name":20,"slug":21,"type":15},{"name":1834,"slug":1835,"type":15},{"slug":1893,"name":1893,"fn":1894,"description":1895,"org":2031,"tags":2032,"stars":22,"repoUrl":23,"updatedAt":1904},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2033,2034,2035,2036],{"name":20,"slug":21,"type":15},{"name":1900,"slug":1901,"type":15},{"name":1834,"slug":1835,"type":15},{"name":1849,"slug":554,"type":15},40]