In today's software development field, containerization technology has become an increasingly popular deployment method. As one of the most popular containerization solutions, Docker provides developers with convenient environment isolation and deployment methods. For developers who use Kafka as a message queue system, combining Kafka with Docker can make development and deployment more flexible and efficient. In this article, PHP editor Xigua will introduce how to run Kafka in Docker, so that you can easily enjoy the convenience brought by containerization.
Question content
I have set up a single node kafka docker container on my local machine as described in the confluence documentation (steps 2-3).
Additionally, I exposed zookeeper's port 2181 and kafka's port 9092 so that I can connect to them from a client running on my local machine:
$ docker run -d \ -p 2181:2181 \ --net=confluent \ --name=zookeeper \ -e zookeeper_client_port=2181 \ confluentinc/cp-zookeeper:4.1.0 $ docker run -d \ --net=confluent \ --name=kafka \ -p 9092:9092 \ -e kafka_zookeeper_connect=zookeeper:2181 \ -e kafka_advertised_listeners=plaintext://kafka:9092 \ -e kafka_offsets_topic_replication_factor=1 \ confluentinc/cp-kafka:4.1.0
Problem: When I try to connect to kafka from the host, the connection fails because the address: kafka:9092
cannot be resolved.
This is my java code:
properties props = new properties(); props.put("bootstrap.servers", "localhost:9092"); props.put("client.id", "kafkaexampleproducer"); props.put("key.serializer", longserializer.class.getname()); props.put("value.serializer", stringserializer.class.getname()); kafkaproducer<long, string> producer = new kafkaproducer<>(props); producerrecord<long, string> record = new producerrecord<>("foo", 1l, "test 1"); producer.send(record).get(); producer.flush();
exception:
java.io.IOException: Can't resolve address: kafka:9092 at org.apache.kafka.common.network.Selector.doConnect(Selector.java:235) ~[kafka-clients-2.0.0.jar:na] at org.apache.kafka.common.network.Selector.connect(Selector.java:214) ~[kafka-clients-2.0.0.jar:na] at org.apache.kafka.clients.NetworkClient.initiateConnect(NetworkClient.java:864) [kafka-clients-2.0.0.jar:na] at org.apache.kafka.clients.NetworkClient.ready(NetworkClient.java:265) [kafka-clients-2.0.0.jar:na] at org.apache.kafka.clients.producer.internals.Sender.sendProducerData(Sender.java:266) [kafka-clients-2.0.0.jar:na] at org.apache.kafka.clients.producer.internals.Sender.run(Sender.java:238) [kafka-clients-2.0.0.jar:na] at org.apache.kafka.clients.producer.internals.Sender.run(Sender.java:176) [kafka-clients-2.0.0.jar:na] at java.lang.Thread.run(Thread.java:748) [na:1.8.0_144] Caused by: java.nio.channels.UnresolvedAddressException: null at sun.nio.ch.Net.checkAddress(Net.java:101) ~[na:1.8.0_144] at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:622) ~[na:1.8.0_144] at org.apache.kafka.common.network.Selector.doConnect(Selector.java:233) ~[kafka-clients-2.0.0.jar:na] ... 7 common frames omitted
Question: How to connect to kafka running in docker? My code is running from the host, not docker.
NOTE: I know in theory I could try the dns settings and /etc/hosts
but this is a workaround - it shouldn't be like this.
There is a similar question here, but it is based on the ches/kafka
image. I use images based on confluenceinc
which is different.
Workaround
tl;dr - Simple port forwarding from container to host will not work ... hosts file (e.g. * /etc/hosts
on NIX systems) should not be modified to resolve Kafka network issues as this solution is not portable.
1) Which exact IP/hostname port do you want to connect to? Make sure the value is set on the proxy to advertished.listeners
(not advertished.host.name
and advertished.port
as these are deprecated). If you see an error like Connection to node -1 (localhost/127.0.0.1:9092)
it means your application container is trying to connect to itself. Are your application containers also running Kafka broker processes? maybe not.
2) Make sure the servers listed as part of bootstrap.servers
are actually resolvable. E.g. ping
IP/hostname, use netcat
to check the port... If your client is in a container, you need to do this from the container, not (only) from the host Do this. If the container does not crash immediately to access its shell, use docker exec
.
3) If running the process from the host instead of another container, to verify that the port is correctly mapped on the host, make sure docker ps
shows that the kafka container is mapped from 0.0.0.0: <host_port> -> <advertished_listener_port> /tcp</advertished_listener_port></host_port>
. If trying to run the client from outside the Docker network, the ports must match. No port forwarding is required between the two containers; use link/docker-network
The answer below uses the confluenceinc
docker image to solve the problem raised, not wurstmeister/kafka
. If you set the KAFKA_ADVERTISED_HOST_NAME
variable, remove it (it is a deprecated property)
The following sections attempt to summarize all the details needed to use other images. For other commonly used Kafka images, are all run in containers Apache Kafka.
You only rely on how it is configured. And which variables are causing this.
wurstmeister/kafka
As of October 2023, this content no longer exists in DockerHub. In any case, it will not be maintained after 2022.
See the readme section on a> listener configuration, and also read their Connectivity wiki.
bitnami/kafka
If you want a small container, try these. The images are much smaller than Confluence and better maintained than wurstmeister
. Refer to the readme file for their listener configuration.
debezium/kafka
Relevant documentation is mentioned herehere.
NOTE: Advertised host and port settings have been deprecated. Advertisinglistener covers both. Similar to the Confluence container, Debezium can update its properties using proxy settings prefixed with KAFKA_
.
other
-
ubuntu/kafka
Requires you to add--overrideadvertising.listeners=kafka:9092
via Docker image parameters...I find it less portable than environment variables and therefore not recommended -
spotify/kafka
Deprecated and obsolete. -
fast-data-dev
orlensesio/box
are great for an all-in-one solution with schema registry, Kafka Connect, etc., but if you only If you want Kafka, it seems bloated. Also, this is a Docker anti-pattern for running multiple services in a container - Your own
Dockerfile
- Why? Are these other things incomplete? Start with a pull request instead of starting from scratch.
For additional reading, Full-featured docker-compose
and network diagrams, please see This blog is written by: @rmoff
answer
Confluence Quick Start (Docker) Documentation It is assumed that all production and consumption requests will occur within the Docker network.
You can work around the issue of connecting to kafka:9092
by running the Kafka client code in its own container (using a Docker bridge), but otherwise you will need to add more environment variables to the container Exposed to the outside world while still having it work within a Docker network.
First add the protocol mapping of PLAINTEXT_HOST:PLAINTEXT
, which maps the listener protocol to the Kafka protocol
Key: KAFKA_LISTENER_SECURITY_PROTOCOL_MAP
Value: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
Then set up two advertised listeners on different ports. (Here kafka
refers to the docker container name; it may also be named broker
, so double-check your service hostname).
Key:KAFKA_ADVERTISED_LISTENERS
Value: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092
Please note that the protocol here matches the value on the left of the protocol mapping setting above
When running the container, add -p 29092:29092
for host port mapping and notify the PLAINTEXT_HOST
listener.
So...(Use the above settings)
If still doesn't work, you can set KAFKA_LISTENERS
to include <protocol>://0.0.0.0:<port></port></protocol>
, where Both options match advertising settings and Docker forwarded ports
The client is on the same machine, not in the container
Advertising the localhost and associated port will allow you to connect outside the container, as you would expect.
In other words, when running any Kafka client outside of a Docker network (including CLI tools you may have installed locally), use localhost:29092
as the bootstrap server, using localhost:2181
as Zookeeper (requires Docker) port forwarding)
Client on another machine
If trying to connect from an external server, you need to advertise the host's external hostname/IP (e.g. 192.168.x.y
) and / in place of localhost .
Simply advertising localhost via port forwarding will not work because the Kafka protocol will still continue to advertise your configured listeners.
This setup requires Docker port forwarding and Router port forwarding (and firewall/security group changes) if not in the same local network, e.g. your containers are running in the cloud and you want Interact with it from your local computer.
Client (or another proxy) in a container on the same host
This is the least error-prone configuration; you can use the DNS service name directly.
When running the application in a Docker network , use kafka:9092
(see the PLAINTEXT
listener configuration advertised above) as the bootstrap server, Use zookeeper:2181
as Zookeeper, just like any other Docker service communication (no port forwarding required)
If you use a separate docker run
command or Compose file, you will need to manually define the share using the compose networks
section or docker network --create
network
See the example Compose file for the full Confluence stack or the simpler for a single broker.
If multiple proxies are used, then they need to use unique hostnames for advertising listeners. View example一个>
Related questions
Connecting to Kafka on the host from Docker (ksqlDB)
appendix
For anyone interested in Kubernetes deployment:
- Access Kafka
- Operator (recommended): https://www.php.cn/link/61b07251e835d37322b7460d2b88c05b
- Helm Artifact Hub: https://artifacthub.io/packages/search ?ts_query_web=kafka&sort=stars&page=1
The above is the detailed content of Connect to Kafka running in Docker. For more information, please follow other related articles on the PHP Chinese website!

华为P30智能手机反复重启的问题日益普遍,随着智能手机的普及和应用的增加,这个问题变得越来越常见。本文将探讨造成这个问题的主要原因,并提出相应的解决方案。硬件故障——电池老化电池的老化问题可能会导致华为P30反复重启、当手机使用一段时间后。电池内部电阻增加,电池容量减少,都可能导致电池的供电不稳定、从而导致手机反复重启。系统软件问题——系统崩溃华为P30系统软件出现问题也是导致手机反复重启的常见原因。系统可能会崩溃或出现意外错误,从而引发手机的自动重启,在一些极端情况下。第三方应用冲突——不兼容

为什么电脑版微信发不了文件原因:可能是文件过大,不能超过,因为PC端的设置为小于100M还有可能是自身网络不够稳定。登陆。进入以后我们看到里面的二维码,拿出手机扫描二维码,便可成功登陆。登陆成功以后,出现一个微信聊天界面。另一方面,当微信电脑版遇到网络连接故障、软件版本过旧、电脑存储空间不足等问题时,也有可能出现无法发送文件的情况。所以,在尝试发送文件前,可以先检查一下待发送的文件是否超出限制大小。以华为MateBookX,win10,微信0.21为例。可能是文件过大,因PC端的设置为小于100

err_connection_reset的解决办法:1、检查网络连接;2、清除浏览器缓存和Cookie;3、关闭防火墙和杀毒软件;4、调整路由器设置;5、检查服务器状态;6、刷新DNS缓存;7、重置网络设置。详细介绍:1、检查网络连接,首先确保设备已连接到可用的网络,并且网络连接稳定;2、清除浏览器缓存和Cookie,浏览器缓存和Cookie可能会导致等等。

uc浏览器看不了视频怎么回事?uc浏览器是手机端非常流行的浏览器,很多人喜欢uc,也是看中uc浏览器的视频播放功能,速度比较快,画面质量比较流畅一些,当然,目前市面上主流的浏览器画质都可以的,比如谷歌浏览器、百度浏览器、360浏览器等,但是遇到uc浏览器不能播放视频怎么办呢?下面chroem部落就为大家分析一下。解决UC浏览器看不了视频的方案1、修改浏览器的标识,首先需要打开手机上的UC浏览器APP,点击程序下方菜单选项。2、进入菜单界面,点击界面左下角的设置图标。3、进入界面后,在列表中点击网

手机电话打不出去的原因:1、信号问题;2、手机账户问题;3、手机设置问题;4、SIM卡问题;5、运营商网络问题;6、手机硬件问题;7、软件问题;8、特定区域或时间段问题;9、服务提供商问题;10、其他问题。详细介绍:1、信号问题,可能是手机无法拨打电话最常见的因素之一,如果手机没有足够的信号,可能无法拨打电话;2、手机账户问题,如果手机账户欠费或者被暂停服务等等。

微信电话对方忙线中是指对方正在与其他人进行电话通话,其他原因是对方未接听、网络问题和软件故障等。详细介绍:1、对方正在与其他人通话,当微信电话拨打给对方时,如果对方正在与另一个或多个联系人通话,那么系统会提示对方忙线中,在这种情况下,需要等待对方结束当前通话,才能成功连接到对方;2、对方未接听,对方可能因为各种原因没有接听到微信电话,这可能是因为对方正在忙于处理其他事务等等。

随着互联网的普及,人们对于网络连接速度的要求越来越高。手机作为现代人生活中必不可少的工具,也需要具备快速稳定的网络连接。为了帮助用户提高网络连接速度,本文将介绍一种基于手机在线ping测试的方法。这种方法可以快速检测网络连接的延迟和稳定性,帮助用户找到最佳的网络连接。一、什么是ping测试来测量网络连接速度的一种方法,并等待服务器返回数据包,通过发送数据包到指定的服务器。二、为什么选择在线ping测试1.准确反映用户实际体验、在线ping测试可以直接测量手机与服务器之间的网络连接速度。2.从而选

导读:本篇文章本站来给大家介绍有关mac更新wifi密码的相关内容,希望对大家有所帮助,一起来看看吧。Mac电脑怎么重置WiFi首先,根据下图箭头所指,点击顶部的【前往】选项,是第一步。其次,在弹出的菜单栏中,根据下图箭头所指,点击【电脑】选项,是第二步。最后,在弹出的窗口中,根据下图箭头所指,双击磁盘图标,是第三步。请点击下方的【设置】图标。接着,在图界面中,点击【网络】,然后点击左侧的【WIFI】。最后,点击【高级】选项。在【TCP/IP】中选择【使用DHCP(手动)】以配置自己的IP地址。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
