【问题标题】:Postgres 11 setting for Debezium CDC connectorDebezium CDC 连接器的 Postgres 11 设置
【发布时间】:2020-04-20 00:54:11
【问题描述】:
您能否让我知道在 postgres11 中对于 Debezium CDC 连接器所需的确切配置应该是什么。我已将 postgresql.conf 文件中的 wall_level 修改为合乎逻辑的。在更改 pb_hba.conf 文件并尝试重新启动 postgres 服务时,它已损坏,需要重新安装它。那么任何人都可以让我知道在 postgres 11 中运行 debezium CDC 需要做哪些确切的更改。
问候
桑贾亚
【问题讨论】:
标签:
postgresql
cdc
debezium
【解决方案1】:
您需要对postgres.conf 进行这些更改(以使用本机pgoutput 插件):
wal_level = logical # minimal, replica, or logical
max_wal_senders = 1 # max number of walsender processes
max_replication_slots = 1 # max number of replication slots
更多详情请见the great docs。