-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deserializer error. Seems to be trying to deserialize not serialized data #433
Comments
I'm having similar issue, not able to
My setup is:
Elixir version:
Issue is not visible if I'm configuring in To be clear, that's my version: "2"
services:
zookeeper:
image: confluentinc/cp-zookeeper:latest.arm64
container_name: zookeeper
ports:
- "2181:2181"
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
kafka-1:
image: confluentinc/cp-kafka:latest.arm64
container_name: kafka-1
ports:
- "9092:9092"
depends_on:
- zookeeper
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENERS: PLAINTEXT://kafka-1:29092,PLAINTEXT_HOST://localhost:9092
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-1:29092,PLAINTEXT_HOST://localhost:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm occasionally getting the following error on my test servers when starting consumer group manager:
It seems like it's trying to deserialize already deserialized data.
No idea what could cause that and it goes away mysteriously. But retries don't seem to help.
Any ideas on what could be the reason?
I'm using version
0.11.0
with erlang 20, elixir 1.6.5The text was updated successfully, but these errors were encountered: