Most popular application servers


This is the second post in the series where we publish statistical data about the Java installations. The used dataset originates from free Plumbr installations out there totalling 1,024 different environments we have collected during the past six months.
First post in the series analyzed the foundation – on what OS the JVM is run, whether it is a 32 or 62-bit infrastructure and what JVM vendor and version were used. In this post we are going to focus on the application servers used. It proved to be a bit more challenging task than originally expected – the best shot we had towards the goal was to extract it from the bootstrap classpath. With queries similar to “grep -i tomcat classpath.log”. Which was easy. As opposed to discovering that:


Out of the 1024 samples 92 did not contain a reference to bootstrap classpath at all. Which was our first surprise. Whether they were really ran without any entries to bootstrap classpath or our statistics just do not record all the entries properly – failed to trace the reason. But nevertheless, this left us with 932 data points. Out of the remaining 932 we were unable to link 256 reports to any of the application servers known to mankind. Before jumping to the conclusion that approx. 27% of the JVMs out there are running client side programs, we tried to dig further
  • 57 seemed to be launched using Maven plugins, which hides the actual runtime from us. But I can bet the vast majority of those are definitely not Swing applications.
  • 11 environments were running on Play Framework, which is not using Java EE containers to run.
  • 6 environments were launched with Scala runtime attached, so I assume these were also actually web applications.
  • 54 had loaded either jgoodies or swing libraries which make them good candidates for being a desktop application
  • 6 were running on Android. Which we don’t even support. If you guys can shed some light on how you managed to launch Plumbrwith Android, let us know.
  • And the remaining 122 – we just failed to categorize – they seemed to range from MQ solutions to batch processes to whatnot.
But 676 reports did contain reference to the Java EE container used. And results are visible from the following diagram:
Application Server Marketshare
The winner should not be a surprise to anyone – Apache Tomcat is being used in 43% of the installations. Other places on the podium are a bit more surprising – Jetty coming in second with 23% of the deployments and JBoss third with 16%. The expected result was exactly reversed, but apparently the gears have shifted during the last years.


No comments:

Post a Comment