Describe the issue/error/question
I receive the below error when I use kafka trigger. I tried with two different kafka clusters including a remote one and local one via this docker-compose. But I cannot fix the error I always get the same error, could you please help me to identify what’s wrong. This happens when I listen for a test event or start the flow.
version: "2"
services:
zookeeper:
image: docker.io/bitnami/zookeeper:3.8
ports:
- "2181:2181"
volumes:
- "zookeeper_data:/bitnami"
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
kafka:
image: docker.io/bitnami/kafka:3.2
ports:
- "9092:9092"
volumes:
- "kafka_data:/bitnami"
environment:
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
depends_on:
- zookeeper
volumes:
zookeeper_data:
driver: local
kafka_data:
driver: local
What is the error message (if any)?
{“level”:“ERROR”,“timestamp”:“2022-09-04T21:23:59.297Z”,“logger”:“kafkajs”,“message”:“[BrokerPool] Closed connection”,“retryCount”:0,“retryTime”:321}
{“level”:“ERROR”,“timestamp”:“2022-09-04T21:25:33.436Z”,“logger”:“kafkajs”,“message”:“[BrokerPool] Closed connection”,“retryCount”:0,“retryTime”:329}
Please share the workflow
(Sorry I cannot share whole flow as it has business logic)
Share the output returned by the last node
N/A
Information on your n8n setup
- 0.193.3
- **Database you’re using (default: SQLite):SQLite
- **Running n8n with the execution process [own(default), main]:own
- Running n8n via [Docker, npm, n8n.cloud, desktop app]: npm and docker