【问题标题】: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

【讨论】:

  • @user3897707 对你有用吗?
猜你喜欢
  • 1970-01-01
  • 2019-10-20
  • 2019-09-02
  • 2019-11-21
  • 2021-06-10
  • 2020-04-10
  • 2022-06-09
  • 2020-05-02
  • 2020-02-16
相关资源
最近更新 更多