Just in case somebody is interested: After very tedious months of struggling with a (productive!) server that needed restarting at least once a day, we finally have found the problem: For performance improvement we had wanted to disable the MetricsInterceptor, so in standardjboss.xml we set set the flag <interceptor metricsEnabled="false">org.jboss.ejb.plugins.MetricsInterceptor</interceptor> The result was thousands of unused messages accumulating in our entity beans that never got garbage collected. After setting the flag to true suddenly the server was running fine! Now we have simply commented out the whole line, so that the MetricsInterceptor really doesn't interfere. Seems to work ok. Could this be a JBoss bug?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863882#3863882 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863882 ------------------------------------------------------- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
