53 个开发者工具,始终保持最新 — 上游每次发布后数小时内即可通过 apt 获取。 加入 Discord

📅 自 起,使用本 apt 镜像将需要订阅。 查看价格 · 🆓 有一个永久免费的镜像

🐯 安装最新的 TigerBeetle 在 Debian 上

The financial transactions database designed for mission-critical safety and performance

最新版本:0.17.9 · 更新于 2026-07-09
来源版本
deb.griffo.io0.17.9 ✅
官方 Debian🚫 未收录
← 返回首页

什么是 TigerBeetle?

TigerBeetle is a distributed financial transactions database designed for mission-critical safety and performance to power the next 30 years of Online Transaction Processing (OLTP). Written in Zig, it delivers 1000x faster performance than traditional databases while maintaining strict serializability and indestructible durability.

🚀 Why Latest Versions Matter: TigerBeetle releases weekly with continuous improvements to performance, safety, and features. The latest versions include protocol optimizations, enhanced fault tolerance, and critical bug fixes that ensure your financial transactions are processed correctly and efficiently.

⚡ Key Features of TigerBeetle

🚀 1000x Faster OLTP

Purpose-built for transaction processing with 100K-500K TPS throughput and predictable low P100 latency. Executes thousands of transactions in a single query with zero lock contention.

💰 Debit/Credit Strict Consistency

Enforces double-entry accounting with strict serializability by default. Every debit has an equal and opposite credit, guaranteed by the database with no anomalies or caveats.

☁️ Multi-Cloud High Availability

Runs across AWS, GCP, and Azure simultaneously with Viewstamped Replication (VSR) consensus. Automated failover and flexible quorums ensure uninterrupted transaction processing.

🛡️ Indestructible Durability

Replicated write-ahead log with end-to-end 128-bit checksums and protocol-aware recovery. Survives disk corruption, misdirected I/O, and even helical fault injection.

🎯 Universal Schema

Debit/credit model with accounts and transfers provides a minimal and complete schema for any exchange of value across any domain - from banking to gaming to energy.

🔬 Extreme Engineering

TigerStyle methodology applies NASA's Power of 10 Rules with static allocation and 6,000+ assertion tripwires. Deterministic simulation testing runs 2000 years of faults every 24 hours.

📊 Performance Benchmarks

  • 100K-500K TPS: Sustained throughput under 90% contention
  • 100ms P100 Latency: Predictable tail latencies at peak load
  • 100B+ Transactions: Store billions in one cluster with tiered storage
  • 1B+ Accounts: Scale to billions of accounts with 20+ indexes
  • 6 Replicas: Replicated, never partitioned for maximum consistency
🚀 始终领先于官方软件源:Debian 和 Ubuntu 在发布时会冻结软件包版本——本仓库通常在上游发布后数小时内即发布新版本。只需 apt upgrade 即可始终保持最新版本。

📦 从 deb.griffo.io 安装

运行命令

步骤 1:添加仓库

sudo install -d -m 0755 /etc/apt/keyrings
curl -fsSL https://deb.griffo.io/EA0F721D231FDD3A0A17B9AC7808B4DD62C41256.asc | sudo gpg --dearmor --yes -o /etc/apt/keyrings/deb.griffo.io.gpg
echo "deb [signed-by=/etc/apt/keyrings/deb.griffo.io.gpg] https://deb.griffo.io/apt $(lsb_release -sc 2>/dev/null) main" | sudo tee /etc/apt/sources.list.d/deb.griffo.io.list > /dev/null
sudo apt update
install -d -m 0755 /etc/apt/keyrings
curl -fsSL https://deb.griffo.io/EA0F721D231FDD3A0A17B9AC7808B4DD62C41256.asc | gpg --dearmor --yes -o /etc/apt/keyrings/deb.griffo.io.gpg
echo "deb [signed-by=/etc/apt/keyrings/deb.griffo.io.gpg] https://deb.griffo.io/apt $(lsb_release -sc 2>/dev/null) main" | tee /etc/apt/sources.list.d/deb.griffo.io.list > /dev/null
apt update
sudo apt install extrepo
sudo extrepo enable griffo
sudo apt update

🆓 有一个永久免费的镜像。 deb-free.griffo.io 永久免费提供软件包 — 无需账号、无需订阅,最多落后上游 2 个月,安全修复立即发布。目前收录 cliamp、Ghostty、lazydocker、Oh My Posh 和 Zed;TigerBeetle 不在其中,因此今天只能通过上面的仓库安装 — 提出请求即可将其加入。

免费镜像的工作方式 →

🧩 关于 extrepo 选项。 extrepo 是 Debian 官方用于管理第三方仓库的工具:它会替你写好 sources 文件并安装签名密钥,并在使用前先对照签名元数据校验该密钥。本仓库以 griffo 之名登记其中,永久免费镜像则为 griffo-free,因此在 Debian(bookworm、trixie、forky、sid)上,上面的命令就是全部配置。

extrepo 只负责 sources 文件和密钥,订阅凭据仍然要写入 /etc/apt/auth.conf.d/deb.griffo.io.conf。Ubuntu 不在覆盖范围内,因为 extrepo 只发布 Debian 各套件的元数据:在 Ubuntu 上请使用 sudo 或 root 的命令。

步骤 2:安装 TigerBeetle

# Install latest TigerBeetle
sudo apt install tigerbeetle

# Verify installation
tigerbeetle version
# Install latest TigerBeetle
apt install tigerbeetle

# Verify installation
tigerbeetle version

🎯 Quick Start Example

Create and start a TigerBeetle cluster:

# Format a data file for replica 0
tigerbeetle format --cluster=0 --replica=0 --replica-count=1 0_0.tigerbeetle

# Start the replica
tigerbeetle start --addresses=3000 0_0.tigerbeetle

Basic usage with Node.js client:

const { createClient } = require('tigerbeetle-node');

const client = createClient({
  cluster_id: 0n,
  replica_addresses: ['3000']
});

// Create accounts
const accounts = [{
  id: 1n,
  ledger: 1,
  code: 1,
  flags: 0,
}];

await client.createAccounts(accounts);

// Create transfers
const transfers = [{
  id: 1n,
  debit_account_id: 1n,
  credit_account_id: 2n,
  amount: 100n,
  ledger: 1,
  code: 1,
}];

await client.createTransfers(transfers);

🚀 为什么选择 deb.griffo.io?

📊 Repository Comparison:
  • Official Debian: TigerBeetle not available in official repositories
  • Manual Download: Weekly releases require manual updates
  • Docker Only: Limited to containerized deployments
  • deb.griffo.io: Latest version with automatic updates

📦 软件包构建仓库

Debian 软件包在此 GitHub 仓库中自动构建和维护:

🔗 相关软件包

也可从 deb.griffo.io 获取:

🎯 Perfect for: Financial services building payment systems, fintech companies needing ledger infrastructure, gaming platforms with virtual economies, energy companies managing smart meter transactions, and any application requiring strict consistency and extreme performance for financial transactions.

📦 本仓库最近发布

❓ 常见问题

TigerBeetle 在官方 Debian 软件源中吗?

不在, 官方 Debian 源没有打包 TigerBeetle。本仓库目前是唯一的 apt 来源,提供 TigerBeetle 0.17.9。

如何在 Debian 上安装最新版 TigerBeetle?

按上方说明一次性添加 deb.griffo.io 仓库,然后运行:sudo apt install tigerbeetle。之后通过常规的 sudo apt upgrade 获取新版本。

软件包是否有签名?如何构建?

每个软件包都使用仓库的 GPG 密钥(EA0F721D231FDD3A0A17B9AC7808B4DD62C41256)签名,并基于上游发布在公开的 GitHub 仓库中构建,任何人都可以审查。

支持哪些 Debian 版本?

Debian 12 Bookworm、Debian 13 Trixie、Forky 和 Sid。