Resin Documentationapp server |
resin 4.0.17 release notes
4.0.17 includes Web Profile TCK, JMS, cloud, health, eclipse plugin, and command-line work
Resin 4.0.17 finishes up our dynamic cloud support, putting the final piece together. You can now add and remove a new dynamic server to the cluster, and Resin's cloud will update to support the new server automatically.
unix> java -jar lib/resin.jar -join-cluster app-tier -server dyn1 start Enhancements to the health check system continue with the following new command available.
<health:IfExpr> and <health:ExprHealthCheck> work well in combination with enhancements made to EL syntax that enables JMX access and regular expression evaluation. <cluster xmlns="http://caucho.com/ns/resin" xmlns:health="urn:java:com.caucho.health"> <health:SendMail> <to>admin@yourdomain.com</to> <health:Not> <health:IfExpr test="${mbean('java.lang:type=Runtime').BootClassPath =~ '.*resource-16.jar.*'}"/> </health:Not> </health:SendMail> </cluster> In this example, the mbean('java.lang:type=Runtime') function looks up an MBean in JMX, and '.BootClassPath' retrieves the attribute value. The =~ operator matches the value to a regular expression. <health:Not> qualifies the predicate to match on a failure. This is a useful check to alert if a required jar is not present in the boot classpath. A number of previously hard-coded JMX meters are now setup in health.xml. Meters provide graphing in /resin-admin. Any numeric MBean attribute can be graphed using the new <health:JmxMeter> or <health:JmxDeltaMeter> elements. <cluster xmlns="http://caucho.com/ns/resin" xmlns:health="urn:java:com.caucho.health"> <health:JmxMeter> <name>JVM|Thread|JVM Thread Count</name> <objectName>java.lang:type=Threading</objectName> <attribute>ThreadCount</attribute> </health:JmxMeter> <health:JmxDeltaMeter> <name>JVM|Compilation|Compilation Time</name> <objectName>java.lang:type=Compilation</objectName> <attribute>TotalCompilationTime</attribute> </health:JmxDeltaMeter> </cluster> JmxMeter graphs the current value, while JmxDelta meter graphs the different between the current and previous values. /resin-admin uses the pipe | character in the <name> attribute to enhance the UI by categorizing meters into drill-downs. Resin 4.0.17 introduces commands to produce thread and heap dumps, change log
levels and profile applications. Documentation for an updated CLI interface
can be viewed with Commands added in release 4.0.17 are Eclipse plugin has undergone significant updates, with configuration, deployment and debugging reworked. Added option for remote deployment. Bugs #4417, #4418 are resolved. Removing the older version of plugin is necessary for a smooth update. Procedure for complete removal of the plugin is outlined at http://bugs.caucho.com/view.php?id=4417 Updates to NetBeans plugin resolve bug #3936 and changes deployment option to exploded web-app directory deploy.
|