Universal Database Horizontal Sharding Router
A TypeScript library for true horizontal scaling of SQLite-style databases primarily for Cloudflare using D1 and KV, with additional provider adapters for Redis/Valkey KV and PostgreSQL/MySQL/SQLite SQL backends, plus Drizzle ORM interop across those SQL providers. CollegeDB distributes your data across multiple database shards, with each table's records split by primary key across different database instances.
- Why CollegeDB
- Features
- Getting Started
- Benchmark Suite
- Provider Adapters
- NuxtHub + Drizzle Recipes
- Sandbox Benchmarks (Docker Compose)
- Basic Usage
- Multi-Key Shard Mappings
- Drop-in Replacement for Existing Databases
- Troubleshooting
- API Reference
- Architecture
- Cloudflare Setup
- Monitoring and Maintenance
- Performance Analysis
- Advanced Configuration
- Quick Reference
- Contributing
- License
CollegeDB implements data distribution where a single logical table is physically stored across multiple D1 databases:
env.db-east (Shard 1)
ββββββββββββββββββββββββββββββββββββββββββββββ
β table users: [user-1, user-3, user-5, ...] β
β table posts: [post-2, post-7, post-9, ...] β
ββββββββββββββββββββββββββββββββββββββββββββββ
env.db-west (Shard 2)
ββββββββββββββββββββββββββββββββββββββββββββββ
β table users: [user-2, user-4, user-6, ...] β
β table posts: [post-1, post-3, post-8, ...] β
ββββββββββββββββββββββββββββββββββββββββββββββ
env.db-central (Shard 3)
ββββββββββββββββββββββββββββββββββββββββββββββ
β table users: [user-7, user-8, user-9, ...] β
β table posts: [post-4, post-5, post-6, ...] β
ββββββββββββββββββββββββββββββββββββββββββββββThis allows you to:
- Break through D1's single database limits by spreading data across many databases
- Improve query performance by reducing data per database instance
- Scale geographically by placing shards in different regions
- Increase write throughput by parallelizing across multiple database instances
- Automatic query routing (primary key to shard mapping)
- Provider adapters for Redis/Valkey/NuxtHub KV plus PostgreSQL/MySQL/SQLite SQL
- Drizzle interop through existing SQL providers (
createPostgreSQLProvider,createMySQLProvider,createSQLiteProvider) - Hyperdrive helpers for PostgreSQL and MySQL
- Multiple allocation strategies: round-robin, random, hash, location-aware, and mixed read/write strategies
- Durable Object shard coordination and shard statistics
- Migration helpers for integrating existing datasets and rebalancing mappings
bun add @earth-app/collegedb
# or
npm install @earth-app/collegedbKeep NuxtHub + Drizzle for schema/migrations and add CollegeDB as your routing layer.
import { db as hubDb } from '@nuxthub/db';
import { kv } from '@nuxthub/kv';
import { sql } from 'drizzle-orm';
import { drizzle } from 'drizzle-orm/d1';
import { createNuxtHubKVProvider, createSQLiteProvider, first, initialize, run } from '@earth-app/collegedb';
let initialized = false;
function ensureCollegeDB(env: { DB_SECONDARY: D1Database }) {
if (initialized) return;
initialize({
kv: createNuxtHubKVProvider(kv),
shards: {
'db-primary': createSQLiteProvider(hubDb, sql),
'db-secondary': createSQLiteProvider(drizzle(env.DB_SECONDARY), sql)
},
strategy: 'hash'
});
initialized = true;
}
export default defineEventHandler(async (event) => {
const env = event.context.cloudflare.env;
ensureCollegeDB(env);
await run('post:123', 'INSERT OR REPLACE INTO blog_posts (id, title) VALUES (?, ?)', ['post:123', 'Hello from CollegeDB']);
const post = await first<{ id: string; title: string }>('post:123', 'SELECT id, title FROM blog_posts WHERE id = ?', ['post:123']);
return { post };
});// before
import { eq } from 'drizzle-orm';
import { db } from 'hub:db';
import { kv } from 'hub:kv';
import { blogPosts } from '~/server/db/schema';
const cached = await kv.get('nuxtpress:post:slug');
if (cached) return cached;
const rows = await db.select().from(blogPosts).where(eq(blogPosts.slug, slug)).limit(1);
await kv.set('nuxtpress:post:slug', rows[0], { ttl: 3600 });// after (CollegeDB routing + same NuxtHub KV cache)
import { kv } from '@nuxthub/kv';
import { sql } from 'drizzle-orm';
import { db } from 'hub:db';
import { createNuxtHubKVProvider, createSQLiteProvider, first, initialize } from '@earth-app/collegedb';
let initialized = false;
function setup() {
if (initialized) return;
initialize({
kv: createNuxtHubKVProvider(kv),
shards: {
'db-primary': createSQLiteProvider(db, sql)
},
strategy: 'hash'
});
initialized = true;
}
setup();
const cacheKey = `nuxtpress:post:${slug}`;
const cached = await kv.get(cacheKey);
if (cached) return cached;
const row = await first<{ id: string; slug: string; title: string }>(
cacheKey,
'SELECT id, slug, title FROM blog_posts WHERE slug = ? LIMIT 1',
[slug]
);
await kv.set(cacheKey, row, { ttl: 3600 });CollegeDB includes a benchmark runner that executes each SQL+KV combination across adapter profiles, then generates a report with profile-specific matrices.
| Profile | Purpose |
|---|---|
| native | Direct provider clients (Cloudflare bindings or driver-native adapters) |
| drizzle | Drizzle interop through SQL provider adapters |
| hyperdrive | Hyperdrive connection-string wrappers for PostgreSQL/MySQL |
| nuxthub | NuxtHub-style KV adapter with SQL provider interop |
| Scenario Key | Scenario | What Happens | Workload Per Run |
|---|---|---|---|
| basic_crud | Basic CRUD round-trip | Insert, read, update, and delete a user via routed queries. | 20 iterations; 4 routed SQL ops per iteration |
| advanced_usage | Advanced lookup workflow | Writes user+post, adds lookup aliases, then validates join and alias-based lookup. | 15 iterations; ~5 routed SQL ops + KV lookup-key updates per iteration |
| migration_mapping | Migration-style mapping creation | Inserts legacy records on a fixed shard, then builds shard mappings in batch and validates routing. | 10 iterations; 20 legacy records mapped per iteration |
| bulk_crud | Bulk CRUD pressure | Performs bulk inserts, half updates, and full delete sweep, then validates shard-wide totals. | 7 iterations; 160 inserts + 80 updates + 160 deletes per iteration |
| indexing | Indexed query scan | Creates an index on posts(user_id) and repeatedly queries the indexed path. | 15 iterations after warmup dataset build |
| metadata_fetch | Metadata inspection | Reads table metadata/introspection rows from one shard. | 14 iterations; 1 metadata query per iteration |
| pragma_or_info | PRAGMA / server info | Runs provider-specific PRAGMA/info query to sample low-level metadata latency. | 14 iterations; 1 pragma/info query per iteration |
| counting | Cross-shard counting | Counts users across all shards to measure fanout aggregation overhead. | 14 iterations; all-shard count aggregation per iteration |
| shard_fanout | Shard fanout query | Runs query fanout to all shards and aggregates shard-level responses. | 14 iterations; 1 all-shards query per iteration |
| reassignment | Shard reassignment flow | Creates a record, reassigns it to another shard, and verifies routed reads still succeed. | 10 iterations; insert + reassignment + verification per iteration |
Each generated report includes:
Matrix: SQL x KV (Overall)Matrix: Adapter Profiles (Overall Avg)Matrix: Core Scenario Latency (avg/p95)Matrix: Introspection and Routing Latency (avg/p95)Cloudflare Worker (wrangler dev --local)Matrix: Cloudflare Adapter Profiles (Overall Avg)
bun run test:sandbox
bun run test:sandbox:drizzle
bun run test:sandbox:nuxthub
bun run test:sandbox:hyperdriveFor Docker-based benchmark details and filtering options, see Sandbox Benchmarks (Docker Compose).
CollegeDB can run with either native Cloudflare bindings or custom providers as long as they match the exported KVStorage and SQLDatabase interfaces.
Drizzle interop is enabled by passing a Drizzle sql tag as the optional second argument to createPostgreSQLProvider, createMySQLProvider, or createSQLiteProvider.
Supported adapters:
createRedisKVProvidercreateValkeyKVProvidercreateNuxtHubKVProvidercreatePostgreSQLProvidercreateMySQLProvidercreateSQLiteProvidercreateDrizzleSQLProvider(compatibility helper)createHyperdrivePostgresProvidercreateHyperdriveMySQLProvider
import { createClient as createRedisClient } from 'redis';
import { Pool } from 'pg';
import { createPostgreSQLProvider, createRedisKVProvider, initialize, run, type CollegeDBConfig } from '@earth-app/collegedb';
const redisClient = createRedisClient({ url: process.env.REDIS_URL });
const pgPool = new Pool({ connectionString: process.env.POSTGRES_URL });
const config: CollegeDBConfig = {
kv: createRedisKVProvider(redisClient),
shards: {
'pg-east': createPostgreSQLProvider(pgPool)
},
strategy: 'hash',
disableAutoMigration: true
};
async function bootstrap() {
await redisClient.connect();
initialize(config);
await run('user-1', 'INSERT INTO users (id, name) VALUES (?, ?)', ['user-1', 'Taylor']);
}
bootstrap().catch(console.error);For Hyperdrive-backed SQL connections, use createHyperdrivePostgresProvider or createHyperdriveMySQLProvider with your database client factory.
import { db } from '@nuxthub/db';
import { kv } from '@nuxthub/kv';
import { sql } from 'drizzle-orm';
import { createNuxtHubKVProvider, createSQLiteProvider, initialize, run, first } from '@earth-app/collegedb';
initialize({
kv: createNuxtHubKVProvider(kv),
shards: {
'db-primary': createSQLiteProvider(db, sql)
},
strategy: 'hash'
});
await run('draft:home', 'INSERT OR REPLACE INTO drafts (id, content) VALUES (?, ?)', ['draft:home', '# Home']);
const draft = await first<{ id: string; content: string }>('draft:home', 'SELECT id, content FROM drafts WHERE id = ?', ['draft:home']);CollegeDB does not replace your Drizzle schema or NuxtHub migration workflow.
npx nuxt db generate
npx nuxt db migrateUse those migrations as-is, then route runtime reads/writes through CollegeDB adapters.
For a complete non-Cloudflare setup, see examples/provider-sandbox.ts.
NuxtHub supports multiple deployment/database vendors. CollegeDB can shard across any SQL backends that Drizzle can connect to.
import { sql } from 'drizzle-orm';
import { drizzle as drizzlePg } from 'drizzle-orm/postgres-js';
import { drizzle as drizzleMySQL } from 'drizzle-orm/mysql2';
import { drizzle as drizzleD1 } from 'drizzle-orm/d1';
import { kv } from '@nuxthub/kv';
import postgres from 'postgres';
import mysql from 'mysql2/promise';
import {
createMySQLProvider,
createNuxtHubKVProvider,
createPostgreSQLProvider,
createSQLiteProvider,
initialize,
run
} from '@earth-app/collegedb';
const pgClient = postgres(process.env.POSTGRES_URL!);
const mysqlPool = mysql.createPool(process.env.MYSQL_URL!);
function setup(env: { DB_CF: D1Database }) {
initialize({
kv: createNuxtHubKVProvider(kv),
shards: {
'db-cf': createSQLiteProvider(drizzleD1(env.DB_CF), sql),
'db-pg': createPostgreSQLProvider(drizzlePg(pgClient), sql),
'db-mysql': createMySQLProvider(drizzleMySQL(mysqlPool), sql)
},
strategy: 'hash'
});
}
export default defineEventHandler(async (event) => {
setup(event.context.cloudflare.env);
await run('tenant:acme:user:1', 'INSERT INTO users (id, name) VALUES (?, ?)', ['tenant:acme:user:1', 'Ada']);
});Use NuxtHub KV for app cache while CollegeDB uses its own key namespace for shard mappings:
import { kv } from '@nuxthub/kv';
import { first } from '@earth-app/collegedb';
const cacheKey = `nuxtpress:post:${slug}`;
const cached = await kv.get(cacheKey);
if (cached) return cached;
const post = await first(cacheKey, 'SELECT * FROM blog_posts WHERE slug = ? LIMIT 1', [slug]);
await kv.set(cacheKey, post, { ttl: 3600 });CollegeDB ships with an integration sandbox runner that benchmarks real latency across provider combinations.
Requirements:
- Docker + Docker Compose plugin
- Bun
- Wrangler (installed as a dev dependency and invoked by scripts)
The Cloudflare benchmark path runs against the dedicated sandbox worker:
- Worker entry:
sandbox/worker.ts - Wrangler config:
sandbox/wrangler.jsonc
Main commands:
# Run full SQL x KV matrix plus Cloudflare local benchmark
bun run test:sandbox
# Run full SQL x KV matrix only
bun run test:sandbox:all
# Run Cloudflare local benchmark only (wrangler dev --local)
bun run test:sandbox:cloudflareProvider filters:
# One SQL provider against all KV providers (native profile by default)
bun run test:sandbox:mysql
bun run test:sandbox:postgres
bun run test:sandbox:mariadb
bun run test:sandbox:sqlite
# One KV provider against all SQL providers (native profile by default)
bun run test:sandbox:redis
bun run test:sandbox:valkey
# Run all SQL x KV combinations for one adapter profile
bun run test:sandbox:drizzle
bun run test:sandbox:nuxthub
bun run test:sandbox:hyperdrive
# Explicit pairwise combinations
bun run test:sandbox:postgres+redis
bun run test:sandbox:postgres+valkey
bun run test:sandbox:mysql+redis
bun run test:sandbox:mysql+valkey
bun run test:sandbox:mariadb+redis
bun run test:sandbox:mariadb+valkey
bun run test:sandbox:sqlite+redis
bun run test:sandbox:sqlite+valkeyOutput behavior:
- Every run writes a timestamped Markdown report to
sandbox/results/ sandbox/results/latest.mdis always updated to the newest report- The runner prints the report in-terminal using Bun's Markdown renderer with ANSI formatting
test:sandboxincludes native, drizzle, hyperdrive, and nuxthub adapter profiles across supported SQL/KV combinations plus Cloudflare profile runs
Benchmark coverage includes:
- basic CRUD
- advanced lookup/routing workflows
- migration-style mapping creation
- bulk CRUD
- indexing queries
- metadata fetch
- pragma/info queries (provider-specific)
- counting across shards
- shard fanout aggregation
- shard reassignment workflow
How to read benchmark rows:
- Latency cells are formatted as
average / p95in milliseconds. FAILEDmeans the scenario returned an error.N/Ameans the scenario was intentionally skipped in that environment.- Use the detailed section for full
avg,p50,p95,min,max, and sample count (n).
import { collegedb, createSchema, run, first } from '@earth-app/collegedb';
// Initialize with your Cloudflare bindings (existing databases work automatically!)
collegedb(
{
kv: env.KV,
coordinator: env.ShardCoordinator,
shards: {
'db-east': env['db-east'], // Can be existing DB with data
'db-west': env['db-west'] // Can be existing DB with data
},
strategy: 'hash'
},
async () => {
// Create schema on new shards only (existing shards auto-detected)
await createSchema(env['db-new-shard'], 'CREATE TABLE IF NOT EXISTS users (id TEXT PRIMARY KEY, name TEXT, email TEXT)');
// Insert data (automatically routed to appropriate shard)
await run('user-123', 'INSERT INTO users (id, name, email) VALUES (?, ?, ?)', ['user-123', 'Johnson', 'alice@example.com']);
// Query data (automatically routed to correct shard, works with existing data!)
const result = await first<User>('existing-user-456', 'SELECT * FROM users WHERE id = ?', ['existing-user-456']);
console.log(result); // User data from existing database
}
);import { collegedb, first, run } from '@earth-app/collegedb';
// Optimize for North American users with geographic sharding
collegedb(
{
kv: env.KV,
strategy: 'location',
targetRegion: 'wnam', // Western North America
shardLocations: {
'db-west': { region: 'wnam', priority: 2 }, // SF - Preferred for target region
'db-east': { region: 'enam', priority: 1 }, // NYC - Secondary
'db-europe': { region: 'weur', priority: 0.5 } // London - Fallback
},
shards: {
'db-west': env.DB_WEST,
'db-east': env.DB_EAST,
'db-europe': env.DB_EUROPE
}
},
async () => {
// New users will be allocated to db-west (closest to target region)
await run('user-west-123', 'INSERT INTO users (id, name, location) VALUES (?, ?, ?)', [
'user-west-123',
'West Coast User',
'California'
]);
// Queries are routed to the correct geographic shard
const user = await first<User>('user-west-123', 'SELECT * FROM users WHERE id = ?', ['user-west-123']);
console.log(`User found in optimal shard: ${user?.name}`);
}
);import { collegedb, first, run, type MixedShardingStrategy } from '@earth-app/collegedb';
// Use location strategy for writes (optimal data placement) and hash for reads (optimal performance)
const mixedStrategy: MixedShardingStrategy = {
write: 'location', // New data goes to geographically optimal shards
read: 'hash' // Reads use consistent hashing for best performance
};
collegedb(
{
kv: env.KV,
strategy: mixedStrategy,
targetRegion: 'wnam', // Western North America for writes
shardLocations: {
'db-west': { region: 'wnam', priority: 2 },
'db-east': { region: 'enam', priority: 1 },
'db-central': { region: 'enam', priority: 1 }
},
shards: {
'db-west': env.DB_WEST,
'db-east': env.DB_EAST,
'db-central': env.DB_CENTRAL
}
},
async () => {
// Write operations use location strategy - new users placed optimally
await run('user-california-456', 'INSERT INTO users (id, name, location) VALUES (?, ?, ?)', [
'user-california-456',
'California User',
'Los Angeles'
]);
// Read operations use hash strategy - consistent and fast routing
const user = await first<User>('user-california-456', 'SELECT * FROM users WHERE id = ?', ['user-california-456']);
// Different operations can route to different shards based on strategy
// This optimizes both data placement (writes) and query performance (reads)
console.log(`User: ${user?.name}, Location: ${user?.location}`);
}
);This approach provides:
- Optimal data placement: New records are written to geographically optimal shards using
locationstrategy - Optimal read performance: Queries use
hashstrategy for consistent, high-performance routing - Flexibility: Each operation type can use the most appropriate routing strategy
CollegeDB supports multiple lookup keys for the same record, allowing you to query by username, email, ID, or any unique identifier. Keys are automatically hashed with SHA-256 for security and privacy.
import { collegedb, first, run, KVShardMapper } from '@earth-app/collegedb';
collegedb(
{
kv: env.KV,
shards: { 'db-east': env.DB_EAST, 'db-west': env.DB_WEST },
hashShardMappings: true, // Default: enabled for security
strategy: 'hash'
},
async () => {
// Create a user with multiple lookup keys
const mapper = new KVShardMapper(env.KV, { hashShardMappings: true });
await mapper.setShardMapping('user-123', 'db-east', ['username:john_doe', 'email:john@example.com', 'id:123']);
// Now you can query by ANY of these keys
const byId = await first('user-123', 'SELECT * FROM users WHERE id = ?', ['user-123']);
const byUsername = await first('username:john_doe', 'SELECT * FROM users WHERE username = ?', ['john_doe']);
const byEmail = await first('email:john@example.com', 'SELECT * FROM users WHERE email = ?', ['john@example.com']);
// All queries route to the same shard (db-east)
console.log('All queries find the same user:', byId?.name);
}
);const mapper = new KVShardMapper(env.KV);
// User initially created with just ID
await mapper.setShardMapping('user-456', 'db-west');
// Later, add additional lookup methods
await mapper.addLookupKeys('user-456', ['email:jane@example.com', 'username:jane']);
// Now works with any key
const user = await first('email:jane@example.com', 'SELECT * FROM users WHERE email = ?', ['jane@example.com']);SHA-256 Hashing (Enabled by Default): Sensitive data like emails are hashed before being stored as KV keys, protecting user privacy:
// With hashShardMappings: true (default)
// KV stores: "shard:a1b2c3d4..." instead of "shard:email:user@example.com"
const config = {
kv: env.KV,
shards: {
/* ... */
},
hashShardMappings: true, // Hashes keys with SHA-256
strategy: 'hash'
};getKeysForShard() cannot return original key names, only hashed versions. For full key recovery, disable hashing:
const config = {
hashShardMappings: false // Disables hashing - keys stored in plain text
};const mapper = new KVShardMapper(env.KV);
// Get all lookup keys for a mapping
const allKeys = await mapper.getAllLookupKeys('email:user@example.com');
console.log(allKeys); // ['user-123', 'username:john', 'email:user@example.com']
// Update shard assignment (updates all keys)
await mapper.updateShardMapping('username:john', 'db-central');
// Delete mapping (removes all associated keys)
await mapper.deleteShardMapping('user-123');CollegeDB supports seamless, automatic integration with existing D1 databases that already contain data. Simply add your existing databases as shards in the configuration. CollegeDB will automatically detect existing data and create the necessary shard mappings without requiring any manual migration steps.
- Primary Keys: All tables must have a primary key column (typically named
id) - Schema Compatibility: Tables should use standard SQLite data types
- Access Permissions: CollegeDB needs read/write access to existing databases
- KV Namespace: A Cloudflare KV namespace for storing shard mappings
import { collegedb, first, run } from '@earth-app/collegedb';
// Add your existing databases as shards - that's it!
collegedb(
{
kv: env.KV,
shards: {
'db-users': env.ExistingUserDB, // Your existing database with users
'db-orders': env.ExistingOrderDB, // Your existing database with orders
'db-new': env.NewDB // Optional new shard for growth
},
strategy: 'hash'
},
async () => {
// Existing data works immediately!
const existingUser = await first('user-from-old-db', 'SELECT * FROM users WHERE id = ?', ['user-from-old-db']);
// New data gets distributed automatically
await run('new-user-123', 'INSERT INTO users (id, name, email) VALUES (?, ?, ?)', ['new-user-123', 'New User', 'new@example.com']);
}
);That's it! No migration scripts, no manual mapping creation, no downtime. Your existing data is immediately accessible through CollegeDB's sharding system.
You can manually validate databases before integration if needed:
import { validateTableForSharding, listTables } from '@earth-app/collegedb';
// Check database structure
const tables = await listTables(env.ExistingDB);
console.log('Found tables:', tables);
// Validate each table
for (const table of tables) {
const validation = await validateTableForSharding(env.ExistingDB, table);
if (validation.isValid) {
console.log(`β
${table}: ${validation.recordCount} records ready`);
} else {
console.log(`β ${table}: ${validation.issues.join(', ')}`);
}
}If you want to inspect existing data before automatic migration:
import { discoverExistingPrimaryKeys } from '@earth-app/collegedb';
// Discover all user IDs in existing users table
const userIds = await discoverExistingPrimaryKeys(env.ExistingDB, 'users');
console.log(`Found ${userIds.length} existing users`);
// Custom primary key column
const orderIds = await discoverExistingPrimaryKeys(env.ExistingDB, 'orders', 'order_id');For complete control over the integration process:
import { integrateExistingDatabase, KVShardMapper } from '@earth-app/collegedb';
const mapper = new KVShardMapper(env.KV);
// Integrate your existing database
const result = await integrateExistingDatabase(
env.ExistingDB, // Your existing D1 database
'db-primary', // Shard name for this database
mapper, // KV mapper instance
{
tables: ['users', 'posts', 'orders'], // Tables to integrate
primaryKeyColumn: 'id', // Primary key column name
strategy: 'hash', // Allocation strategy for future records
addShardMappingsTable: true, // Add CollegeDB metadata table
dryRun: false // Set true for testing
}
);
if (result.success) {
console.log(`β
Integrated ${result.totalRecords} records from ${result.tablesProcessed} tables`);
} else {
console.error('Integration issues:', result.issues);
}After integration, initialize CollegeDB with your existing databases as shards:
import { initialize, first } from '@earth-app/collegedb';
// Include existing databases as shards
initialize({
kv: env.KV,
coordinator: env.ShardCoordinator,
shards: {
'db-primary': env.ExistingDB, // Your integrated existing database
'db-secondary': env.AnotherExistingDB, // Another existing database
'db-new': env.NewDB // Optional new shard for growth
},
strategy: 'hash'
});
// Existing data is now automatically routed!
const user = await first('existing-user-123', 'SELECT * FROM users WHERE id = ?', ['existing-user-123']);The simplest possible integration - just add your existing databases:
import { initialize, first, run } from '@earth-app/collegedb';
export default {
async fetch(request: Request, env: Env): Promise<Response> {
// Step 1: Initialize with existing databases (automatic migration happens here!)
initialize({
kv: env.KV,
shards: {
'db-users': env.ExistingUserDB, // Your existing database with users
'db-orders': env.ExistingOrderDB, // Your existing database with orders
'db-new': env.NewDB // New shard for future growth
},
strategy: 'hash'
});
// Step 2: Use existing data immediately - no migration needed!
// Supports typed queries, inserts, updates, deletes, etc.
const existingUser = await first<User>('user-from-old-db', 'SELECT * FROM users WHERE id = ?', ['user-from-old-db']);
// Step 3: New data gets distributed automatically
await run('new-user-123', 'INSERT INTO users (id, name, email) VALUES (?, ?, ?)', ['new-user-123', 'New User', 'new@example.com']);
return new Response(
JSON.stringify({
existingUser: existingUser.results[0],
message: 'Automatic drop-in replacement successful!'
})
);
}
};If your tables use different primary key column names:
// For tables with custom primary key columns
const productIds = await discoverExistingPrimaryKeys(env.ProductDB, 'products', 'product_id');
const sessionIds = await discoverExistingPrimaryKeys(env.SessionDB, 'sessions', 'session_key');Integrate only specific tables from existing databases:
const result = await integrateExistingDatabase(env.ExistingDB, 'db-legacy', mapper, {
tables: ['users', 'orders'] // Only integrate these tables
// Skip 'temp_logs', 'cache_data', etc.
});Test integration without making changes:
const testResult = await integrateExistingDatabase(env.ExistingDB, 'db-test', mapper, {
dryRun: true // No actual mappings created
});
console.log(`Would process ${testResult.totalRecords} records from ${testResult.tablesProcessed} tables`);- One-time Setup: Migration detection runs once per shard
- Minimal Overhead: Only scans table metadata and sample records
- Cached Results: Subsequent operations have no migration overhead
- Async Processing: Doesn't block application startup or queries
// Simple rollback - clear all mappings
import { KVShardMapper } from '@earth-app/collegedb';
const mapper = new KVShardMapper(env.KV);
await mapper.clearAllMappings(); // Returns to pre-migration state
// Or clear cache to force re-detection
import { clearMigrationCache } from '@earth-app/collegedb';
clearMigrationCache(); // Forces fresh migration check// Error: Primary key column 'id' not found
// Solution: Add primary key to existing table
await db.prepare(`ALTER TABLE legacy_table ADD COLUMN id TEXT PRIMARY KEY`).run();// For very large databases, integrate in batches
const allTables = await listTables(env.LargeDB);
const batchSize = 2;
for (let i = 0; i < allTables.length; i += batchSize) {
const batch = allTables.slice(i, i + batchSize);
await integrateExistingDatabase(env.LargeDB, 'db-large', mapper, {
tables: batch
});
}// Handle different primary key column names per table
const customIntegration = {
users: 'user_id',
orders: 'order_number',
products: 'sku'
};
for (const [table, pkColumn] of Object.entries(customIntegration)) {
const keys = await discoverExistingPrimaryKeys(env.DB, table, pkColumn);
await createMappingsForExistingKeys(keys, ['db-shard1'], 'hash', mapper);
}| Function | Description | Parameters |
|---|---|---|
collegedb(config, callback) |
Initialize CollegeDB, then run a callback | CollegeDBConfig, () => T |
initialize(config) |
Initialize CollegeDB with configuration | CollegeDBConfig |
createSchema(db, schema) |
Create schema on a shard database | SQLDatabase, string |
prepare(key, sql) |
Prepare a SQL statement for execution | string, string |
run(key, sql, bindings) |
Execute a SQL query with primary key routing | string, string, any[] |
first(key, sql, bindings) |
Execute a SQL query and return first result | string, string, any[] |
all(key, sql, bindings) |
Execute a SQL query and return all results | string, string, any[] |
runShard(shard, sql, bindings) |
Execute a query directly on a specific shard | string, string, any[] |
allShard(shard, sql, bindings) |
Execute a query on specific shard, return all results | string, string, any[] |
firstShard(shard, sql, bindings) |
Execute a query on specific shard, return first result | string, string, any[] |
runAllShards(sql, bindings, batchSize) |
Execute query on all shards | string, any[], number |
allAllShards(sql, bindings, batchSize) |
Execute query on all shards, return all results from all shards | string, any[], number |
firstAllShards(sql, bindings, batchSize) |
Execute query on all shards, return first result from all shards | string, any[], number |
reassignShard(key, newShard) |
Move primary key to different shard | string, string |
listKnownShards() |
Get list of available shards | void |
getShardStats() |
Get statistics for all shards | void |
getDatabaseSizeForShard(shard) |
Get size of a specific shard in bytes | string |
flush() |
Clear all shard mappings (development only) | void |
| Function | Description | Parameters |
|---|---|---|
createRedisKVProvider(client, options?) |
Adapt a Redis client to CollegeDB's KVStorage contract |
RedisLikeClient, { scanCount?: number } |
createValkeyKVProvider(client, options?) |
Adapt a Valkey client to CollegeDB's KVStorage contract |
RedisLikeClient, { scanCount?: number } |
createNuxtHubKVProvider(client) |
Adapt NuxtHub/Unstorage-style KV clients to KVStorage |
NuxtHubKVLike |
createPostgreSQLProvider(client, sqlTag?) |
Adapt PostgreSQL or Drizzle PostgreSQL clients | PostgresClientLike, sqlTag? |
createMySQLProvider(client, sqlTag?) |
Adapt MySQL/MariaDB or Drizzle MySQL/MariaDB clients | MySQLClientLike, sqlTag? |
createSQLiteProvider(client, sqlTag?) |
Adapt SQLite/D1 or Drizzle SQLite/D1 clients | SQLiteClientLike, sqlTag? |
createDrizzleSQLProvider(client, sqlTag) |
Generic Drizzle adapter (optional helper) | DrizzleClientLike, DrizzleSqlTagLike |
createHyperdrivePostgresProvider(binding, clientFactory) |
Create a PostgreSQL SQLDatabase adapter using a Hyperdrive binding |
HyperdriveBindingLike, HyperdrivePostgresClientFactory |
createHyperdriveMySQLProvider(binding, clientFactory) |
Create a MySQL SQLDatabase adapter using a Hyperdrive binding |
HyperdriveBindingLike, HyperdriveMySQLClientFactory |
isKVStorage(value) |
Runtime guard for KVStorage |
unknown |
isSQLDatabase(value) |
Runtime guard for SQLDatabase |
unknown |
| Function | Description | Parameters |
|---|---|---|
autoDetectAndMigrate(d1, shard, config) |
Automatically detect and migrate existing data | SQLDatabase, string, config |
checkMigrationNeeded(d1, shard, config) |
Check if database needs migration | SQLDatabase, string, config |
validateTableForSharding(d1, table) |
Check if table is suitable for sharding | SQLDatabase, string |
discoverExistingPrimaryKeys(d1, table) |
Find all primary keys in existing table | SQLDatabase, string |
integrateExistingDatabase(d1, shard) |
Complete drop-in integration of existing DB | SQLDatabase, string, mapper |
createMappingsForExistingKeys(keys) |
Create shard mappings for existing keys | string[], string[], strategy |
listTables(d1) |
Get list of tables in database | SQLDatabase |
clearMigrationCache() |
Clear automatic migration cache | void |
| Class | Description | Usage |
|---|---|---|
CollegeDBError |
Custom error class for CollegeDB operations | throw new CollegeDBError(msg, code) |
The CollegeDBError class extends the native Error class and includes an optional error code for better error categorization:
try {
await run('invalid-key', 'SELECT * FROM users WHERE id = ?', ['invalid-key']);
} catch (error) {
if (error instanceof CollegeDBError) {
console.error(`CollegeDB Error (${error.code}): ${error.message}`);
}
}The ShardCoordinator is an optional Durable Object that provides centralized shard allocation and statistics management. All endpoints return JSON responses.
| Endpoint | Method | Description | Request Body | Response |
|---|---|---|---|---|
/shards |
GET | List all registered shards | None | ["db-east", "db-west"] |
/shards |
POST | Register a new shard | {"shard": "db-new"} |
{"success": true} |
/shards |
DELETE | Unregister a shard | {"shard": "db-old"} |
{"success": true} |
/stats |
GET | Get shard statistics | None | [{"binding":"db-east","count":1542}] |
/stats |
POST | Update shard statistics | {"shard": "db-east", "count": 1600} |
{"success": true} |
/allocate |
POST | Allocate shard for primary key | {"primaryKey": "user-123"} |
{"shard": "db-west"} |
/allocate |
POST | Allocate with specific strategy | {"primaryKey": "user-123", "strategy": "hash"} |
{"shard": "db-west"} |
/flush |
POST | Clear all state (development only) | None | {"success": true} |
/health |
GET | Health check | None | "OK" |
| Method | Description | Parameters | Returns |
|---|---|---|---|
new ShardCoordinator(state) |
Create coordinator instance | DurableObjectState |
ShardCoordinator |
fetch(request) |
Handle HTTP requests | Request |
Promise<Response> |
incrementShardCount(shard) |
Increment key count for shard | string |
Promise<void> |
decrementShardCount(shard) |
Decrement key count for shard | string |
Promise<void> |
import { ShardCoordinator } from '@earth-app/collegedb';
// Export for Cloudflare Workers runtime
export { ShardCoordinator };
// Use in your worker
export default {
async fetch(request: Request, env: Env) {
const coordinatorId = env.ShardCoordinator.idFromName('default');
const coordinator = env.ShardCoordinator.get(coordinatorId);
// Allocate shard for user
const response = await coordinator.fetch('http://coordinator/allocate', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ primaryKey: 'user-123', strategy: 'hash' })
});
const { shard } = await response.json();
// Use allocated shard for database operations...
}
};The main configuration interface supports both single strategies and mixed strategies:
interface CollegeDBConfig {
kv: KVStorage;
coordinator?: DurableObjectNamespace;
shards: Record<string, SQLDatabase>;
strategy?: ShardingStrategy | MixedShardingStrategy;
targetRegion?: D1Region;
shardLocations?: Record<string, ShardLocation>;
disableAutoMigration?: boolean; // Default: false
hashShardMappings?: boolean; // Default: true
maxDatabaseSize?: number; // Default: undefined (no limit)
mappingCacheTtlMs?: number; // Default: 30000
knownShardsCacheTtlMs?: number; // Default: 10000
sizeCacheTtlMs?: number; // Default: 30000
migrationConcurrency?: number; // Default: 25
}When hashShardMappings is enabled (default), original keys cannot be recovered during shard operations like getKeysForShard(). This is intentional for privacy but means you'll get fewer results from such operations. For full key recovery, set hashShardMappings: false, but be aware this may expose sensitive data in KV keys.
// Single strategy for all operations
type ShardingStrategy = 'round-robin' | 'random' | 'hash' | 'location';
// Mixed strategy for different operation types
interface MixedShardingStrategy {
read: ShardingStrategy; // Strategy for SELECT operations
write: ShardingStrategy; // Strategy for INSERT/UPDATE/DELETE operations
}
// Operation types for internal routing
type OperationType = 'read' | 'write';// Single strategy configuration (traditional)
const singleStrategyConfig: CollegeDBConfig = {
kv: env.KV,
strategy: 'hash', // All operations use hash strategy
shards: {
/* ... */
}
};
// Mixed strategy configuration (new feature)
const mixedStrategyConfig: CollegeDBConfig = {
kv: env.KV,
strategy: {
read: 'hash', // Fast, consistent reads
write: 'location' // Optimal data placement
},
targetRegion: 'wnam',
shardLocations: {
/* ... */
},
shards: {
/* ... */
}
};CollegeDB supports automatic size-based shard exclusion to prevent individual shards from becoming too large. This feature helps maintain optimal performance and prevents hitting database storage limits.
const config: CollegeDBConfig = {
kv: env.KV,
shards: {
'db-east': env.DB_EAST,
'db-west': env.DB_WEST,
'db-central': env.DB_CENTRAL
},
strategy: 'hash',
maxDatabaseSize: 500 * 1024 * 1024 // 500 MB limit per shard
};When maxDatabaseSize is configured:
- Allocation Phase: Before allocating new records, CollegeDB checks each shard's size using efficient SQLite pragmas
- Size Filtering: Shards exceeding the limit are excluded from new allocations
- Fallback Protection: If all shards exceed the limit, allocation continues to prevent complete failure
- Existing Records: Records already mapped to oversized shards remain accessible
The size check uses SQLite's PRAGMA page_count and PRAGMA page_size for accurate, low-overhead size calculation:
-- Efficient size calculation (used internally)
PRAGMA page_count; -- Returns number of database pages
PRAGMA page_size; -- Returns size of each page in bytes
-- Total size = page_count Γ page_size// Conservative limit for high-performance scenarios
const performanceConfig: CollegeDBConfig = {
// ... other config
maxDatabaseSize: 100 * 1024 * 1024, // 100 MB per shard
strategy: 'round-robin' // Ensures even distribution
};
// Standard production limit
const productionConfig: CollegeDBConfig = {
// ... other config
maxDatabaseSize: 1024 * 1024 * 1024, // 1 GB per shard
strategy: 'hash' // Consistent allocation
};
// Check individual shard sizes
import { getDatabaseSizeForShard } from '@earth-app/collegedb';
const eastSize = await getDatabaseSizeForShard('db-east');
console.log(`East shard: ${Math.round(eastSize / 1024 / 1024)} MB`);Enable debug logging to monitor size-based exclusions:
const config: CollegeDBConfig = {
// ... other config
maxDatabaseSize: 500 * 1024 * 1024,
debug: true // Logs when shards are excluded due to size
};
// Console output example:
// "Excluded 2 shards due to size limits: db-east, db-central"- Size Check Frequency: Only performed during new allocations (not on reads)
- Query Efficiency: Uses fast SQLite pragmas (microsecond execution time)
- Parallel Execution: Size checks run concurrently across all shards
- Caching: Size checks are cached in-memory (controlled by
sizeCacheTtlMs, default30000)
CollegeDB exports TypeScript types for better development experience and type safety:
| Type | Description | Example |
|---|---|---|
CollegeDBConfig |
Main configuration object | { kv, shards, strategy } |
KVStorage |
Provider-agnostic KV contract | createRedisKVProvider(redisClient) |
SQLDatabase |
Provider-agnostic SQL contract | createPostgreSQLProvider(pgPool) |
NuxtHubKVLike |
NuxtHub/Unstorage KV contract | createNuxtHubKVProvider(kv) |
DrizzleClientLike |
Minimal Drizzle DB contract | createPostgreSQLProvider(drizzleDb, sql) |
DrizzleSqlTagLike |
Drizzle SQL tag contract | createSQLiteProvider(drizzleDb, sql) |
QueryResult |
Standard query response shape | { success, results, meta } |
QueryResultMeta |
Query execution metadata | { duration, changes?, last_row_id? } |
ShardingStrategy |
Single strategy options | 'hash' | 'location' | 'round-robin' | 'random' |
MixedShardingStrategy |
Mixed strategy configuration | { read: 'hash', write: 'location' } |
OperationType |
Database operation types | 'read' | 'write' |
D1Region |
Cloudflare D1 regions | 'wnam' | 'enam' | 'weur' | ... |
ShardLocation |
Geographic shard configuration | { region: 'wnam', priority: 2 } |
ShardStats |
Shard usage statistics | { binding: 'db-east', count: 1542 } |
import type { MixedShardingStrategy, CollegeDBConfig } from '@earth-app/collegedb';
// Type-safe mixed strategy configuration
const mixedStrategy: MixedShardingStrategy = {
read: 'hash', // Fast, deterministic reads
write: 'location' // Geographically optimized writes
};
const config: CollegeDBConfig = {
kv: env.KV,
strategy: mixedStrategy, // Type-checked
targetRegion: 'wnam',
shardLocations: {
'db-west': { region: 'wnam', priority: 2 },
'db-east': { region: 'enam', priority: 1 }
},
shards: {
'db-west': env.DB_WEST,
'db-east': env.DB_EAST
}
};βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Cloudflare Worker β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β CollegeDB Router β
β βββββββββββββββ βββββββββββββββ βββββββββββββββββββββββ β
β β KV β β Durable β β Query Router β β
β β Mappings β β Objects β β β β
β β β β (Optional) β β β β
β βββββββββββββββ βββββββββββββββ βββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β βββββββββββββββ βββββββββββββββ βββββββββββββββββββββββ β
β β D1 East β β D1 West β β D1 Central β β
β β Shard β β Shard β β Shard β β
β β β β β β (Optional) β β
β βββββββββββββββ βββββββββββββββ βββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ- Query Received: Application sends query with primary key
- Shard Resolution: CollegeDB checks KV for existing mapping or calculates shard using strategy
- Direct Allocation: For new keys, shard selected using hash/random/location algorithm
- Query Execution: SQL executed on appropriate D1 database
- Response: Results returned to application
- Query Received: Application sends query with primary key
- Shard Resolution: CollegeDB checks KV for existing mapping
- Coordinator Allocation: For new keys, coordinator allocates shard using round-robin
- State Update: Coordinator updates round-robin index and shard statistics
- Query Execution: SQL executed on appropriate D1 database
- Response: Results returned to application
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β ShardCoordinator (Durable Object) β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β βββββββββββββββββββ βββββββββββββββββββββββββββββββββββ β
β β HTTP API β β Persistent Storage β β
β β - /allocate β β - knownShards: string[] β β
β β - /shards β β - shardStats: ShardStats{} β β
β β - /stats β β - strategy: ShardingStrategy β β
β β - /health β β - roundRobinIndex: number β β
β βββββββββββββββββββ βββββββββββββββββββββββββββββββββββ β
β β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Allocation Algorithms β β
β β - Round-Robin: state.roundRobinIndex β β
β β - Hash: consistent hash(primaryKey) β β
β β - Random: Math.random() * shards.length β β
β β - Location: region proximity + priority β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ- Hash: Consistent hashing for deterministic shard selection
- Round-Robin: Evenly distribute new keys across shards
- Random: Random shard selection for load balancing
- Location: Geographic proximity-based allocation for optimal latency
# Create multiple D1 databases for sharding
wrangler d1 create collegedb-east
wrangler d1 create collegedb-west
wrangler d1 create collegedb-central# Create KV namespace for shard mappings
wrangler kv namespace create "KV"{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "collegedb-app",
"main": "src/index.ts",
"compatibility_date": "2026-04-15",
"d1_databases": [
{
"binding": "db-east",
"database_name": "collegedb-east",
"database_id": "your-east-database-id"
},
{
"binding": "db-west",
"database_name": "collegedb-west",
"database_id": "your-west-database-id"
},
{
"binding": "db-central",
"database_name": "collegedb-central",
"database_id": "your-central-database-id"
}
],
"kv_namespaces": [
{
"binding": "KV",
"id": "your-kv-namespace-id",
"preview_id": "your-kv-preview-id"
}
],
"durable_objects": {
"bindings": [
{
"name": "ShardCoordinator",
"class_name": "ShardCoordinator"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["ShardCoordinator"]
}
],
"env": {
"production": {
"d1_databases": [
{
"binding": "db-east",
"database_name": "collegedb-prod-east",
"database_id": "your-prod-east-id"
},
{
"binding": "db-west",
"database_name": "collegedb-prod-west",
"database_id": "your-prod-west-id"
}
],
"kv_namespaces": [
{
"binding": "KV",
"id": "your-prod-kv-namespace-id"
}
],
"durable_objects": {
"bindings": [
{
"name": "ShardCoordinator",
"class_name": "ShardCoordinator"
}
]
}
}
}
}Create your main worker file with ShardCoordinator export:
// src/index.ts
import { collegedb, ShardCoordinator, first, run } from '@earth-app/collegedb';
// IMPORTANT: Export ShardCoordinator for Cloudflare Workers runtime
export { ShardCoordinator };
interface Env {
KV: KVNamespace;
ShardCoordinator: DurableObjectNamespace;
'db-east': D1Database;
'db-west': D1Database;
'db-central': D1Database;
}
export default {
async fetch(request: Request, env: Env): Promise<Response> {
return await collegedb(
{
kv: env.KV,
coordinator: env.ShardCoordinator, // Optional: only needed for round-robin
strategy: 'hash', // or 'round-robin', 'random', 'location'
shards: {
'db-east': env['db-east'],
'db-west': env['db-west'],
'db-central': env['db-central']
}
},
async () => {
// Your application logic here
const url = new URL(request.url);
if (url.pathname === '/user') {
const userId = url.searchParams.get('id');
if (!userId) {
return new Response('Missing user ID', { status: 400 });
}
const user = await first(userId, 'SELECT * FROM users WHERE id = ?', [userId]);
return Response.json(user);
}
return new Response('CollegeDB API', { status: 200 });
}
);
}
};# Deploy to Cloudflare Workers
wrangler deploy
# Deploy with environment
wrangler deploy --env productionimport { getShardStats, listKnownShards } from '@earth-app/collegedb';
// Get detailed statistics
const stats = await getShardStats();
console.log(stats);
// [
// { binding: 'db-east', count: 1542 },
// { binding: 'db-west', count: 1458 }
// ]
// List available shards
const shards = await listKnownShards();
console.log(shards); // ['db-east', 'db-west']// Get coordinator instance
const coordinatorId = env.ShardCoordinator.idFromName('default');
const coordinator = env.ShardCoordinator.get(coordinatorId);
// Get real-time shard statistics
const statsResponse = await coordinator.fetch('http://coordinator/stats');
const detailedStats = await statsResponse.json();
console.log(detailedStats);
/* Returns:
[
{
"binding": "db-east",
"count": 1542,
"lastUpdated": 1672531200000
},
{
"binding": "db-west",
"count": 1458,
"lastUpdated": 1672531205000
}
]
*/
// List registered shards
const shardsResponse = await coordinator.fetch('http://coordinator/shards');
const allShards = await shardsResponse.json();
console.log(allShards); // ['db-east', 'db-west', 'db-central']async function createMonitoringDashboard(env: Env) {
const coordinatorId = env.ShardCoordinator.idFromName('default');
const coordinator = env.ShardCoordinator.get(coordinatorId);
// Get comprehensive metrics
const [shardsResponse, statsResponse, healthResponse] = await Promise.all([
coordinator.fetch('http://coordinator/shards'),
coordinator.fetch('http://coordinator/stats'),
coordinator.fetch('http://coordinator/health')
]);
const shards = await shardsResponse.json();
const stats = await statsResponse.json();
const isHealthy = healthResponse.ok;
// Calculate distribution metrics
const totalKeys = stats.reduce((sum: number, shard: any) => sum + shard.count, 0);
const avgKeysPerShard = totalKeys / stats.length;
const maxKeys = Math.max(...stats.map((s: any) => s.count));
const minKeys = Math.min(...stats.map((s: any) => s.count));
const distributionRatio = maxKeys / (minKeys || 1);
// Check for stale statistics (>5 minutes)
const now = Date.now();
const staleThreshold = 5 * 60 * 1000; // 5 minutes
const staleShards = stats.filter((shard: any) => now - shard.lastUpdated > staleThreshold);
return {
healthy: isHealthy,
totalShards: shards.length,
totalKeys,
avgKeysPerShard: Math.round(avgKeysPerShard),
distributionRatio: Math.round(distributionRatio * 100) / 100,
isBalanced: distributionRatio < 1.5, // Less than 50% difference
staleShards: staleShards.length,
shardDetails: stats.map((shard: any) => ({
...shard,
loadPercentage: Math.round((shard.count / totalKeys) * 100),
isStale: now - shard.lastUpdated > staleThreshold
}))
};
}
// Usage in monitoring endpoint
export default {
async fetch(request: Request, env: Env) {
if (new URL(request.url).pathname === '/monitor') {
const dashboard = await createMonitoringDashboard(env);
return Response.json(dashboard);
}
// ... rest of your app
}
};import { reassignShard } from '@earth-app/collegedb';
// Move a primary key to a different shard
await reassignShard('user-123', 'db-west');Monitor your CollegeDB deployment by tracking:
- Shard distribution balance
- Query latency per shard
- Error rates and failed queries
- KV operation metrics
- ShardCoordinator health and availability
async function performHealthChecks(env: Env): Promise<HealthReport> {
const results: HealthReport = {
overall: 'healthy',
timestamp: new Date().toISOString(),
checks: {}
};
// 1. Test KV availability
try {
await env.KV.put('health-check', 'ok', { expirationTtl: 60 });
const kvTest = await env.KV.get('health-check');
results.checks.kv = kvTest === 'ok' ? 'healthy' : 'degraded';
} catch (error) {
results.checks.kv = 'unhealthy';
results.overall = 'unhealthy';
}
// 2. Test ShardCoordinator availability
if (env.ShardCoordinator) {
try {
const coordinatorId = env.ShardCoordinator.idFromName('default');
const coordinator = env.ShardCoordinator.get(coordinatorId);
const healthResponse = await coordinator.fetch('http://coordinator/health');
results.checks.coordinator = healthResponse.ok ? 'healthy' : 'unhealthy';
if (!healthResponse.ok) {
results.overall = 'degraded';
}
} catch (error) {
results.checks.coordinator = 'unhealthy';
results.overall = 'degraded'; // Can fallback to hash allocation
}
}
// 3. Test each D1 shard
const shardTests = Object.entries(env)
.filter(([key]) => key.startsWith('db-'))
.map(async ([shardName, db]: [string, any]) => {
try {
// Simple query to test connectivity
await db.prepare('SELECT 1 as test').first();
results.checks[shardName] = 'healthy';
} catch (error) {
results.checks[shardName] = 'unhealthy';
results.overall = 'unhealthy';
}
});
await Promise.all(shardTests);
// 4. Check shard distribution balance
if (results.checks.coordinator === 'healthy') {
try {
const coordinatorId = env.ShardCoordinator.idFromName('default');
const coordinator = env.ShardCoordinator.get(coordinatorId);
const statsResponse = await coordinator.fetch('http://coordinator/stats');
const stats = await statsResponse.json();
const totalKeys = stats.reduce((sum: number, shard: any) => sum + shard.count, 0);
if (totalKeys > 0) {
const avgKeys = totalKeys / stats.length;
const maxKeys = Math.max(...stats.map((s: any) => s.count));
const distributionRatio = maxKeys / avgKeys;
results.checks.distribution = distributionRatio < 2 ? 'healthy' : 'degraded';
results.distributionRatio = distributionRatio;
if (distributionRatio >= 3 && results.overall === 'healthy') {
results.overall = 'degraded';
}
}
} catch (error) {
results.checks.distribution = 'unknown';
}
}
return results;
}
interface HealthReport {
overall: 'healthy' | 'degraded' | 'unhealthy';
timestamp: string;
checks: Record<string, 'healthy' | 'degraded' | 'unhealthy' | 'unknown'>;
distributionRatio?: number;
}
// Health endpoint example
export default {
async fetch(request: Request, env: Env) {
if (new URL(request.url).pathname === '/health') {
const health = await performHealthChecks(env);
const statusCode = health.overall === 'healthy' ? 200 : health.overall === 'degraded' ? 206 : 503;
return Response.json(health, { status: statusCode });
}
// ... rest of your app
}
};// Integration with external monitoring services
async function sendAlert(severity: 'warning' | 'critical', message: string, env: Env) {
// Example: Slack webhook
if (env.SLACK_WEBHOOK_URL) {
await fetch(env.SLACK_WEBHOOK_URL, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
text: `π¨ CollegeDB ${severity.toUpperCase()}: ${message}`,
username: 'CollegeDB Monitor'
})
});
}
// Example: Custom webhook
if (env.MONITORING_WEBHOOK_URL) {
await fetch(env.MONITORING_WEBHOOK_URL, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
service: 'collegedb',
severity,
message,
timestamp: new Date().toISOString()
})
});
}
}
// Scheduled monitoring (using Cron Triggers)
export default {
async scheduled(event: ScheduledEvent, env: Env, ctx: ExecutionContext): Promise<void> {
const health = await performHealthChecks(env);
if (health.overall === 'unhealthy') {
await sendAlert('critical', `System unhealthy: ${JSON.stringify(health.checks)}`, env);
} else if (health.overall === 'degraded') {
await sendAlert('warning', `System degraded: ${JSON.stringify(health.checks)}`, env);
}
// Check for severe shard imbalance
if (health.distributionRatio && health.distributionRatio > 5) {
await sendAlert('warning', `Severe shard imbalance detected: ${health.distributionRatio}x difference`, env);
}
}
};CollegeDB provides significant performance improvements through horizontal scaling. Here are mathematical estimates comparing single D1 database vs CollegeDB with different shard counts:
SELECT, VALUES, TABLE, PRAGMA, ...
| Configuration | Query Latency* | Concurrent Queries | Throughput Gain |
|---|---|---|---|
| Single D1 | ~50-80ms | Limited by D1 limits | 1x (baseline) |
| CollegeDB (10 shards) | ~55-85ms | 10x parallel capacity | ~8-9x |
| CollegeDB (100 shards) | ~60-90ms | 100x parallel capacity | ~75-80x |
| CollegeDB (1000 shards) | ~65-95ms | 1000x parallel capacity | ~650-700x |
*Includes KV lookup overhead (~5-15ms) and SHA-256 hashing overhead (~1-3ms when hashShardMappings: true)
INSERT, UPDATE, DELETE, ...
| Configuration | Write Latency* | Concurrent Writes | Throughput Gain |
|---|---|---|---|
| Single D1 | ~80-120ms | ~50 writes/sec | 1x (baseline) |
| CollegeDB (10 shards) | ~90-135ms | ~450 writes/sec | ~9x |
| CollegeDB (100 shards) | ~95-145ms | ~4,200 writes/sec | ~84x |
| CollegeDB (1000 shards) | ~105-160ms | ~35,000 writes/sec | ~700x |
*Includes KV mapping creation/update overhead (~10-25ms) and SHA-256 hashing overhead (~1-3ms when hashShardMappings: true)
- Best for: Consistent performance, even data distribution
- Latency: Lowest overhead (no coordinator calls, ~1-3ms SHA-256 hashing when enabled)
- Throughput: Optimal for high-volume scenarios
| Shards | Avg Latency | Distribution Quality | Coordinator Dependency |
|---|---|---|---|
| 10 | +5ms | Excellent | None |
| 100 | +5ms | Excellent | None |
| 1000 | +5ms | Excellent | None |
- Best for: Guaranteed even distribution
- Latency: Requires coordinator communication
- Throughput: Good, limited by coordinator
| Shards | Avg Latency | Distribution Quality | Coordinator Dependency |
|---|---|---|---|
| 10 | +15ms | Perfect | High |
| 100 | +20ms | Perfect | High |
| 1000 | +25ms | Perfect | High |
- Best for: Simple setup, good distribution over time
- Latency: Low overhead
- Throughput: Good for medium-scale deployments
| Shards | Avg Latency | Distribution Quality | Coordinator Dependency |
|---|---|---|---|
| 10 | +3ms | Good | None |
| 100 | +3ms | Good | None |
| 1000 | +3ms | Fair | None |
- Best for: Geographic optimization, reduced latency
- Latency: Optimized by region proximity
- Throughput: Regional performance benefits
| Shards | Avg Latency | Geographic Benefit | Coordinator Dependency |
|---|---|---|---|
| 10 | +8ms | Excellent (-20-40ms) | Optional |
| 100 | +10ms | Excellent (-20-40ms) | Optional |
| 1000 | +12ms | Excellent (-20-40ms) | Optional |
- Best for: Optimizing both read and write performance independently
- Latency: Best of both strategies combined
- Throughput: Optimal for workloads with different read/write patterns
High-Performance Mix: { read: 'hash', write: 'location' }
| Operation | Strategy | Latency Impact | Throughput Benefit | Geographic Benefit |
|---|---|---|---|---|
| Reads | Hash | +5ms | Excellent | None |
| Writes | Location | +8ms (-20-40ms regional) | Good | Excellent (-20-40ms) |
Balanced Mix: { read: 'location', write: 'hash' }
| Operation | Strategy | Latency Impact | Throughput Benefit | Geographic Benefit |
|---|---|---|---|---|
| Reads | Location | +8ms (-20-40ms regional) | Good | Excellent (-20-40ms) |
| Writes | Hash | +5ms | Excellent | None |
Enterprise Mix: { read: 'hash', write: 'round-robin' }
| Operation | Strategy | Latency Impact | Distribution Quality | Coordinator Dependency |
|---|---|---|---|---|
| Reads | Hash | +5ms | Excellent | None |
| Writes | Round-Robin | +15-25ms | Perfect | High |
Hash + Location Mix ({ read: 'hash', write: 'location' })
| Shards | Read Latency | Write Latency | Combined Benefit | Best Use Case |
|---|---|---|---|---|
| 10 | +5ms | +8ms (-30ms regional) | ~22ms net improvement | Global apps |
| 100 | +5ms | +10ms (-30ms regional) | ~20ms net improvement | Enterprise scale |
| 1000 | +5ms | +12ms (-30ms regional) | ~18ms net improvement | Massive scale |
Location + Hash Mix ({ read: 'location', write: 'hash' })
| Shards | Read Latency | Write Latency | Combined Benefit | Best Use Case |
|---|---|---|---|---|
| 10 | +8ms (-30ms regional) | +5ms | ~17ms net improvement | Read-heavy regional |
| 100 | +10ms (-30ms regional) | +5ms | ~15ms net improvement | Analytics workloads |
| 1000 | +12ms (-30ms regional) | +5ms | ~13ms net improvement | Large-scale reporting |
Hash + Round-Robin Mix ({ read: 'hash', write: 'round-robin' })
| Shards | Read Latency | Write Latency | Distribution Quality | Best Use Case |
|---|---|---|---|---|
| 10 | +5ms | +15ms | Perfect writes, Excellent reads | Balanced workloads |
| 100 | +5ms | +20ms | Perfect writes, Excellent reads | Large databases |
| 1000 | +5ms | +25ms | Perfect writes, Excellent reads | Enterprise scale |
Scenario: Massive datasets requiring optimal query performance and balanced growth
// Recommended: Hash reads + Round-Robin writes
{
strategy: { read: 'hash', write: 'round-robin' },
coordinator: env.ShardCoordinator // Required for round-robin
}Performance Profile:
- Read latency: +5ms (fastest possible routing)
- Write latency: +15-25ms (coordinator overhead)
- Data distribution: Perfect balance over time
- Ideal for: Analytics platforms, data warehouses, reporting systems
Scenario: Global applications with users across multiple continents
// Recommended: Hash reads + Location writes
{
strategy: { read: 'hash', write: 'location' },
targetRegion: getClosestRegionFromIP(request), // Dynamic region targeting
shardLocations: {
'db-americas': { region: 'wnam', priority: 2 },
'db-europe': { region: 'weur', priority: 2 },
'db-asia': { region: 'apac', priority: 2 }
}
}Performance Profile:
- Read latency: +5ms (consistent global performance)
- Write latency: +8ms baseline (-20-40ms regional benefit)
- Net improvement: 15-35ms for geographically distributed users
- Ideal for: Social networks, e-commerce, content platforms
Scenario: Applications with heavy write loads (IoT, logging, real-time data)
// Recommended: Location reads + Hash writes
{
strategy: { read: 'location', write: 'hash' },
targetRegion: 'wnam',
shardLocations: {
'db-west': { region: 'wnam', priority: 3 },
'db-central': { region: 'enam', priority: 2 },
'db-east': { region: 'enam', priority: 1 }
}
}Performance Profile:
- Read latency: +8ms baseline (-20-40ms regional benefit)
- Write latency: +5ms (fastest write routing)
- Write throughput: Maximum possible for hash strategy
- Ideal for: IoT data collection, real-time analytics, logging systems
Scenario: SaaS applications with predictable performance requirements
// Recommended: Hash reads + Hash writes (consistent performance)
{
strategy: { read: 'hash', write: 'hash' }
// No coordinator needed, predictable routing for both operations
}Performance Profile:
- Read latency: +5ms (most predictable)
- Write latency: +5ms (most predictable)
- Tenant isolation: Natural sharding by tenant ID
- Ideal for: B2B SaaS, multi-tenant platforms, predictable workloads
Scenario: Analytics and reporting workloads with occasional writes
// Recommended: Random reads + Location writes
{
strategy: { read: 'random', write: 'location' },
targetRegion: 'wnam',
shardLocations: { /* geographic configuration */ }
}Performance Profile:
- Read latency: +3ms (lowest overhead, good load balancing)
- Write latency: +8ms baseline (-20-40ms regional benefit)
- Read load distribution: Excellent across all shards
- Ideal for: Business intelligence, data analysis, reporting dashboards
| Database Size | Best Mixed Strategy | Read Performance | Write Performance | Overall Benefit |
|---|---|---|---|---|
| Small (1K-100K records) | {read: 'hash', write: 'hash'} |
Excellent | Excellent | Consistent, simple |
| Medium (100K-1M records) | {read: 'hash', write: 'location'} |
Excellent | Good + Regional | 15-35ms improvement |
| Large (1M-10M records) | {read: 'hash', write: 'round-robin'} |
Excellent | Perfect distribution | Optimal scaling |
| Very Large (10M+ records) | {read: 'location', write: 'round-robin'} |
Regional optimization | Perfect distribution | Best for global scale |
| Geographic Spread | Best Mixed Strategy | Latency Improvement | Use Case |
|---|---|---|---|
| Single Region | {read: 'hash', write: 'hash'} |
+5ms both operations | Simple, fast |
| Multi-Region | {read: 'hash', write: 'location'} |
15-35ms net improvement | Global apps |
| Global | {read: 'location', write: 'location'} |
20-40ms both operations | Maximum geographic optimization |
| Workload Type | Read/Write Ratio | Best Mixed Strategy | Primary Benefit |
|---|---|---|---|
| Read-Heavy | 90% reads | {read: 'random', write: 'location'} |
Load-balanced queries |
| Write-Heavy | 70% writes | {read: 'location', write: 'hash'} |
Fast write processing |
| Balanced | 50/50 | {read: 'hash', write: 'hash'} |
Consistent performance |
| Analytics | 95% reads | {read: 'location', write: 'round-robin'} |
Regional + perfect distribution |
CollegeDB uses SHA-256 hashing by default (hashShardMappings: true) to protect sensitive data in KV keys. This adds a small but measurable performance overhead:
| Operation Type | SHA-256 Overhead | Total Latency Impact | Security Benefit |
|---|---|---|---|
| Query (Read) | ~1-2ms | 2-4% increase | Keys hashed in KV storage |
| Insert (Write) | ~2-3ms | 2-3% increase | Multi-key mappings protected |
| Update Mapping | ~1-3ms | 1-2% increase | Existing keys remain secure |
| Key Type | Example | Hash Time | Recommendation |
|---|---|---|---|
| Short keys | user-123 |
~0.5-1ms | Minimal impact |
| Medium keys | email:user@example.com |
~1-2ms | Good balance |
| Long keys | session:very-long-token-here |
~2-3ms | Consider key shortening |
| Multi-key operations | 3+ lookup keys | ~3-5ms total | Benefits outweigh cost |
// With hashing (default - recommended for production)
const secureConfig = {
hashShardMappings: true // Default
// + Privacy: Sensitive data not visible in KV
// + Security: Keys cannot be enumerated
// - Performance: +1-3ms per operation
// - Debugging: Original keys not recoverable
};
// Without hashing (development/debugging only)
const developmentConfig = {
hashShardMappings: false
// + Performance: No hashing overhead
// + Debugging: Original keys visible in KV
// - Privacy: Sensitive data exposed in KV keys
// - Security: Keys can be enumerated
};- Keep keys reasonably short - Hash time scales with key length
- Use hashing in production - Security benefits outweigh minimal performance cost
- Disable hashing for development - When debugging shard distribution
- Monitor hash performance - Track operation latencies in high-volume scenarios
Bottom Line: SHA-256 hashing adds 1-3ms overhead but provides essential privacy and security benefits. The performance impact is minimal compared to network latency and D1 query time.
- Single D1: Limited to D1's database size constraints
- CollegeDB: Virtually unlimited through horizontal distribution
- Data per shard: Scales inversely with shard count (1000 shards = 1/1000 data per shard)
// Location-aware sharding reduces latency by 20-40ms
initialize({
kv: env.KV,
strategy: 'location',
targetRegion: 'wnam', // Western North America
shardLocations: {
'db-west': { region: 'wnam', priority: 2 }, // Preferred
'db-east': { region: 'enam', priority: 1 }, // Secondary
'db-europe': { region: 'weur', priority: 0.5 } // Fallback
},
shards: { ... }
});- Single D1: Single point of failure
- CollegeDB: Distributed failure isolation (failure of 1 shard affects only 1/N of data)
| Shards | D1 Costs** | Performance Gain | Cost per Performance Unit |
|---|---|---|---|
| 1 | 1x | 1x | 1.00x |
| 10 | 1.2x | ~9x | 0.13x |
| 100 | 2.5x | ~80x | 0.03x |
| 1000 | 15x | ~700x | 0.02x |
**Estimated based on D1's pricing model including KV overhead
β Recommended for:
- High-traffic applications (>1000 QPS)
- Large datasets approaching D1 limits
- Geographic distribution requirements
- Applications needing >50 concurrent operations
- Systems requiring fault tolerance
β Mixed Strategy specifically recommended for:
- Global applications needing both fast queries and optimal data placement
- Large-scale databases requiring different optimization for reads vs writes
- Multi-workload systems with distinct read/write patterns
- Geographic optimization while maintaining query performance
- Enterprise applications needing fine-tuned performance control
β Not recommended for:
- Small applications (<100 QPS)
- Simple CRUD operations with minimal scale
- Applications without geographic spread
- Cost-sensitive deployments at small scale
- Single-strategy applications where reads and writes have identical performance needs
initialize({
kv: env.KV,
shards: { 'db-east': env['db-east'], 'db-west': env['db-west'] },
strategy: 'hash' // Shard selection based on primary key hash
});const config = {
kv: env.KV,
shards: env.NODE_ENV === 'production' ? { 'db-prod-1': env['db-prod-1'], 'db-prod-2': env['db-prod-2'] } : { 'db-dev': env['db-dev'] },
strategy: 'round-robin' // Shard selection is evenly distributed, regardless of size
};
initialize(config);CollegeDB includes an optional ShardCoordinator Durable Object that provides centralized shard allocation and statistics management. This is particularly useful for round-robin allocation strategies and monitoring shard utilization across your application.
First, configure the Durable Object in your wrangler.jsonc:
{
"durable_objects": {
"bindings": [
{
"name": "ShardCoordinator",
"class_name": "ShardCoordinator"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["ShardCoordinator"]
}
]
}import { collegedb, ShardCoordinator } from '@earth-app/collegedb';
// Export the Durable Object class for Cloudflare Workers
export { ShardCoordinator };
export default {
async fetch(request: Request, env: Env): Promise<Response> {
// Initialize CollegeDB with coordinator support
await collegedb(
{
kv: env.KV,
coordinator: env.ShardCoordinator, // Add coordinator binding
strategy: 'round-robin',
shards: {
'db-east': env.DB_EAST,
'db-west': env.DB_WEST,
'db-central': env.DB_CENTRAL
}
},
async () => {
// Your application logic here
const user = await first('user-123', 'SELECT * FROM users WHERE id = ?', ['user-123']);
return Response.json(user);
}
);
}
};The ShardCoordinator exposes a comprehensive HTTP API for managing shards and allocation:
// Get coordinator instance
const coordinatorId = env.ShardCoordinator.idFromName('default');
const coordinator = env.ShardCoordinator.get(coordinatorId);
// List all registered shards
const shardsResponse = await coordinator.fetch('http://coordinator/shards');
const shards = await shardsResponse.json();
// Returns: ["db-east", "db-west", "db-central"]
// Register a new shard
await coordinator.fetch('http://coordinator/shards', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ shard: 'db-new-region' })
});
// Remove a shard
await coordinator.fetch('http://coordinator/shards', {
method: 'DELETE',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ shard: 'db-old-region' })
});// Get shard statistics
const statsResponse = await coordinator.fetch('http://coordinator/stats');
const stats = await statsResponse.json();
/* Returns:
[
{
"binding": "db-east",
"count": 1542,
"lastUpdated": 1672531200000
},
{
"binding": "db-west",
"count": 1458,
"lastUpdated": 1672531205000
}
]
*/
// Update shard statistics manually
await coordinator.fetch('http://coordinator/stats', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
shard: 'db-east',
count: 1600
})
});// Allocate a shard for a primary key
const allocationResponse = await coordinator.fetch('http://coordinator/allocate', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
primaryKey: 'user-123',
strategy: 'round-robin' // Optional, uses coordinator default if not specified
})
});
const { shard } = await allocationResponse.json();
// Returns: { "shard": "db-west" }
// Hash-based allocation (consistent for same key)
const hashAllocation = await coordinator.fetch('http://coordinator/allocate', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
primaryKey: 'user-456',
strategy: 'hash'
})
});// Health check endpoint
const healthResponse = await coordinator.fetch('http://coordinator/health');
// Returns: "OK" with 200 status
// Clear all coordinator state (DEVELOPMENT ONLY!)
await coordinator.fetch('http://coordinator/flush', {
method: 'POST'
});
// WARNING: This removes all shard registrations and statisticsThe ShardCoordinator also provides methods for direct programmatic access:
// Get coordinator instance
const coordinatorId = env.ShardCoordinator.idFromName('default');
const coordinator = env.ShardCoordinator.get(coordinatorId);
// Increment shard count (when adding new keys)
await coordinator.incrementShardCount('db-east');
// Decrement shard count (when removing keys)
await coordinator.decrementShardCount('db-west');Set up comprehensive monitoring of your shard distribution:
async function monitorShardHealth(env: Env) {
const coordinatorId = env.ShardCoordinator.idFromName('default');
const coordinator = env.ShardCoordinator.get(coordinatorId);
// Get current statistics
const statsResponse = await coordinator.fetch('http://coordinator/stats');
const stats = await statsResponse.json();
// Calculate distribution balance
const totalKeys = stats.reduce((sum: number, shard: any) => sum + shard.count, 0);
const avgKeysPerShard = totalKeys / stats.length;
// Check for imbalanced shards (>20% deviation from average)
const imbalancedShards = stats.filter((shard: any) => {
const deviation = Math.abs(shard.count - avgKeysPerShard) / avgKeysPerShard;
return deviation > 0.2;
});
if (imbalancedShards.length > 0) {
console.warn('Shard imbalance detected:', imbalancedShards);
// Trigger rebalancing logic or alerts
}
// Check for stale statistics (>1 hour old)
const now = Date.now();
const staleShards = stats.filter((shard: any) => {
return now - shard.lastUpdated > 3600000; // 1 hour in ms
});
if (staleShards.length > 0) {
console.warn('Stale shard statistics detected:', staleShards);
}
return {
totalKeys,
avgKeysPerShard,
balance: imbalancedShards.length === 0,
freshStats: staleShards.length === 0,
shards: stats
};
}When using the ShardCoordinator, ensure you handle potential errors gracefully:
try {
const coordinator = env.ShardCoordinator.get(coordinatorId);
const response = await coordinator.fetch('http://coordinator/allocate', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ primaryKey: 'user-123' })
});
if (!response.ok) {
const error = await response.json();
throw new Error(`ShardCoordinator error: ${error.error}`);
}
const { shard } = await response.json();
return shard;
} catch (error) {
console.error('Failed to allocate shard:', error);
// Fallback to hash-based allocation without coordinator
return hashFunction('user-123', availableShards);
}- Coordinator Latency: Round-robin allocation adds ~10-20ms latency due to coordinator communication
- Scalability: Single coordinator instance can handle thousands of allocations per second
- Fault Tolerance: Design fallback allocation strategies when coordinator is unavailable
- Caching: Consider caching allocation results for frequently accessed keys
// Fallback allocation when coordinator is unavailable
function fallbackAllocation(primaryKey: string, shards: string[]): string {
// Use hash-based allocation as fallback
const hash = simpleHash(primaryKey);
return shards[hash % shards.length];
}
async function allocateWithFallback(coordinator: DurableObjectNamespace, primaryKey: string, shards: string[]): Promise<string> {
try {
const coordinatorId = coordinator.idFromName('default');
const instance = coordinator.get(coordinatorId);
const response = await instance.fetch('http://coordinator/allocate', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ primaryKey })
});
if (response.ok) {
const { shard } = await response.json();
return shard;
}
} catch (error) {
console.warn('Coordinator unavailable, using fallback allocation:', error);
}
// Fallback to hash-based allocation
return fallbackAllocation(primaryKey, shards);
}| Strategy | Use Case | Latency | Distribution | Coordinator Required |
|---|---|---|---|---|
hash |
High-volume apps, consistent performance | Lowest | Excellent | No |
round-robin |
Guaranteed even distribution | Medium | Perfect | Yes |
random |
Simple setup, good enough distribution | Low | Good | No |
location |
Geographic optimization, reduced latency | Region-optimized | Good | No |
mixed |
Optimized read/write performance | Strategy-dependent | Variable | Strategy-dependent |
| Scenario | Recommended Mix | Read Strategy | Write Strategy | Benefits |
|---|---|---|---|---|
| Large Databases (>10M records) | {read: 'hash', write: 'round-robin'} |
Hash | Round-Robin | Fastest reads, even data distribution |
| Global Applications | {read: 'hash', write: 'location'} |
Hash | Location | Fast queries, optimal geographic placement |
| High Write Volume | {read: 'location', write: 'hash'} |
Location | Hash | Regional read optimization, fast write routing |
| Analytics Workloads | {read: 'random', write: 'location'} |
Random | Location | Load-balanced queries, optimal data placement |
| Multi-Tenant SaaS | {read: 'hash', write: 'hash'} |
Hash | Hash | Consistent performance, predictable routing |
Hash Strategy (Recommended for most apps):
{
kv: env.KV,
strategy: 'hash',
shards: { 'db-1': env.DB_1, 'db-2': env.DB_2 }
}Location Strategy (Geographic optimization):
{
kv: env.KV,
strategy: 'location',
targetRegion: 'wnam',
shardLocations: {
'db-west': { region: 'wnam', priority: 2 },
'db-east': { region: 'enam', priority: 1 }
},
shards: { 'db-west': env.DB_WEST, 'db-east': env.DB_EAST }
}Round-Robin Strategy (Even distribution):
{
kv: env.KV,
coordinator: env.ShardCoordinator,
strategy: 'round-robin',
shards: { 'db-1': env.DB_1, 'db-2': env.DB_2, 'db-3': env.DB_3 }
}Mixed Strategy (Global applications):
{
kv: env.KV,
strategy: {
read: 'hash', // Fast, consistent reads
write: 'location' // Optimal geographic placement
},
targetRegion: 'wnam',
shardLocations: {
'db-west': { region: 'wnam', priority: 2 },
'db-east': { region: 'enam', priority: 1 }
},
shards: { 'db-west': env.DB_WEST, 'db-east': env.DB_EAST }
}Mixed Strategy (Large databases):
{
kv: env.KV,
coordinator: env.ShardCoordinator,
strategy: {
read: 'hash', // Fastest possible reads
write: 'round-robin' // Perfect distribution
},
shards: { 'db-1': env.DB_1, 'db-2': env.DB_2, 'db-3': env.DB_3 }
}Mixed Strategy (High-performance consistent):
{
kv: env.KV,
strategy: {
read: 'hash', // Predictable read performance
write: 'hash' // Predictable write performance
},
shards: { 'db-1': env.DB_1, 'db-2': env.DB_2 }
}| Code | Region | Typical Location |
|---|---|---|
wnam |
Western North America | San Francisco |
enam |
Eastern North America | New York |
weur |
Western Europe | London |
eeur |
Eastern Europe | Berlin |
apac |
Asia Pacific | Tokyo |
oc |
Oceania | Sydney |
me |
Middle East | Dubai |
af |
Africa | Johannesburg |
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Commit changes:
git commit -m 'Add amazing feature' - Push to branch:
git push origin feature/amazing-feature - Submit a pull request
This project is licensed under the MIT License - see the LICENSE file for details.
- Cloudflare D1 Documentation
- Cloudflare KV Documentation
- Cloudflare Workers Documentation
- Durable Objects Documentation
- π Documentation
- π Report Issues
- π¬ Discussions
{ "$schema": "./node_modules/wrangler/config-schema.json", "name": "collegedb-app", "main": "src/index.ts", "compatibility_date": "2026-04-15", "d1_databases": [ { "binding": "db-east", "database_name": "collegedb-east", "database_id": "your-east-database-id" }, { "binding": "db-west", "database_name": "collegedb-west", "database_id": "your-west-database-id" } ], "kv_namespaces": [ { "binding": "KV", "id": "your-kv-namespace-id", "preview_id": "your-kv-preview-id" } ], "durable_objects": { "bindings": [ { "name": "ShardCoordinator", "class_name": "ShardCoordinator" } ] }, "migrations": [ { "tag": "v1", "new_sqlite_classes": ["ShardCoordinator"] } ] }