Skip to content
New issue

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

WAL in Manager Database #17

Closed
rsriramc opened this issue Mar 7, 2023 · 2 comments
Closed

WAL in Manager Database #17

rsriramc opened this issue Mar 7, 2023 · 2 comments

Comments

@rsriramc
Copy link
Collaborator

rsriramc commented Mar 7, 2023

Use the inbuild POSTGRES WAL for Write-Ahead Logging for better write speeds.

@j-tesla
Copy link
Collaborator

j-tesla commented Mar 7, 2023

wal_level=replica is set as default, which writes enough data to support WAL archiving and replication, including running read-only queries on a standby server from Postgres 12 onwards

We can use wal_level=logical, which adds information necessary to support logical decoding.

Reference

@j-tesla j-tesla closed this as completed Mar 7, 2023
@j-tesla j-tesla reopened this Mar 7, 2023
@j-tesla
Copy link
Collaborator

j-tesla commented Mar 7, 2023

wal_level needs to configured while starting postgres server.

Using postgres docker image

@j-tesla j-tesla closed this as completed Apr 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants