We have a use case where messages are consumed from RabbitMQ, transform it and push the record to the Kinesis stream. Each message in RabbitMQ corresponds to a record in the Kinesis stream. AmazonKinesisAsync supports PutRecordsRequestEntry where multiple records can be grouped to make a single HTTP call.
My question is there any out-of-box component in Spring Integration that helps to group the messages from rabbitmq into a batch based on the configurable amount of records size before pushing to Kinesis?