spring-cloud-stream
spring-cloud-stream copied to clipboard
Fix inconsistency in consuming messages in batches
This issue may need to be transferred to kafka binder, so for now it's just a place holder See StackOverflow for more details - https://stackoverflow.com/questions/70423758/consuming-kafka-messages-with-its-key-in-batches-using-spring-cloud-stream-kafka/70424028#70424028 tagging @sobychacko
Any news about this issue which is more than one year old ?
- It is not compliant with the Spring Cloud Stream reference documentation to receive
Message<List<?>>
instead ofList<Message<?>>
- It is really not convenient to have to match key and value of each Kafka records through matching indexes in 2 separate lists
In addition, as the Kafka binder is now part of the main spring-cloud-stream repository, this issue doesn't need to be transferred anywhere.