SpringXD and Spring Integration: Read from kafka topic every X minutes, then send to another Topic
问题 I'm trying to implement a solution to create a SpringXD stream composed by a kafka source, a bridge module, and a kafka sink. So I have something like: <channel id="pollable"> <queue /> </channel> <bridge input-channel="pollable" output-channel="executorChannel"> <poller max-messages-per-poll="5" fixed-rate="5000" /> </bridge> My problem is that I would like to avoid the poller somehow. Basically because I would like to avoid keeping messages in memory when those messages are in the queue. I