• <legend id='DNkdK'><style id='DNkdK'><dir id='DNkdK'><q id='DNkdK'></q></dir></style></legend>
    <i id='DNkdK'><tr id='DNkdK'><dt id='DNkdK'><q id='DNkdK'><span id='DNkdK'><b id='DNkdK'><form id='DNkdK'><ins id='DNkdK'></ins><ul id='DNkdK'></ul><sub id='DNkdK'></sub></form><legend id='DNkdK'></legend><bdo id='DNkdK'><pre id='DNkdK'><center id='DNkdK'></center></pre></bdo></b><th id='DNkdK'></th></span></q></dt></tr></i><div id='DNkdK'><tfoot id='DNkdK'></tfoot><dl id='DNkdK'><fieldset id='DNkdK'></fieldset></dl></div>

          <bdo id='DNkdK'></bdo><ul id='DNkdK'></ul>
        <tfoot id='DNkdK'></tfoot>

        <small id='DNkdK'></small><noframes id='DNkdK'>

        Debezium:无法在 Kafka-Connect Docker 容器上设置观察者

        时间:2023-08-21

      1. <legend id='pUIh6'><style id='pUIh6'><dir id='pUIh6'><q id='pUIh6'></q></dir></style></legend>
        <i id='pUIh6'><tr id='pUIh6'><dt id='pUIh6'><q id='pUIh6'><span id='pUIh6'><b id='pUIh6'><form id='pUIh6'><ins id='pUIh6'></ins><ul id='pUIh6'></ul><sub id='pUIh6'></sub></form><legend id='pUIh6'></legend><bdo id='pUIh6'><pre id='pUIh6'><center id='pUIh6'></center></pre></bdo></b><th id='pUIh6'></th></span></q></dt></tr></i><div id='pUIh6'><tfoot id='pUIh6'></tfoot><dl id='pUIh6'><fieldset id='pUIh6'></fieldset></dl></div>

              <tbody id='pUIh6'></tbody>
          • <tfoot id='pUIh6'></tfoot>

              <small id='pUIh6'></small><noframes id='pUIh6'>

                <bdo id='pUIh6'></bdo><ul id='pUIh6'></ul>

                1. 本文介绍了Debezium:无法在 Kafka-Connect Docker 容器上设置观察者.获取关联 ID 为 2 的元数据时出错... LEADER_NOT_AVAILABLE的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  问题:

                  如何设置观察者以在对数据库进行更改时实时观察 Kafka-Connect 流?我在获取相关 ID 为 2 的元数据时遇到 错误:{dbhistory.Test.Posts=LEADER_NOT_AVAILABLE}.导致问题的原因是什么,我该如何解决?

                  How do I setup watcher to watch a Kafka-Connect stream in real-time as changes are made to the database? I am getting Error while fetching metadata with correlation id 2 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE}. What is causing the problem and how do I fix it?

                  上下文:

                  这个问题与:Debezium 如何使用 Kafka Connect 正确注册 SqlServer 连接器 - 连接被拒绝和https://github.com/debezium/debezium-examples/blob/master/tutorial/README.md#using-sql-server

                  在 Windows 10 中,我使用以下命令在各自独立的 Docker 容器中设置了 Zookeeper、Kafka 和 Kafka-Connector:

                  In Windows 10, I have setup Zookeeper, Kafka, and Kafka-Connector all in their own separate Docker containers using the following commands:

                  docker run -it --rm --name zookeeper -p 2181:2181 -p 2888:2888 -p 3888:3888 debezium/zookeeper:1.1
                  docker run -it --rm --name kafka -p 9092:9092 -e KAFKA_ADVERTISED_HOST_NAME: kafka --link zookeeper:zookeeper debezium/kafka:1.1
                  docker run -it --rm --name connect -p 8083:8083 -e GROUP_ID=1 -e CONFIG_STORAGE_TOPIC=my_connect_configs -e OFFSET_STORAGE_TOPIC=my_connect_offsets -e STATUS_STORAGE_TOPIC=my_connect_statuses --link zookeeper:zookeeper --link kafka:kafka debezium/connect:1.1
                  

                  然后,我将 Kafka 连接器设置为在 Docker 容器外部的本地主机上运行的 SQL Server 实例.日志显示连接器可以连接到数据库并获取 CDC 数据.到目前为止我还好.

                  I then setup a Kafka Connector to an instance of SQL Server that is running on the localhost, outside of a Docker container. The logs show that the connector can connect to the database and grab the CDC data. Up until this point I am OK.

                  但是,当我尝试创建观察者时,使用以下命令:

                  However, when I try to create a watcher, using the following command:

                  docker run -it --rm --name watcher --link zookeeper:zookeeper --link kafka:kafka debezium/kafka:1.1 
                  

                  我收到以下错误.

                  watch-topic -a -k dbhistory.Test.Posts
                  WARNING: Using default BROKER_ID=1, which is valid only for non-clustered installations.
                  Using ZOOKEEPER_CONNECT=172.17.0.2:2181
                  Using KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://172.17.0.5:9092
                  Using KAFKA_BROKER=172.17.0.3:9092
                  Contents of topic dbhistory.Test.Posts:
                  [2020-04-08 15:18:39,373] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 2 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:41:20,501] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:41:20,605] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:41:20,807] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:41:21,262] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:41:22,120] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:41:23,330] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:41:24,189] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:41:59,826] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:04,051] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:07,121] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:08,024] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:09,354] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11570 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:09,458] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11572 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:09,571] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11574 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:09,677] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11576 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:09,786] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11578 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:09,895] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11580 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:10,002] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11582 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:10,112] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11584 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:10,220] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11586 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:10,326] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11588 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:10,435] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11590 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:10,537] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11592 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:10,648] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11594 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:10,751] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11596 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 16:42:10,854] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Error while fetching metadata with correlation id 11598 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 17:08:48,268] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  [2020-04-08 17:09:55,602] WARN [Consumer clientId=consumer-console-consumer-3848-1, groupId=console-consumer-3848] Connection to node 1 (/172.17.0.3:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)
                  

                  推荐答案

                  该问题很可能是由您定义环境变量的方式引起的.

                  The issue is most likely caused by the way you defined your environment variable.

                  替换:

                  -e KAFKA_ADVERTISED_HOST_NAME: kafka
                  

                  与:

                  -e KAFKA_ADVERTISED_HOST_NAME=kafka
                  

                  这篇关于Debezium:无法在 Kafka-Connect Docker 容器上设置观察者.获取关联 ID 为 2 的元数据时出错... LEADER_NOT_AVAILABLE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用带有 Helm 安装的 Kafka/Confluent 的连接器 下一篇:如何使用 Debezium 从 MS SQL 将 250 个表摄取到 Kafk

                  相关文章

                  最新文章

                  <i id='68fdk'><tr id='68fdk'><dt id='68fdk'><q id='68fdk'><span id='68fdk'><b id='68fdk'><form id='68fdk'><ins id='68fdk'></ins><ul id='68fdk'></ul><sub id='68fdk'></sub></form><legend id='68fdk'></legend><bdo id='68fdk'><pre id='68fdk'><center id='68fdk'></center></pre></bdo></b><th id='68fdk'></th></span></q></dt></tr></i><div id='68fdk'><tfoot id='68fdk'></tfoot><dl id='68fdk'><fieldset id='68fdk'></fieldset></dl></div>
                2. <legend id='68fdk'><style id='68fdk'><dir id='68fdk'><q id='68fdk'></q></dir></style></legend>

                  <small id='68fdk'></small><noframes id='68fdk'>

                    <bdo id='68fdk'></bdo><ul id='68fdk'></ul>

                  1. <tfoot id='68fdk'></tfoot>