Sunday, May 11, 2008

researching and finding information completely work and nothing else

searched for muxer threads on google

got this link for BEA

KNOW MUXERS


how are we gonna tune WLS 9.2

TUNE WLS 9.2


search for this term on google

The Inside Story on WebLogic Threads... THIS PRESENTATION IS REALLY ROCKING


See the Presentation


Technical Support Issues:
US/Canada 800-893-8779
International 971-544-3222

GC Algorithm

The type of garbage collector (GC) that the Virtual Machine is using.

JRockit provides the following types of GCs:

  • Generational Copying, which is suitable for testing applications on a desktop machine with a small (less then 128 MB) heap.

  • Single Spaced Concurrent, which reduces or eliminates pauses in the VM that are due to garbage collection. Because it trades memory throughput for reduced pause time, you generally need a larger heap size than with other GC types. If your ordinary Java threads create more garbage than this GC can collect, the VM will pause while the Java threads wait for the garbage collection to finish.

  • Generational Concurrent, which creates a "nursery" space within the heap. New objects are created within the nursery. When the nursery is full, JRockit "stops-the-world," removes the dead objects from the nursery, and moves live objects to a different space within the heap. Another thread runs in the background to remove dead objects from the non-nursery space. This GC type has a higher memory throughput than a single spaced concurrent GC.

  • Parallel, which allocates all objects to a single spaced heap. When the heap is full, all Java threads are stopped and every CPU is used to perform a complete garbage collection of the entire heap. This behavior causes longer pause times than for the concurrent collectors but maximizes memory throughput.

MBean Attribute:
JRockitRuntimeMBean.GcAlgorithm



No comments: