On Mon, Jun 21, 2010 at 3:58 PM, Charles Moulliard <[email protected]> wrote: > Hi, > > Is there a way to tell the camel-netty component to not creating a > camel exchange for every message received from a TCP/IP connection but > to group them in a batch of by example 1000 messages ? This could be > very helpful especially when we have to process from a TCP server > thousands of messages / second. >
No you cannot do this. You may be able to create a custom netty protocol and "batch together" in that protocol. I would assume this is the way to go. Then you can remember how many "messages" you got or wait for a special end of byte marker or whatever. Maybe others have better ideas? > KR, > > Charles Moulliard > > Senior Enterprise Architect (J2EE, .NET, SOA) > Apache Camel - ServiceMix Committer > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > Blog : http://cmoulliard.blogspot.com | Twitter : > http://twitter.com/cmoulliard > Linkedin : http://www.linkedin.com/in/charlesmoulliard | Skype: cmoulliard > -- Claus Ibsen Apache Camel Committer Author of Camel in Action: http://www.manning.com/ibsen/ Open Source Integration: http://fusesource.com Blog: http://davsclaus.blogspot.com/ Twitter: http://twitter.com/davsclaus
