2021-08-19 15:55:45 +03:00
|
|
|
import { redisClient } from '../db/redis';
|
2019-09-09 16:46:45 +03:00
|
|
|
import { promisify } from 'util';
|
2021-08-19 12:33:41 +03:00
|
|
|
import * as redisLock from 'redis-lock';
|
2019-09-09 16:46:45 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retry delay (ms) for lock acquisition
|
|
|
|
*/
|
|
|
|
const retryDelay = 100;
|
|
|
|
|
|
|
|
const lock: (key: string, timeout?: number) => Promise<() => void>
|
2021-03-23 07:54:09 +02:00
|
|
|
= redisClient
|
2021-08-19 12:33:41 +03:00
|
|
|
? promisify(redisLock(redisClient, retryDelay))
|
2019-09-09 16:46:45 +03:00
|
|
|
: async () => () => { };
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get AP Object lock
|
|
|
|
* @param uri AP object ID
|
|
|
|
* @param timeout Lock timeout (ms), The timeout releases previous lock.
|
|
|
|
* @returns Unlock function
|
|
|
|
*/
|
|
|
|
export function getApLock(uri: string, timeout = 30 * 1000) {
|
|
|
|
return lock(`ap-object:${uri}`, timeout);
|
|
|
|
}
|
2019-11-05 15:14:42 +02:00
|
|
|
|
2020-07-26 05:04:07 +03:00
|
|
|
export function getFetchInstanceMetadataLock(host: string, timeout = 30 * 1000) {
|
|
|
|
return lock(`instance:${host}`, timeout);
|
2019-11-05 15:14:42 +02:00
|
|
|
}
|
2020-03-06 15:33:54 +02:00
|
|
|
|
|
|
|
export function getChartInsertLock(lockKey: string, timeout = 30 * 1000) {
|
|
|
|
return lock(`chart-insert:${lockKey}`, timeout);
|
|
|
|
}
|