BrainDump
  Home arrow BrainDump arrow Tomcat Capacity Planning
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
BRAINDUMP

Tomcat Capacity Planning
By: O'Reilly Media
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 3
    2009-03-12


    Table of Contents:
  • Tomcat Capacity Planning
  • Capacity Planning
  • Capacity Planning on Tomcat
  • Additional Resources

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Tomcat Capacity Planning
    ( Page 1 of 4 )

    In this conclusion to a five-part series on tuning Tomcat's performance, you will learn about the various kinds of capacity planning, and how to do capacity planning for Tomcat. This article is excerpted from chapter four of Tomcat: The Definitive Guide, Second Edition, written by Jason Brittain and Ian F. Darwin (O'Reilly; ISBN: 0596101066). Copyright © 2008 O'Reilly Media, Inc. All rights reserved. Used with permission from the publisher. Available from booksellers or direct from O'Reilly Media.

    Precompiling JSPs at build time using JspC

    Here are some valid (as of the time of this writing) reasons for doing build-time precompilation of JSPs:

    1. You need all the performance you can squeeze out of your webapp, and build-time compiled JSPs run faster than JSPs that are compiled inside Tomcat after the webapp is deployed. First, the Java class bytecodes generated in both situations should really be the same, and if they’re not exactly the same, the difference will be very small—certainly not worth a major deployment change such as is necessary to precompile the JSPs before deployment. Also, the time it takes Tomcat to compile the original JSP is usually small and occurs only on the first request of each JSP page after webapp deployment/redeployment. All other requests to the JSP pages serve from the compiled and loaded JSP servlet class (JSPs are compiled into Java servlets). But since JSPs that were compiled before webapp deployment are mapped to the URI space in the web.xml  file, Tomcat is able to route requests to them slightly faster than if the JSP page were compiled at webapp runtime. This is because when JSP pages are compiled during runtime, the resulting servlets must be mapped to the URI space first by the regular URI mapper, which sends the request to the JspServlet, then the request is mapped to the requested JSP page by Tomcat’s JspServlet. Note that the runtime compiled JSPs are mapped via two layers of indirection (two distinct mappers), and precompiled JSPs are mapped via only the first layer of indirection. The performance difference comes down to the performance of the two different URI mapper situations. In the end, precompiled JSPs usually run about 4 percent faster. Precompiling them before webapp deployment would save you the small initial request compile time for each JSP page in your webapp, plus the 4 percent performance improvement on each subsequent request for a JSP page. In Tomcat 4.1.x, the runtime JSP request mapper was noticeably slower than the web.xml  servlet mapper and made it worth precompiling JSPs before webapp deployment. That made JSP pages faster by approximately 12 percent or so in our tests. But, for Tomcat version 5.0.x and higher, this margin was reduced to about 4 percent or less.
    2. By precompiling JSPs at webapp build or packaging time, the syntax for the JSPs is checked during the JSP compilation process, which means that you can be confident that the JSPs at least compile with no syntax errors before you deploy your webapp. This is great a way to avoid the situation where you have deployed your webapp to your production
      server(s) only to find out later that one of the JSPs had a syntax error, and it was found by the first user who requested that page. Also, finding errors in the development phase of the code allows the developer to find and fix the errors more rapidly; it shortens the development cycle. This will not prevent every kind of bug because a compiled JSP may still have runtime logic bugs, but at least you can catch all syntax errors in the development environment.
    3. If you have a large number of JSP files in your webapp, each of which is somewhat long (hopefully you are not copying and pasting lots of content from one JSP page to many other JSP pages; you should instead make use of the JSP include feature), the initial compilation time for all the JSP pages combined could be significantly large. If so, you can save time on the production server by precompiling the JSPs before webapp deployment time. This is especially helpful if your traffic load is high, and your server responses would otherwise slow down quite a bit, while the server is initially compiling many JSP pages at the same time when the webapp is first started.
    4. If you have a low server resource situation, for instance, if the Java VM is configured to use a small amount of RAM or the server does not have very many CPU cycles for Tomcat to use, you may not want to do any JSP compilation at all on the server. Instead, you could do the compilation in your development environment and deploy only compiled servlets, which would lighten the utilization of both memory and CPU time for the first request of each JSP file after each new copy of the webapp is deployed.
    5. You are developing a JSP web application that you will sell to customer(s) whom you do not want to have the JSP source code. If you could give the customer(s) the webapp containing just compiled servlets, you could develop the webapp using the original JSPs, and ship it with the compiled JSP servlets. In this use case, precompiling before release to the customer is used as a source code obfuscation mechanism. Keep in mind, though, that compiled Java class files are relatively easy to decompile into readable Java source code, but (as of this writing) there is no way to decompile it all the way back into JSP source code.
    6. Also, as of Tomcat version 5.5, you no longer need a JDK that has a built-in Java source compiler to serve runtime compiled JSPs. Tomcat versions 5.5 and higher come bundled with the Eclipse JDT compiler, which is a Java compiler that is itself written in pure Java. Because the JDT compiler is bundled as part of Tomcat, Tomcat can always compile JSPs into servlets, even when Tomcat is run on a JRE and not a JDK.

    Example 4-4 is an Ant build file that you can use to compile your webapp’s JSP files at build time.

    Example 4-4. The precompile-jsps.xml Ant build file

    <project name="pre-compile-jsps" default="compile-jsp-servlets">

      <!-- Private properties. -- >
      <property name="webapp.dir" value="${basedir}/webapp-dir"/>
      <property name="tomcat.home" value="/opt/tomcat"/>
      <property name="jspc.pkg.prefix" value="com.mycompany"/>
      <property name="jspc.dir.prefix" value="com/mycompany"/>

      <!-- Compilation properties. -->
      <property name="debug" value="on"/>
      <property name="debuglevel" value="lines,vars,source"/>
      <property name="deprecation" value="on"/>
      <property name="encoding" value="ISO-8859-1"/>
      <property name="optimize" value="off"/>
      <property name="build.compiler" value="modern"/>
      <property name="source.version" value="1.5"/>

      <!-- Initialize Paths. -->
      <path id="jspc.classpath">
        <fileset dir="${tomcat.home}/bin">
          <include name="*.jar"/>
        </fileset>
        <fileset dir="${tomcat.home}/server/lib">
          <include name="*.jar"/>
        </fileset>
        <fileset dir="${tomcat.home}/common/i18n">
          <include name="*.jar"/>
        </fileset>
        <fileset dir="${tomcat.home}/common/lib">
          <include name="*.jar"/>
        </fileset>
        <fileset dir="${webapp.dir}/WEB-INF">
          <include name="lib/*.jar"/>
        </fileset>
        <pathelement location="${webapp.dir}/WEB-INF/classes"/>
        <pathelement location="${ant.home}/lib/ant.jar"/>
        <pathelement location="${java.home}/../lib/tools.jar"/>
      </path>
      <property name="jspc.classpath" refid="jspc.classpath"/>

      <!--========================================================== -->
      <!-- Generates Java source and a web.xml file from JSP files.                     -->
      <!-- ==========================================================
    -->
      <target name="generate-jsp-java-src">

        <mkdir dir="${webapp.dir}/WEB-INF/jspc-src/${jspc.dir.prefix}"/>
        <taskdef classname="org.apache.jasper.JspC" name="jasper2">
          <classpath>
            <path refid="jspc.classpath"/>
         
    </classpath>
        </taskdef>
        <touch file="${webapp.dir}/WEB-INF/jspc-web.xml"/>
        <jasper2 uriroot="${webapp.dir}"
                 package="${jspc.pkg.prefix}" 
              webXmlFragment="${webapp.dir}/WEB-INF/jspc-web.xml"
                 outputDir="${webapp.dir}/WEB-INF/jspc-src/${jspc.dir.prefix}"
                 verbose="1"/>
     
    </target>

      <!-- ========================================================== -->
      <!-- Compiles (generates Java class files from) the JSP servlet -->
      <!-- source code that was generated by the JspC task.            -->
      <!-- ========================================================== -->
      <target name="compile-jsp-servlets" depends="generate-jsp-java-src">
        <mkdir dir="${webapp.dir}/WEB-INF/classes"/>
       
    <javac srcdir="${webapp.dir}/WEB-INF/jspc-src"
              
    destdir="${webapp.dir}/WEB-INF/classes"
              
    includes="**/*.java"
              
    debug="${debug}"
              
    debuglevel="${debuglevel}"
              
    deprecation="${deprecation}"
              
    encoding="${encoding}"
              
    optimize="${optimize}"
              
    source="${source.version}">
         
    <classpath>
            <path refid="jspc.classpath"/>
          </classpath>
        </javac>
      </target>

      <!-- ========================================================= -->
      <!-- Cleans any pre-compiled JSP source, classes, jspc-web.xml -->
      <!-- ========================================================= -->
      <target name="clean">
        <delete dir="${webapp.dir}/WEB-INF/jspc-src"/>
       
    <delete dir="${webapp.dir}/WEB-INF/classes/${jspc.dir.prefix}"/>
       
    <delete file="${webapp.dir}/WEB-INF/jspc-web.xml"/>
     
    </target>

    </project

    If you put this Ant build xml content into a file named something such as pre compile-jsps.xml , you can test it alongside any build.xml  file you already have, and if you like it, you can merge it into your build.xml .

    This build file will find all of your webapp’s JSP files, compile them into servlet classes, and generate servlet mappings for those JSP servlet classes. The servlet map pings it generates must go into your webapp’s WEB-INF/web.xml file, but it would be difficult to write an Ant build file that knows how to insert the servlet mappings into your web.xml  file in a repeatable way every time the build file runs. Instead, we used an XML entity include so that the generated servlet mappings go into a new file every time the build file runs and that servlet mappings file can be inserted into your web.xml file via the XML entity include mechanism. To use it, your webapp’s WEB- INF/web.xml must have a special entity declaration at the top of the file, plus a reference to the entity in the content of the web.xml  file where you want the servlet mappings file to be included. Here is how an empty servlet 2.5 webapp’s web.xml  file looks with these modifications:

      <!DOCTYPE jspc-webxml [
        <!ENTITY jspc-webxml SYSTEM "jspc-web.xml">
     
    ]>

      <web-app xmlns=http://java.sun.com/xml/ns/javaee
          xmlns:xsi=http://www.w3.org/2001/ XMLSchema-instance
          xsi:schemaLocation="http:// java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/
     
    javaee/web-app_2_5.xsd"
          version="2.5">

        <!-- We include the JspC-generated mappings here. -->
        
    &jspc-webxml;

        <!-- Non-generated web.xml content goes here. -->

      </web-app>

    Make sure your webapp’s web.xml file has the inline DTD (the DOCTYPE tag) all the way at the top of the file and the servlet 2.5 web-app schema declaration below that. Then, wherever you want to insert the generated servlet mappings in your web.xml   file, put the entity reference &jspc-webxml; . Remember, the entity reference begins with an ampersand ( & ), then has the name of the entity, and ends with a semicolon ( ; ).

    To use the build file, just edit it and set all of the properties at the top to values that match your setup, and then run it like this:

      $ ant -f pre-compile-jsps.xml 
      Buildfile: pre-compile-jsps.xml

      generate-jsp-java-src:
        [jasper2] Sep 27, 2008 10:47:15 PM org.apache.jasper.xmlparser.MyEntityResolver
      resolveEntity
        [jasper2] SEVERE: Invalid PUBLIC ID: null
        [jasper2] Sep 27, 2007 10:47:17 PM org.apache.jasper.JspC processFile
        [jasper2] INFO: Built File: /index.jsp

      compile-jsp-servlets:
          [javac] Compiling 1 source file to /home/jasonb/myproject/webapp-dir/WEB-INF/
      classes

      BUILD SUCCESSFUL
      Total time: 7 seconds

    Any JSP files you have in your webapp dir will be compiled into servlets, and when you deploy the webapp, the JSP page requests will be mapped to the compiled serv lets. Ignore the “ SEVERE: Invalid PUBLIC ID: null ” message if you get it; it’s bogus. If you want to clean out the compiled servlets and their generated Java source and mappings, just execute the clean target like this:

      $ ant -f pre-compile-jsps.xml clean

    One thing that this build file does not do: remove all of the JSP files in your webapp after compiling them. We didn’t want you to accidentally delete your JSP files, so we intentionally left it out. Your own build file should do that before the webapp gets deployed. If you forget and accidentally leave the JSP files in the deployed webapp, none of them should get served by Tomcat because the web.xml  file explicitly tells Tomcat to use the compiled servlet classes instead.



     
     
    >>> More BrainDump Articles          >>> More By O'Reilly Media
     

       

    BRAINDUMP ARTICLES

    - Demystifying SELinux on Kernel 2.6
    - Yahoo and Microsoft Create Ad Partnership
    - The Advantages of Obscure Open Source Browse...
    - Dell Announces CSI-style Digital Forensics S...
    - Milepost GCC Speeds Open-Source Development
    - Learn These 10 Programming Languages
    - Tomcat Capacity Planning
    - Internal and External Performance Tuning wit...
    - Tomcat Benchmark Procedure
    - Benchmarking Tomcat Performance
    - Tomcat Performance Tuning
    - Wubi: Windows-based Ubuntu Installer
    - Configuring and Optimizing Your I/O Scheduler
    - Linux I/O Schedulers
    - Advising the Linux Kernel on File I/O





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek