Re: is it better to use aggregator to write a large file hourly using messages from active mq queue?

2016-12-28 Thread Quinn Stevenson
For a requirement such as this, I would probably schedule a route to start hourly and write the file rather than use an aggregator. The reason for this is I normally can’t lose any messages and if I use an aggregator I need to have a persistent aggregation repository as well to ensure I don’t

is it better to use aggregator to write a large file hourly using messages from active mq queue?

2016-12-20 Thread beschi
I have a requirement of creating a large file hourly, the content of the files will be the records/line from active mq queue. I am using the following code, is there any better option?