Skip to content

Latest commit

 

History

History
13 lines (6 loc) · 812 Bytes

File metadata and controls

13 lines (6 loc) · 812 Bytes

PostgresClusterReplicationMode

Defines the replication mode across instances. - ASYNCHRONOUS: Propagates updates to other instances without waiting for confirmation. Offers higher performance but may result in temporary data inconsistencies during replication delays. - STRICTLY_SYNCHRONOUS: Only supported for clusters with at least 3 instances. Requires all instances to acknowledge the update before it is committed, guaranteeing strong consistency at the cost of potential performance impact in high-latency environments.

Enum

  • ASYNCHRONOUS (value: 'ASYNCHRONOUS')

  • STRICTLY_SYNCHRONOUS (value: 'STRICTLY_SYNCHRONOUS')

[Back to Model list] [Back to API list] [Back to README]