In the scenario where master/replica postgres connections are built using pg-promise
, is there a way to rebuild these connections in case of replica outages?
Instead of doing process.exitCode = 1;
in the error function passed with the initOptions and rebuilding only working connections on service start-up... Is there a better way to remove the failing connection (even better if its a replica and process.exitCode if its a primary)?
const initOptions = {
// global event notification;
error: (error, e) => {
if (e.cn) {
//log
}
process.exitCode =1;
}
};
//singleton
const pgp = require('pg-promise')(initOptions);
// then for each database in config, we connect and start the service
Module pg-promise is built on top node-postgres, which uses the connection pool, capable of restoring broken connections automatically.
There is nothing needed on your side to that end. Once the connection is available again, your queries will start succeeding again.
And according to the logic you seek, you can do
process.exit()
specifically when the primary connection is lost, while ignoring (or only logging) the loss of the replica connection.Provided that the two are used through separate Database objects, you can differentiate them with the help of the
dc
parameter - Database Context that you can pass in during the object's construction, which can be anything.Example:
Then inside the global error handler: