File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,10 @@ decoding:
68
68
max_wal_senders = 10 # one per node needed on provider node
69
69
shared_preload_libraries = 'pglogical'
70
70
track_commit_timestamp = on # needed for last/first update wins conflict resolution
71
+ # property available in PostgreSQL 9.5+
72
+
73
+ ` pg_hba.conf ` has to allow replication connections from localhost, by a user
74
+ with replication privilege.
71
75
72
76
Next the ` pglogical ` extension has to be installed on all nodes:
73
77
@@ -354,7 +358,8 @@ The configuration of the conflicts resolver is done via the
354
358
kept (this can be either local or remote version)
355
359
356
360
When ` track_commit_timestamp ` is disabled, the only allowed value is
357
- ` apply_remote ` .
361
+ ` apply_remote ` . As ` track_commit_timestamp ` is not available in PostgreSQL 9.4
362
+ ` pglogical.conflict_resolution ` can only be ` apply_remote ` (default)
358
363
359
364
## Limitations and restrictions
360
365
You can’t perform that action at this time.
0 commit comments