Skip to content

Commit

Permalink
Merge pull request #5075 from EnterpriseDB/docs/pgd/fix/fixbdrordering
Browse files Browse the repository at this point in the history
Update postgres-configuration.mdx to address invalid ordering
  • Loading branch information
djw-m authored Dec 6, 2023
2 parents 48ef797 + fdd4646 commit 4ed0a3c
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

1 comment on commit 4ed0a3c

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.