Closed anujchandraZ closed 1 year ago
Thank you for taking the time to raise this issue. However, it has not had any activity on it in the past 90 days and will be closed in 30 days if no updates occur. Please check if the master branch has already resolved the issue since it was raised. If you believe the issue is still valid and you would like input from the maintainers then please comment to ask for it to be reviewed.
Thanks for taking the time to help me out ๐
Versions
Configuration
What configuration values are you using for Sarama and Kafka?
Kafka config
Logs
logs: CLICK ME
``` proto: can't skip unknown wire type 4 [SARAMA]consumer/broker/1 closed dead subscription to mock_topic/0 [SARAMA]client/metadata fetching metadata for [mock_topic] from broker localhost:9092 [SARAMA]loop check partition number coroutine will exit, topics [mock_topic] [SARAMA]client/coordinator requesting coordinator for consumergroup hermes-cart-updates-group-id from localhost:9092 [SARAMA]client/coordinator coordinator for consumergroup hermes-cart-updates-group-id is #1 (localhost:9092) [SARAMA]consumer/broker/1 added subscription to mock_topic/0 ```
Problem Description
Error when running
proto.Unmarshal(msg.Value, event)
when using snappyproto: can't skip unknown wire type 4
.If my understanding is correct, this article states that "The consumer thread dequeues data from this blocking queue, decompresses and iterates through the messages", which means any message my consumer consumes should already be decompressed. But matching the byte array of both compressed/uncompressed
msg.Value
is different. What am I missing here๐?