Hi there, This process is there for various optional management services coded in Java - rather than each one having its own JVM, there's one shared JVM process to minimize the (non-zero) impact of having a JVM running on the system.
Idle Java processes can eat up background CPU doing internal statistics gathering - see bugid 361715: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6361715 You may be able to fix this by disabling the statistics gathering on this process, as described in the workaround to the JVM bugid, by changing the sampling rate in the flags given to this JVM to a much lower level - you can persistently change the flags given to the common agent container using its administrative CLI: /usr/sbin/cacaoadm stop /usr/sbin/cacaoadm set-param java-flags="`cacaoadm get-param java-flags -v` \ -XX:PerfDataSamplingInterval=500" /usr/sbin/cacaoadm start Hope this helps! [ Nick ] This message posted from opensolaris.org _______________________________________________ opensolaris-discuss mailing list opensolaris-discuss@opensolaris.org