[Performance Tuning] - Re: 100% CPU usage with lots of memory
by DeanoUK
Seeing 99% CPU but not much memory being used + not much GC being performed and after a while saw these messages (multiple of):
| [19 Mar 2008 17:06:33] WARN com.arjuna.ats.arjuna.logging.arjLoggerI18N - [com.arjuna.ats.arjuna.coordinator.CheckedAction_2] - CheckedAction::check - atomic action a0000cb:9c83:47e12b7d:2f4a aborting with 1 threads active!
| [19 Mar 2008 17:06:33] WARN com.arjuna.ats.arjuna.logging.arjLoggerI18N - [com.arjuna.ats.arjuna.coordinator.BasicAction_58] - Abort of action id a0000cb:9c83:47e12b7d:2f65 invoked while multiple threads active within it.
| [19 Mar 2008 17:06:33] WARN com.arjuna.ats.arjuna.logging.arjLoggerI18N - [com.arjuna.ats.arjuna.coordinator.CheckedAction_2] - CheckedAction::check - atomic action a0000cb:9c83:47e12b7d:2f65 aborting with 1 threads active!
|
Is that related to the CPU usage, is some atomic process locking and causing the high usage?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4137859#4137859
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4137859
18 years, 1 month
[Clustering/JBoss] - Re: role of port bindings xml
by bstansberry@jboss.com
If you look at the jboss-service.xml mbean where you set ports-01, etc, there's a "StoreURL" attribute:
| <mbean code="org.jboss.services.binding.ServiceBindingManager"
| name="jboss.system:service=ServiceBindingManager">
| <attribute name="ServerName">ports-01</attribute>
| <attribute name="StoreURL">${jboss.home.url}/docs/examples/binding-manager/sample-bindings.xml</attribute>
| <attribute name="StoreFactoryClassName">
| org.jboss.services.binding.XMLServicesStoreFactory
| </attribute>
| </mbean>
That tells you the location under the root of your JBoss install where it finds the file it uses to alter the ports. You can look at that file to see what it is doing. You'll have to think about/interpret it, as it isn't documentation.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4137833#4137833
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4137833
18 years, 1 month