Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

designing-multi-region-applications设计多区域应用程序

Agent Skill

designing-multi-region-applications 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

374

周安装

15

GitHub Stars

9

下载量

121
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:designing-multi-region-applications(设计多区域应用程序)
来源仓库:https://github.com/cockroachlabs/cockroachdb-skills
仓库路径:skills/designing-multi-region-applications
安装命令:
npx skills add https://github.com/cockroachlabs/cockroachdb-skills --skill designing-multi-region-applications
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cockroachlabs/cockroachdb-skills --skill designing-multi-region-applications

简介

该技能指导多区域 CockroachDB 应用设计,选择合适的数据分布模式。

  • 涵盖 REGIONAL BY ROW、GLOBAL 表与手动地理分区等方案对比与实施验证。
  • 适用于全球化部署场景,平衡读写延迟与数据一致性需求。
  • 安装前需确认数据库版本支持,注意可能影响事务行为,建议先在测试环境验证。
  • designing-multi-region-applications 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Designing Multi-Region Applications

Guides developers through selecting the right multi-region pattern for their CockroachDB application and implementing it with proper validation. Covers the decision model for choosing between regular regional tables, REGIONAL BY ROW, GLOBAL tables, and manual geo-partitioning, plus a hands-on demo framework for comparing approaches.

Complement to other skills: For transaction design patterns, see designing-application-transactions. For SQL syntax and schema design, see cockroachdb-sql.

When to Use This Skill

  • Deciding how to model multi-region read/write behavior in CockroachDB
  • Choosing between active-active and active-passive architectures
  • Evaluating REGIONAL BY ROW vs manual geo-partitioning
  • Understanding GLOBAL table behavior and trade-offs
  • Designing for local reads and writes in multiple regions
  • Building or presenting a multi-region demo or workshop
  • Validating leaseholder placement and zone configurations
  • Optimizing cross-region transaction latency

Do not use this skill when the question is only about SQL syntax, indexing, or generic schema design with no multi-region decision involved.

Prerequisites

  • Understanding of CockroachDB range architecture and leaseholder concepts
  • Multi-region cluster or cockroach demo with locality flags for testing
  • Knowledge of application write patterns (single-region vs multi-region)

Pattern Selection

Step 1: Identify the Application Write Model

Ask first: is there one write home, or many?

  • If the application has one primary region for read/write, start with a primary-region / regular regional-table model or a manually configured active-passive design.
  • If the application needs low-latency read/write in multiple regions, evaluate manual geo-partitioning or REGIONAL BY ROW.
  • If the table is mostly reference data that should read fast everywhere and the write path is not the main focus, consider GLOBAL tables.

Step 2: Choose the Pattern

A. Regular Regional Tables (Active-Passive)

Use when:

  • The application has one primary region for RW
  • Remote regions are secondary or read-mostly
  • Simplicity matters more than region-local writes everywhere

Characteristics:

  • All leaseholders stay in the active region
  • Replicas in other regions provide resiliency and single-region-failure survival
  • Indicative latency: ~20ms writes, ~2-5ms reads (local region)

Recommendation: Prefer the higher-level multi-region abstractions first unless the user explicitly needs manual control over partitions, voters, and lease preferences.

B. Manual Geo-Partitioning with Region-Specific Leaseholders

Use when:

  • The application is active-active
  • The data model is region-keyed
  • The team wants explicit operational control
  • Understanding internal mechanics (partitions, voters, lease preferences) is important

Characteristics:

  • Region-specific leaseholder pattern keeps writes around ~20ms and reads around ~2-5ms
  • The application must enforce reads and writes for a key in the same region
  • More DDL and operational burden
  • Best for teaching internals

Example DDL:

CREATE TABLE accounts_manual (
  account_id STRING(40),
  owner_id   STRING(40) NOT NULL,
  status     STRING(20) NOT NULL,
  region     STRING(10) NOT NULL,
  CONSTRAINT accounts_manual_pkey PRIMARY KEY (region, account_id)
);

ALTER INDEX accounts_manual_pkey
  PARTITION BY LIST (region) (
    PARTITION na_ne VALUES IN ('NA-NE'),
    PARTITION na_mw VALUES IN ('NA-MW'),
    PARTITION na_nw VALUES IN ('NA-NW')
  );

ALTER PARTITION na_ne OF INDEX accounts_manual_pkey
  CONFIGURE ZONE USING
    num_replicas      = 5,
    num_voters        = 5,
    voter_constraints = '{+region=NA-NE: 2, +region=NA-MW: 2, +region=NA-NW: 1}',
    lease_preferences = '[[+region=NA-NE]]';

C. REGIONAL BY ROW

Use when:

  • The workload is active-active
  • Each row naturally belongs to a region
  • The team wants local RW in multiple regions without hand-managing partition zone configs
  • The goal is the developer-facing multi-region abstraction

Characteristics:

  • All configured regions are possible home/leaseholder regions
  • Indicative latency: ~20ms writes, ~2-5ms reads (local region)
  • Less manual configuration than geo-partitioning
  • Default recommendation for region-affine application data

Example DDL:

CREATE DATABASE IF NOT EXISTS example_service_rbr;
ALTER DATABASE example_service_rbr PRIMARY REGION 'NA-NE';
ALTER DATABASE example_service_rbr ADD REGION 'NA-NW';
ALTER DATABASE example_service_rbr ADD REGION 'NA-MW';
ALTER DATABASE example_service_rbr SURVIVE REGION FAILURE;

USE example_service_rbr;

CREATE TABLE accounts_rbr (
  account_id STRING(40),
  owner_id   STRING(40) NOT NULL,
  status     STRING(20) NOT NULL,
  region     crdb_internal_region
    NOT NULL
    DEFAULT gateway_region()::crdb_internal_region,
  CONSTRAINT accounts_rbr_pkey PRIMARY KEY (region, account_id)
) LOCALITY REGIONAL BY ROW AS region;

Local allocation pattern:

WITH candidate AS (
  SELECT id, resource_code
  FROM resource_pool
  WHERE allocated_at IS NULL
    AND region = gateway_region()::crdb_internal_region
  ORDER BY random()
  LIMIT 1
  FOR UPDATE
)
UPDATE resource_pool
SET allocated_at = now()
WHERE id = (SELECT id FROM candidate);

D. GLOBAL Tables

Use when:

  • The table is global/reference-style data
  • The workload is primarily about broad read locality rather than region-owned writes

Important constraint: GLOBAL tables optimize for fast reads everywhere. Do not position them as an "RW everywhere" pattern without verifying product-specific behavior in the official documentation.

E. Survival Goals

Choose the survival goal based on the trade-off between write latency and durability:

-- Survive any single zone failure (default, 3+ zones required):
ALTER DATABASE mydb SURVIVE ZONE FAILURE;

-- Survive an entire region going down (3+ regions required):
ALTER DATABASE mydb SURVIVE REGION FAILURE;
GoalRequirementWrite LatencyData Safety
SURVIVE ZONE FAILURE3+ zonesLow (local consensus)Survives 1 zone outage
SURVIVE REGION FAILURE3+ regionsHigher (cross-region consensus)Survives 1 region outage

SURVIVE REGION FAILURE adds write latency because Raft consensus must span regions, but guarantees zero data loss even if an entire cloud region goes offline.

Pattern Comparison

AspectRegular RegionalManual Geo-PartitionREGIONAL BY ROWGLOBAL
Write modelSingle primary regionActive-active, region-keyedActive-active, row-affineWrite from primary region
Read localityLocal to primaryLocal to partitionLocal to row regionAll regions
Operational burdenLowHighMediumLow
ConfigurationMinimalExplicit partitions, zones, lease prefsDatabase-level abstractionsTable-level declaration
Best forSimple primary-region appsFull control over mechanicsDeveloper-facing multi-regionReference data

Live Demo Setup

For workshops and technical walkthroughs, use a 9-node local demo cluster to make multi-region locality observable.

Cluster Setup

cockroach demo \
  --nodes 9 \
  --no-example-database \
  --insecure \
  --demo-locality=\
region=NA-NE,zone=NA-NE-1:\
region=NA-NE,zone=NA-NE-2:\
region=NA-NE,zone=NA-NE-3:\
region=NA-MW,zone=NA-MW-1:\
region=NA-MW,zone=NA-MW-2:\
region=NA-MW,zone=NA-MW-3:\
region=NA-NW,zone=NA-NW-1:\
region=NA-NW,zone=NA-NW-2:\
region=NA-NW,zone=NA-NW-3

Demo Flow

Recommended presentation order:

  1. Start with the manual geo-partitioning path
  2. Show explicit partitioning and zone configuration
  3. Run validation queries and confirm lease homing
  4. Switch to REGIONAL BY ROW
  5. Run RBR validations
  6. Compare operational surface area

Validation Queries

Manual partitioning validation:

SHOW RANGES FROM INDEX accounts_manual_pkey WITH DETAILS;

Check that:

  • All expected partition values are present
  • Lease holder locality matches partition region
  • Mismatches return FAIL, otherwise PASS

RBR validation:

SHOW RANGES FROM TABLE accounts_rbr WITH DETAILS;

Check that:

  • Leaseholder locality coverage includes the expected regions
  • There are no unexpected lease regions

Demo Talking Points

Manual path:

  • Precise control over partitions, voters, replicas, and lease preferences
  • More DDL and operational burden
  • Best for teaching internals and understanding what the database does under the hood

RBR path:

  • Keeps application intent front and center
  • Less manual configuration
  • Easier to explain for app teams
  • Still grounded in the same topology

Cross-Region Latency Guidance

Transaction latency increases when the client is remote from the relevant leaseholder/quorum path.

Client LocationLocal RW LatencyCross-Region RW Latency
Same region as leaseholder~10-20ms
Different region~50-150ms+

Guidance:

  • Place latency-sensitive services close to their primary data locality
  • Use follower reads for non-critical display/reporting queries
  • Use multi-region table locality and zone configuration intentionally
  • Do not assume "distributed" means "same latency everywhere"

Output Expectations

A strong answer using this skill should include:

  1. The recommended pattern
  2. Why it fits the workload
  3. What the application must do (routing, row affinity, primary-region assumptions)
  4. What CockroachDB manages automatically vs manually
  5. Expected latency shape or locality behavior
  6. A warning when the user is asking for something the chosen pattern does not optimize for

Guardrails

  • Do not claim that regular primary-region tables provide symmetric low-latency writes from all regions
  • Do not claim that GLOBAL is the answer for all-region low-latency writes without supporting documentation
  • When comparing manual geo-partitioning vs REGIONAL BY ROW, explicitly call out control vs simplicity
  • When the user wants to understand internal mechanics, bias toward explaining the manual model first
  • When the user wants the best default application pattern, bias toward REGIONAL BY ROW for region-affine data
  • Keep region names and locality labels consistent across all SQL
  • Do not mix manual and abstraction approaches in the same explanation unless explicitly comparing them
  • Always include validation, not just DDL

Multi-Region Migration Checklist

For teams migrating from single-region PostgreSQL/Oracle to multi-region CockroachDB:

  1. Deploy nodes with --locality=region=<region>,zone=<zone>
  2. Set primary region: ALTER DATABASE <db> PRIMARY REGION '<region>'
  3. Add regions: ALTER DATABASE <db> ADD REGION '<region>' (for each)
  4. Set survival goal: ALTER DATABASE <db> SURVIVE ZONE|REGION FAILURE
  5. Classify tables: GLOBAL (reference data), REGIONAL BY ROW (row-affine), REGIONAL BY TABLE (default)
  6. Set localities: ALTER TABLE <t> SET LOCALITY <locality>
  7. Monitor leaseholder distribution in DB Console
  8. Test failover: kill a zone/region and verify survival goal holds

Safety Considerations

  • Multi-region configuration changes affect data placement across the cluster
  • Test multi-region configurations on demo or staging clusters before production
  • Validate leaseholder placement after configuration changes
  • Allow time for range rebalancing after topology changes

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.99%
按下载量换算44

Claude

27.94%
按下载量换算34

Cursor

19.06%
按下载量换算23

Gemini CLI

8.86%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills