Startup Deployment Architecture- Running Glassfish V3 Prelude without Apache... - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:01:20Z http://stackoverflow.com/feeds/question/215537 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/215537/startup-deployment-architecture-running-glassfish-v3-prelude-without-apache 1 Startup Deployment Architecture- Running Glassfish V3 Prelude without Apache... DanielHonig 2008-10-18T20:26:03Z 2008-10-21T06:36:46Z <p>So am I crazy for considering doing a beta/production release on Glassfish V3 Prelude? Since all of my content is dynamic, I'm not even thinking of bothering to set up apache in front either. Doing so complicates the setup by requiring something like AJP or mod_jk and will not offer us much in terms of capability.</p> <p>So there will be three war files on deployment. 3 JNDI data sources with about 90 connections parked, scaling up to 160 to a PGSQL datastore....</p> <p>The three wars comprise a CMS system and a grails application?</p> <p>Is my logic fatally flawed that I don't need to put apache in front of this setup?</p> http://stackoverflow.com/questions/215537/startup-deployment-architecture-running-glassfish-v3-prelude-without-apache/219143#219143 1 Answer by Ed.T for Startup Deployment Architecture- Running Glassfish V3 Prelude without Apache... Ed.T 2008-10-20T16:54:46Z 2008-10-20T16:54:46Z <p>I have a Grails app in test running on GlassFish V2 and I haven't found any compelling reason to frontend with Apache. Somewhere I read (wish I could remember where and cite the source) that with Tomcat's performance improvements there was less and less of a reason to use Apache with Tomcat. The gist of it was the added performance came with just enough added complexity that it may not be worth it.</p> <p>Is there a specific feature that is pushing you to V3 Prelude?</p> http://stackoverflow.com/questions/215537/startup-deployment-architecture-running-glassfish-v3-prelude-without-apache/220977#220977 1 Answer by f4nt for Startup Deployment Architecture- Running Glassfish V3 Prelude without Apache... f4nt 2008-10-21T06:36:46Z 2008-10-21T06:36:46Z <p>The biggest bonus of using Apache in front of GlassFish/Tomcat/Resin/Jetty/whatever is the versatility it grants you. Tomcat can replace Apache for instance, and that works out relatively well. However, that means everything needs to be served from that one Tomcat container, which is throwing a lot of extra processing that the instance has to do that wouldn't be necessary with Apache in the picture. Adding a simple PHP based forum to your infrastructure suddly becomes a bit of a hassle, rather than a 5 minute task thanks to Apache. Another benefit of putting Apache in front is it allows you the ability to take the load of serving static content away from your container. That's my biggest beef with having a container serve by itself, without an JK/AJP proxies involved. Your system becomes a bit more complex, and a bit less versatile. In the end though, if it increases performance, maybe it's worth it.</p>