Find my comments inline. Best, Christian
On Fri, Jan 4, 2013 at 11:09 AM, kiranreddykasa <kirankuma...@fss.co.in>wrote: > Hi > > With spring and camel integration we have developed a webapp from which we > can add or remove routes at runtime. > Cool. > > Suppose if there is an tcp endpoint which is receiving some ten thousand > requests is it advisable to run camel instance separately ?? or is it okay > to run it in the web container itself ?? > Both options are ok from the Camel point of view. Choose what ever works best for you. > > what if there are some ten tcp endpoints like these???how to scale it?? > You can scale vertical - add more CPU, RAM, ... You can scale in your application - add more listeners (threads) to your TCP/IP endpoint. You can scale in your application - start the same route again on different ports and put a load balacer up front. You can scale horizontal - start the same application on another server and put a load balacer up front. > > > > > ----- > Regards > > kiran Reddy > -- > View this message in context: > http://camel.465427.n5.nabble.com/Sclaing-camel-tp5724876.html > Sent from the Camel - Users mailing list archive at Nabble.com. > --