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

benchmarking-transaction-patterns对标交易模式

Agent Skill

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

总安装

416

周安装

17

GitHub Stars

9

下载量

135
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cockroachlabs/cockroachdb-skills --skill benchmarking-transaction-patterns

简介

benchmarking-transaction-patterns 用于比较 CockroachDB 中不同事务模式的性能表现,适合数据库架构设计阶段使用。

  • 适用于 Codex、Claude、Cursor、Gemini CLI,专注于多语句事务与 CTE 事务在高并发下的行为差异分析。
  • 通过标准化测试方法评估吞吐量、延迟与公平性指标,辅助选择最优事务实现方式。
  • 需确认是否具备访问数据库实例的权限,并注意测试过程中可能产生的资源消耗与网络开销。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Benchmarking Transaction Patterns

Guides users through benchmarking, explaining, and comparing two formulations of the same transactional business workflow in CockroachDB: explicit multi-statement transactions versus single-statement CTE transactions. Focuses on performance under contention, fair test methodology, and result interpretation.

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

When to Use This Skill

  • Comparing explicit multi-statement transactions versus CTE-based single-statement transactions
  • Benchmarking CockroachDB workloads under high concurrency or hot-key contention
  • Investigating retry pressure, p95/p99 latency, or throughput differences between transaction formulations
  • Deciding whether to rewrite a multi-step application flow into a single SQL statement
  • Setting up a fair side-by-side benchmark with proper reset discipline
  • Interpreting benchmark results (throughput, retries, tail latency, failures)
  • Explaining why SQL Activity still shows waiting even with CTE transactions

Prerequisites

  • CockroachDB test cluster (do not benchmark on production)
  • SQL client or JDBC driver for benchmark execution
  • Understanding of CockroachDB SERIALIZABLE isolation and retry behavior
  • Familiarity with basic concurrency testing concepts

Core Concept

When two implementations perform the same business behavior, the transaction formulation itself can be a primary performance lever under contention.

Explicit Transaction Model

The application orchestrates the workflow as separate SQL statements inside a transaction: read state, apply logic, write changes, commit.

BEGIN;

SELECT balance FROM accounts WHERE id = $1;

-- Application decides whether transfer is allowed

UPDATE accounts SET balance = balance - $2 WHERE id = $1;
UPDATE accounts SET balance = balance + $2 WHERE id = $3;

INSERT INTO transfers (from_acct, to_acct, amount, created_at)
VALUES ($1, $3, $2, now());

COMMIT;

This keeps the transaction open across multiple statements and often includes application-side decision logic between steps.

CTE Transaction Model

The same read/decision/write logic is expressed as a single SQL statement, so the database evaluates and applies the business operation atomically without intermediate client orchestration.

WITH debit AS (
  UPDATE accounts
  SET balance = balance - $2
  WHERE id = $1
    AND balance >= $2
  RETURNING id
), credit AS (
  UPDATE accounts
  SET balance = balance + $2
  WHERE id = $3
    AND EXISTS (SELECT 1 FROM debit)
  RETURNING id
), ins AS (
  INSERT INTO transfers (from_acct, to_acct, amount, created_at)
  SELECT $1, $3, $2, now()
  WHERE EXISTS (SELECT 1 FROM debit)
    AND EXISTS (SELECT 1 FROM credit)
  RETURNING id
)
SELECT id FROM ins;

Why CTE Tends to Win Under Contention

The explicit version keeps the transaction open across multiple statements, increasing the time window for write conflicts, timestamp pushes, and retries. Under high concurrency, each retry repeats the read and write work and continues contending for the same hot data.

The CTE version collapses the same business logic into a single atomic statement, reducing transaction duration and sharply narrowing the contention window.

Steps

1. Prepare the Benchmark Environment

Set up a dedicated test database and schema. Do not mix benchmark workloads with other traffic.

CREATE DATABASE IF NOT EXISTS bankbench;
USE bankbench;

CREATE TABLE accounts (
  id INT PRIMARY KEY,
  balance DECIMAL(18,2) NOT NULL DEFAULT 0
);

CREATE TABLE transfers (
  id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
  from_acct INT NOT NULL,
  to_acct INT NOT NULL,
  amount DECIMAL(18,2) NOT NULL,
  created_at TIMESTAMPTZ NOT NULL DEFAULT now()
);

2. Seed the Test Data

Use multi-row UPSERT for efficient seeding. Single-row inserts distort setup cost.

INSERT INTO accounts (id, balance)
SELECT generate_series(1, 10000), 1000.00
ON CONFLICT (id) DO UPDATE SET balance = 1000.00;

3. Run the Explicit Transaction Benchmark

Execute with realistic concurrency (e.g., 64-128 workers) and a fixed duration or iteration count. Record throughput, retries, p50/p95/p99 latency, max latency, and failures.

4. Reset Between Runs for Fair Comparison

For a fair benchmark, reset account balances between explicit and CTE runs so table size, index size, and account state remain comparable.

UPDATE accounts SET balance = 1000.00;

5. Run the CTE Transaction Benchmark

Execute with the same concurrency, duration, and parameters as the explicit run.

6. Compare Results

Always compare these metrics side by side:

MetricWhat to Look For
Throughput (txn/s)Higher is better; CTE typically sustains better under contention
Total retriesCTE often reduces to near-zero
p50 latencyMedian transaction time
p95 latencyTail latency under moderate contention
p99 latencyWorst-case tail; explicit model often shows spikes
Max latencyOutlier behavior
FailuresNon-retryable errors

Benchmark Reference Results

In a reported high-contention run comparing the two models:

MetricExplicitCTEChange
Throughput591.1 txn/s1,035.1 txn/s+75.1%
Wall time216.5s123.7s-42.9%
Average latency202.2 ms111.3 ms-45.0%
Total retries2,270,9770-100%

Extended runs preserved the same directional result at higher total volume, with the explicit model continuing to accumulate retries and occasional failures while the CTE model stayed at zero retries and zero failures.

Impact Summary

DimensionExplicit Multi-StatementSingle-Statement CTE
Round tripsMultiple client/server interactionsSingle request
Transaction lifetimeLongerShorter
Client retry complexityHigherLower
Atomic invariant enforcementSpread across statements/app logicContained in SQL
Expected throughputLower under contentionHigher under contention
Client-visible retriesMore likelyOften reduced

Decision Guidance

Prefer the Explicit Pattern When

  • The business workflow truly cannot be expressed cleanly in one SQL statement
  • Readability or staged business logic matters more than peak throughput
  • The contention level is low enough that retry amplification is not the dominant cost

Prefer the CTE Pattern When

  • The workflow is contention-heavy
  • The operation is naturally atomic
  • The application currently performs read-decide-write across multiple statements
  • The main goal is higher throughput, lower retries, and more stable p95/p99 latency

Fair Benchmark Rules

  1. Reset between runs for fair comparison so balances, table size, and index size stay consistent
  2. Treat no-reset runs as a demo, not an apples-to-apples benchmark
  3. Use --batch-size=1 when you want one business unit of work at a time for clean comparison
  4. Compare the right metrics — always include throughput, retries, p50, p95, p99, max latency, and failures
  5. Use multi-row UPSERT for seeding — single-row seeding distorts setup cost

Common Misconceptions

"CTE always wins in every workload" — No. The claim is narrower: when the same business workflow can be expressed as a single atomic statement and the workload is contention-sensitive, collapsing the transaction shape can materially improve performance and stability.

"SQL Activity showing waiting means CTE failed" — Single-statement CTE execution does not eliminate contention. Statements can still wait on row conflicts, write intents, latches, or scheduling. The right comparison is overall throughput, tail latency, and retry profile.

"Single-statement means no contention" — A CTE can still wait under contention. The benefit is a narrower contention window, not the elimination of contention.

Safety Considerations

  • Run benchmarks on dedicated test clusters, not production
  • Reset data between runs for fair comparison
  • Monitor cluster health during benchmark execution
  • Use realistic but not destructive concurrency levels
  • Validate that benchmark results transfer to your specific workload before making production changes

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.03%
按下载量换算47

Claude

28.18%
按下载量换算38

Cursor

19.39%
按下载量换算26

Gemini CLI

10.53%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills