With tomcat 6.0.x, we can use Http11NIOprotocol and get scalable performance. Is there any specific reason/drawback of using NIOprotocol, that tomcat is not using this protocol as a default protocol?

link|improve this question
feedback

1 Answer

In the general context of NIO, it usually pays to run some production benchmark measurements to ensure you are getting the performance you think you are. Remember that Http11NIOprotocol does some odd things, like simulated blocking, to achieve drop-in connector behavior--this is not free and could potentially be less performant that the default Http11Protocol connector.

We are satisfied with the performance of our webapp with the default Http11Protocol connector. Hundreds of millions of HTTP requests per month on 5 year old hardware.

If performance really is a concern, you should investigate taking the more labor intensive step of using the AJP Connector Http11AprProtocol. It is a part native connector written in C which reportedly is solidly faster. But getting it up and running takes more than a server.xml change.

I've personally had problems with Http11NIOprotocol and a 3rd party open source API library. (OpenAMF, a dated AMF0 POJO thingy.) Meaning, it didn't work. But if it works for you, then cool.

In summary: the benefits of the NIO connector are debatable. Run benchmarks. Consider the AJP connector.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.