Problems with consuming messages from the Kafka topic #1740
-
Good evening, I request assistance and advice in resolving the following issue. On the development host machine, a topic "se-collector.pt.event.out" has been created in the context of brokers, within which events are stored. I am using the following RoadRunner configuration: version: "3"
server:
relay: pipes
command: "/usr/bin/php -d xdebug.mode=debug -d xdebug.start_with_request=yes -d xdebug.client_host=host.docker.internal -d xdebug.client_port=\"9008\" /app/consumer.php"
kafka:
brokers: ["dev-producer_api-1:8001"]
jobs:
consume: ["complayer-queue"]
num_pollers: 1
pipeline_size: 1000
pool:
num_workers: 1
allocate_timeout: 60s
pipelines:
complayer-queue:
driver: kafka
config:
consumer_options:
topics: ["se-collector.pt.event.out"]
group_options:
group_id: "complayerv2.0-test-consumer"
rpc:
enable: true
listen: tcp://127.0.0.1:6001 Example queue consumer
However, this script does not consume messages from the broker. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hey @denyskanunnikov 👋🏻 Could you please try to remove the xdebug stuff from the command options? And also, what is your RR version? Also, there is no |
Beta Was this translation helpful? Give feedback.
Here: https://hub.docker.com/r/spiralscout/roadrunner/tags
You need to use the
2023.3.0-rc.1
tag.