fea(providers): locking postgres (#9545)

Co-authored-by: Adrien de Peretti <25098370+adrien2p@users.noreply.github.com>
This commit is contained in:
Carlos R. L. Rodrigues
2024-10-17 10:11:39 -03:00
committed by GitHub
parent 3b50c6d019
commit e9a06f4b4d
18 changed files with 641 additions and 0 deletions

View File

@@ -0,0 +1,196 @@
import { ILockingProvider } from "@medusajs/framework/types"
import { isDefined, MedusaService } from "@medusajs/framework/utils"
import { EntityManager } from "@mikro-orm/core"
import { Locking } from "@models"
type InjectedDependencies = {
manager: EntityManager
}
export class PostgresAdvisoryLockProvider
extends MedusaService({ Locking })
implements ILockingProvider
{
static identifier = "locking-postgres"
protected manager: EntityManager
constructor(container: InjectedDependencies) {
// @ts-ignore
super(...arguments)
this.manager = container.manager
}
private getManager(): any {
return this.manager
}
async execute<T>(
keys: string | string[],
job: () => Promise<T>,
args?: {
timeout?: number
}
): Promise<T> {
const timeout = Math.max(args?.timeout ?? 5, 1)
const timeoutSeconds = Number.isNaN(timeout) ? 1 : timeout
return await this.getManager().transactional(async (manager) => {
const ops: Promise<unknown>[] = []
if (timeoutSeconds > 0) {
ops.push(this.getTimeout(timeoutSeconds))
}
const fnName = "pg_advisory_xact_lock"
const allKeys = Array.isArray(keys) ? keys : [keys]
const numKeys = allKeys.map(this.hashStringToInt)
const lockPromises = numKeys.map((numKey) =>
manager.execute(`SELECT ${fnName}(?)`, [numKey])
)
const lock = Promise.all(lockPromises)
ops.push(lock)
try {
await Promise.race(ops)
const ret = await job()
await manager.commit()
return ret
} catch (e) {
await manager.rollback()
throw e
}
})
}
private async loadLock(key: string): Promise<{
owner_id: string | null
expiration: number | null
now: number
}> {
const [row] = await this.getManager().execute(
`SELECT owner_id, expiration, NOW() AS now FROM locking WHERE id = ?`,
[key]
)
return row
}
async acquire(
keys: string | string[],
args?: {
ownerId?: string | null
expire?: number
}
): Promise<void> {
keys = Array.isArray(keys) ? keys : [keys]
const { ownerId, expire } = args ?? {}
for (const key of keys) {
const row = await this.loadLock(key)
if (!row) {
const expireSql = expire
? `NOW() + INTERVAL '${+expire} SECONDS'`
: "NULL"
try {
await this.getManager().execute(
`INSERT INTO locking (id, owner_id, expiration) VALUES (?, ?, ${expireSql})`,
[key, ownerId ?? null]
)
} catch (err) {
if (err.toString().includes("locking_pkey")) {
const owner = await this.loadLock(key)
if (ownerId != owner.owner_id) {
throw new Error(`"${key}" is already locked.`)
}
} else {
throw err
}
}
continue
}
const errMessage = `Failed to acquire lock for key "${key}"`
if (row.owner_id === null || row.owner_id !== ownerId) {
throw new Error(errMessage)
}
if (!row.expiration && row.owner_id == ownerId) {
continue
}
const canRefresh =
row.owner_id == ownerId && (expire || row.expiration! <= row.now)
if (!canRefresh || !expire) {
continue
}
await this.getManager().execute(
`UPDATE locking SET owner_id = ?, expiration = NOW() + INTERVAL '${+expire} SECONDS' WHERE id = ?`,
[ownerId ?? null, key]
)
}
}
async release(
keys: string | string[],
args?: {
ownerId?: string | null
}
): Promise<boolean> {
const { ownerId } = args ?? {}
keys = Array.isArray(keys) ? keys : [keys]
let success = true
for (const key of keys) {
const row = await this.loadLock(key)
if (!row || row.owner_id != ownerId) {
success = false
continue
}
await this.getManager().execute(`DELETE FROM locking WHERE id = ?`, [key])
success = success && (!row.expiration || row.expiration > row.now)
}
return success
}
async releaseAll(args?: { ownerId?: string | null }): Promise<void> {
const { ownerId } = args ?? {}
if (!isDefined(ownerId)) {
await this.getManager().execute(`TRUNCATE TABLE locking`)
} else {
await this.getManager().execute(
`DELETE FROM locking WHERE owner_id = ?`,
[ownerId]
)
}
}
private hashStringToInt(str: string): number {
let hash = 5381
for (let i = str.length; i--; ) {
hash = (hash * 33) ^ str.charCodeAt(i)
}
return hash >>> 0
}
private async getTimeout(seconds: number): Promise<void> {
return new Promise((_, reject) => {
setTimeout(() => {
reject(new Error("Timed-out acquiring lock."))
}, seconds * 1000)
})
}
}