I know Thrift has its own Threadpool server but I’m not sure it will be able to handle heavy load. Would you recommend putting it behind tomcat ?
In addition, if you wanted to use the socket transport implementation could you still use tomcat ? or would need to use some other solution ?
I would really love to hear about your experience deploying thrift java services.
I know Thrift has its own Threadpool server but I’m not sure it will
Share
Consider putting it inside application server (tomcat, jetty, etc.) and accessing it through HTTP using TServlet. You get from the server:
Filters to maybe rate limit the requests, or manage access based on cookies