Skip to content

Commit

Permalink
Update postgres-configuration.mdx to address invalid ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
djw-m authored Dec 6, 2023
1 parent 48ef797 commit fdd4646
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions product_docs/docs/pgd/5/postgres-configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ For PGD's own settings, see the [PGD settings reference](reference/pgd-settings)
To run correctly, PGD requires these Postgres settings:

- `wal_level` — Must be set to `logical`, since PGD relies on logical decoding.
- `shared_preload_libraries` — Must start with `bdr`, before other
entries. Don't include `pglogical` in this list
- `shared_preload_libraries` — Must include `bdr` to enable the extension. Most other
extensions can appear before of after the bdr entry in the comma-separated list. One exception
to that is `pgaudit` which must appear in the list before `bdr`. Also, do not include
`pglogical` in this list
- `track_commit_timestamp` — Must be set to `on` for conflict resolution to
retrieve the timestamp for each conflicting row.

Expand Down

0 comments on commit fdd4646

Please sign in to comment.