mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-07 16:33:08 +00:00
* queue driver refactor (#2753) * chore(archive): archive refactor (#2752) * chore(archive): sqlite driver refactor (#2754) * chore(archive): postgres driver refactor (#2755) * chore(archive): renaming & copies (#2751) * posgres legacy: stop using the storedAt field * migration script 6: we still need the id column The id column is needed because it contains the message digest which is used in store v2, and we need to keep support to store v2 for a while * legacy archive: set target migration version to 6 * waku_node: try to use wakuLegacyArchive if wakuArchive is nil * node_factory, waku_node: mount legacy and future store simultaneously We want the nwaku node to simultaneously support store-v2 requests and store-v3 requests. Only the legacy archive is in charge of archiving messages, and the archived information is suitable to fulfill both store-v2 and store-v3 needs. * postgres_driver: adding temporary code until store-v2 is removed --------- Co-authored-by: Ivan FB <128452529+Ivansete-status@users.noreply.github.com> Co-authored-by: gabrielmer <101006718+gabrielmer@users.noreply.github.com> Co-authored-by: Ivan Folgueira Bande <ivansete@status.im>
42 lines
1.5 KiB
Nim
42 lines
1.5 KiB
Nim
when (NimMajor, NimMinor) < (1, 4):
|
|
{.push raises: [Defect].}
|
|
else:
|
|
{.push raises: [].}
|
|
|
|
import chronos, results
|
|
import ../../../common/databases/db_postgres, ../../../common/error_handling
|
|
|
|
## Simple query to validate that the postgres is working and attending requests
|
|
const HealthCheckQuery = "SELECT version();"
|
|
const CheckConnectivityInterval = 60.seconds
|
|
const MaxNumTrials = 20
|
|
const TrialInterval = 1.seconds
|
|
|
|
proc checkConnectivity*(
|
|
connPool: PgAsyncPool, onFatalErrorAction: OnFatalErrorHandler
|
|
) {.async.} =
|
|
while true:
|
|
(await connPool.pgQuery(HealthCheckQuery)).isOkOr:
|
|
## The connection failed once. Let's try reconnecting for a while.
|
|
## Notice that the 'exec' proc tries to establish a new connection.
|
|
|
|
block errorBlock:
|
|
## Force close all the opened connections. No need to close gracefully.
|
|
(await connPool.resetConnPool()).isOkOr:
|
|
onFatalErrorAction("checkConnectivity resetConnPool error: " & error)
|
|
|
|
var numTrial = 0
|
|
while numTrial < MaxNumTrials:
|
|
let res = await connPool.pgQuery(HealthCheckQuery)
|
|
if res.isOk():
|
|
## Connection resumed. Let's go back to the normal healthcheck.
|
|
break errorBlock
|
|
|
|
await sleepAsync(TrialInterval)
|
|
numTrial.inc()
|
|
|
|
## The connection couldn't be resumed. Let's inform the upper layers.
|
|
onFatalErrorAction("postgres health check error: " & error)
|
|
|
|
await sleepAsync(CheckConnectivityInterval)
|