-
-
Save iwatakeshi/02c4209dd2dacffdae4ba3c0f06fd48d to your computer and use it in GitHub Desktop.
Multi-tenant with Drizzle ORM (multiple sqlite databases) - PoC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { integer, sqliteTableCreator, text } from 'drizzle-orm/sqlite-core' | |
const sqliteTable = (tenant?: string) => | |
sqliteTableCreator(name => (tenant ? `${tenant}_${name}` : name)) | |
export const users = sqliteTable()('users', { | |
id: integer('id', { mode: 'number' }).primaryKey({ autoIncrement: true }), | |
name: text('name'), | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import fs from 'fs' | |
import Database from 'better-sqlite3' | |
import { type BetterSQLite3Database, drizzle } from 'drizzle-orm/better-sqlite3' | |
import { migrate } from 'drizzle-orm/better-sqlite3/migrator' | |
const Pool = (maxPool = 10) => { | |
const tenants: Record<string, BetterSQLite3Database> = {} | |
return (tenant: string) => { | |
if (tenants[tenant]) { | |
return tenants[tenant] | |
} | |
if (Object.keys(tenants).length >= maxPool) { | |
delete tenants[Object.keys(tenants)[0]] | |
} | |
const tenantFile = `${tenant}.db` | |
let requiresMigration = true | |
try { | |
fs.accessSync(tenantFile) | |
requiresMigration = false | |
} catch (error) { | |
requiresMigration = true | |
} | |
const db = new Database(tenantFile) | |
tenants[tenant] = drizzle(db) | |
if (requiresMigration) { | |
migrate(tenants[tenant], { migrationsFolder: 'migrations' }) | |
} | |
return tenants[tenant] | |
} | |
} | |
export const pool = Pool() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { pool } from './sqlite-pool' | |
import { users } from './schema' | |
const user = pool(tenant) | |
.insert(users) | |
.values({ | |
name: 'Gyo', | |
}) | |
.run() | |
const results = pool(tenant)?.select().from(users).all() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment