I'm using Apache, actually IBM HTTP server with WebSphere plugin, as reverse proxy and load balancer in front of my WebSphere Application Servers (currently 8.5.5).
In the next future I'll need to use long polling request in a massive way, with tens of thousands of requests active at the same time. On the WAS side the asynchronous servlets should address my needs, but I'm scared that the thread per request model of apache will be the main factor limiting the scalability of my servers. Every request will use a thread in apache and a TCP port to allow the WebSphere plugin to connect to WAS.
Is there any Apache setting that can help with this architecture or any other software solution that can work as reverse proxy for WAS and address long polling requests better then Apache?
Thanks