We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automatically detect server role, e.g., primary or replica.
This can be done by running SELECT pg_is_in_recovery(). Need to be careful to avoid split-brain situations during failover.
SELECT pg_is_in_recovery()
The text was updated successfully, but these errors were encountered:
See also my comment regarding the integration with Patroni
#108 (comment)
Sorry, something went wrong.
No branches or pull requests
Description
Automatically detect server role, e.g., primary or replica.
This can be done by running
SELECT pg_is_in_recovery()
. Need to be careful to avoid split-brain situations during failover.The text was updated successfully, but these errors were encountered: