by Mike Amling <spamonly@[EMAIL PROTECTED]
>
Jan 25, 2007 at 05:21 PM
Kevin wrote:
> I use WebLogic 8.1 on a Solaris 9 box with 8 processors. I have JDK
> 1.4.2_05 installed and due to long pauses with the default collector, I
> tried out the Concurrent garbage collector. However, once I do that,
> the system runs out of file handles within minutes of starting the load
> test. Solaris is setup with 8192 as the top limit for file handles.
>
> I tried various options within Concurrent garbage collector (like
> ParNewGC, CMSParallelRemark) but all lead to system running out of file
> handles.
Does your load test construct a lot of FileInputStream etc objects
without closing them? Do you depend on finalizers running to close them?
--Mike Amling