The ones that come to mind are
- Specific technology investments such as WebLogic (think of cluster deployments).
- Generic process based on common technology (think of Tomcat Manager)
- Custom processes, infrastructure and configuration to meet specific needs
If an organization has an investment in WebLogic or other costly technology and the deployment capabilities meet it's needs then maybe there isn't a need to do anything different than the product dictated solution. Using WebLogic or similar solution likely means there are multiple tiers and maybe load balancing of one or more tiers over multiple servers. That type of environment is substantially more complex to setup and maintain than a single tier/server solution. If the organization is staffed appropriately and has the proper training with the specific tools then doing something different seems unwise unless there is a good reason. The main downside to this solution is cost - for both the tool and either training or hiring of the appropriate staff. If the application hosted is critical then the costs multiply as well since you likely would want multiple staff trained to provide coverage during vacations or other unplanned emergencies.
Many small/mid-size organizations likely use Apache Tomcat or something similar. There are reasonably well documented install and deployment procedures available on-line or in various books. For organizations with smaller or less trained IT departments this is certainly a workable solution. Most developers are more than capable of getting a default install up and running and managing it. Applications can be scaled by load balancing multiple servers which starts to increase the complexity but is likely manageable at smaller scales. After a certain point, scaling via adding more load balanced servers and using the default deployment procedures starts to become fragile. Examples of the result of the fragility might include failed deployments, individual servers return wrong results, servers accessing wrong resources or what can be best described as flaky behavior. These problems likely stem from things such as improper change management, rushed planning, lack of reliable deployment tooling/procedures, tight maintenance windows, etc.
Are there alternatives to the above and why would an organization use them? Yes there are alternatives to the above scenarios and I will document one here. This is only an alternative and is not necessarily the best one for every organization. Each and every organization has to evaluate their resources, risks and requirements to determine what is appropriate for themselves. This alternative focuses on reducing deployment errors, speeding up the deployment process for some cases and some other benefits I will document.
The assumptions for this alternative are:
- mid-size organization
- understaffed IT with wide duties
- critical applications with at least a moderate rate of change
- basic web application (multiple load balanced web servers and 1 DB server)
- NAS NFS storage
- Apache Tomcat
- Linux based Web servers
Another improvement to the overall environment includes installing the Java JDK on NFS storage and having a Linux soft-link (in a location on the NFS storage) to the current JDK in use. Any later JDK upgrade process is faster because you only need to do one install, change one soft-link and start the application up. These last 2 steps are the only steps where the application should probably be down. If you have a lot of servers to deploy to, this can be a real time saver. This also saves some space but storage is relatively cheap so the benefit is likely minimal.
Another idea is to install the Apache Tomcat software on NFS using the delivered ability to specify CATALINA_BASE and CATALINA_HOME separately. After doing this, setup a Linux soft-link (in a location on the NFS storage) to the current Tomcat. Each web server would reference the soft-link instead of the specific versioned directory that is typically referenced. The idea is to extract the read-only aspects (code) of Tomcat out to read-only NFS storage and the individual web servers have the application specific tomcat configuration files and directories (log, webapps, work). This can speed up the process of upgrading to a newer Tomcat version - especially for minor upgrades. I do recommend cleaning out any unused functionality from the Tomcat server.xml file.
If the web servers used above are virtual machines, creating more servers to increase scalability may only require cloning an existing server and making sure it is in the load balanced pool.
These same ideas can be applied to non-production applications and some aspects can be shared between applications (like the read-only NFS storage containing Tomcat and/or JDK). As the number of applications and servers increases, the benefits from these ideas increase.
And yes, you should only do this if you trust your storage system. I recommend a backup plan for handling any major infrastructure failures. Having a copy of the NFS data available for installation on the local servers is one possible method.
The NFS method is in production across 3 applications and is working well. The idea was extended a bit to handle disaster recovery(DR) for one application so far. An environment variable allows the selection of production or disaster recovery application configuration data. The production and DR configuration is co-located on NFS storage and replicated to the DR site where it is mounted read-only on preconfigured DR server clones.
ReplyDelete