Open jpelletier-dad opened 4 years ago
Still experiencing. I updated librdkafka-dev and am using the test release
>>> confluent_kafka.version()
('1.4.0.1', 17039616)
>>> confluent_kafka.libversion()
('1.4.0', 17039615)
I'm running this in python:3.8-alpine
Docker container with these dependencies
apk --no-cache add \
gcc \
musl-dev \
librdkafka-dev@edgecommunity~=1.4.0
From my limited ability to grok the logs i get the impression that the broker connection is being killed before the create topics requests can go through.
We are having the same issue. But strange thing is it works for me, but not for another co-worker. Please advise!!!
Description
Calls to AdminClient.create_topic() seem to spin indefinitely (even with
request_timeouts
added). This is after previous calls to retrieve the topics succeed (so the configuration would appear to be correct).How to reproduce
CODE:
Checklist
Please provide the following information:
confluent_kafka.version()
andconfluent_kafka.libversion()
):lkc-nvgqz
{ "sasl.username": key, "sasl.password": secret, "bootstrap.servers": ",".join(servers), "sasl.mechanism": "PLAIN", "request.timeout.ms": "20000", "retry.backoff.ms": "500", "security.protocol": "SASL_SSL", "group.id": group_id, "debug": "broker,admin", }
python:3.8-alpine
'debug': '..'
as necessary)