Dears,
I am using Camel SMPP component for Deliver SM and Submit SM. Submit SM is
working fine. But whenever multiple Deliver SM(MO - Mobile Originated)
requests comes to SMPP End Point then all of them are not processed by camel
exchange as some of them got discarded as they did not processed by
exchange. If each component of camel is multi threaded so why it is not
handling multiple requests simultaneously. Is there any place where can we
exceed the number of threads or configure number of threads to process
multiple request simultaneously. How can we improve the configuration to
handle heavy load for performance testing.
For example I have sent 50 Deliver SM(MO - Mobile Originated) requests from
simulator then 40 of them got processed and 10 of them are discarded
exchange does not process the request.
Find my sample code for reference below:
@Override
public void configure() throws Exception {
onException(Exception.class).handled(false).bean(new
SmsGeneralExceptionProcessor(), "process");
from(smppEndpoint)
.process(new SmsMessageProcessor(channelMessagesBean))
}
Please guide me.....
Thanks & Regards
Saurabh Mehan
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-SMPP-component-question-tp5734019.html
Sent from the Camel Development mailing list archive at Nabble.com.