High heap usage even when system idle, is this caused by AMPool setting ?

Hi All,
We are running ADF BC 10.1.3.3 with 2 JVM OC4J instance. Max heap is 3.5 GB.
I notice that when system is idle, the heap usage for each JVM can be between 1.5 to 2 GB. It is confusing me because relatively no user is accessing the application.
Then I am suspecting that the setting in Apps Module Pool may be the cause, i.e :
<jbo.recyclethreshold>50</jbo.recyclethreshold>
<jbo.ampool.maxavailablesize>90</jbo.ampool.maxavailablesize>
<jbo.ampool.minavailablesize>25</jbo.ampool.minavailablesize>
Is there anything wrong with the setting that may cause AM Pool Monitor busy doing wrong thing ?
Thank you for your help,
xtanto

mcmillan wrote:
rohankolay wrote:Right now i have kernel26-2.6.35.4 which i updated on 27 aug. That is around the same time the problem began.Should i downgrade it to kernel26-2.6.35.3 or kernel26-2.6.34.3?
I think most people have been seeing the problems in any of the 2.6.35 kernels, so 2.6.34.3 would be my recommendation
+1
And put kernel26 in IgnorePkg.

Similar Messages

  • What Causes High CPU Usage Even When PC is Idle

    How can I fixed the high cpu usage on my pc?

    mcmillan wrote:
    rohankolay wrote:Right now i have kernel26-2.6.35.4 which i updated on 27 aug. That is around the same time the problem began.Should i downgrade it to kernel26-2.6.35.3 or kernel26-2.6.34.3?
    I think most people have been seeing the problems in any of the 2.6.35 kernels, so 2.6.34.3 would be my recommendation
    +1
    And put kernel26 in IgnorePkg.

  • [Solved] High load average even when idle after update

    Hello arch fellows!
    I have a Dell Inspiron N4110 intel i5 4gb ram. I think it is a decent laptop and should run Arch Linux pretty well, right? Well, it does until I run 'pacman -Syu'. After the update, the load average gets over 1.00 even when idle. It hardly gets under 0.40. Before updating, the average is under 0.10 most times. The command top doesn't show me anything. All the processes are practically 0%. It seems to me the problem would be the kernel, am I right? But I tried the fallback option when booting but it is the same.
    Does anybody have an idea of what could be the problem? I appreciate any help.
    Last edited by sollidsnake (2012-05-18 00:32:52)

    Thanks for the reply. It was really a kernel problem. I downgraded it to an older version and it looks normal now

  • Hard Drive Light remains on even when system is powered off

    HP xw8600 Workstation running XP SP3
    In the past couple of weeks I am getting a lot of blue-screen errors with varying error codes, mostly pointing to problems with the C: drive. But what troubles me is that my hard drive activity light remains lit constantly, even when the system is powered off. The only way to make the light go out is to physically unplug the power cord from the computer. As soon as I plug the power cord back in, the HDD LED lights up.
    I have Googled, Yahooed, and Binged this problem to death, and gotten nothing but pages and pages of why the hard drive would be busy when the machine is powered up. But powered down?
    I ran HP's hardware diagnostics (found no problems, it never does) and have even disconnected the hard drive and moved it to another identical box (we have about 25 xw8600 boxes) and the problem did not follow. The HDD LED on this box remains lit with the power off and no hard drives connected.
    I should note that the power light functions properly, I have checked the wiring and it's not backwards.

    Hello WAVYTV, The symtoms you describe sound suspiciously like a faulty motherboard.
    There may be a possibility that you could also have a faulty power supply.
    Please click the White Kudos star on the left, to say thanks.
    Please mark Accept As Solution if it solves your problem.

  • Does entity cache cause high heap usage ? better setClearCacheOnCommit ?

    Hi all,
    During peak load (150-200 users) of our production ADF application (10.1.3.3), the heap usage can be reach 3GB, causing JVM very busy doing frequent GC.
    Is this possibly because the 'by default uncleared' entity cache ?
    What is the implication is I do 'setClearCacheOnCommit()' ?
    Thank you for your help,
    xtanto

    The EO cache will be cleared when the AM is released in stateless mode. By default that would occur when your web session times out, but you can eagerly release it in stateless mode (when the user is finished with the task that uses that AM).
    Using setClearCacheOnCommit() will more eagerly clear the EO cache, however doing so will clear the VO caches, too, for the VOs related to those EOs so it may end up causing more database requerying than you were doing before. Effectively, after a commit you'll need to requery any data that's needed for the subsequent pages the user visits. If your work flow is such that the user does not do a commit and then continue processing other rows that you've already queried, then it might be an overall slight win on memory usage, however if the user does issue a commit (say, from an Edit form) and then return back to a "list" page to process some other record, doing a clearCacheOnCommit=true will force your list page to requery the data (which it's not doing now when the entity cache isn't been eagerly cleared)
    So, like many performance-related question, it depends on exactly what your app is doing.

  • Crystal Report export to PDF cause high Heap usage ?

    Hi all,
    As part of our reporting integrated with our JSF/JSP application, Crystal report is converted to PDF then sent to browser for user to display. mean while during peak load our Heap usage could reach 3.5GB - 4GB. So I am suspecting the unclosed byteArrayInputStream is the cause.
    (This is a production application so I am collecting information before change the code)
    Is the unclosed() byteArrayInputStream  really cause the problem ?  (the codes is below)
    Thank you,
    Krist
    ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream)
                                     reportClientDoc.getPrintOutputController().export(exportOptions);       
    reportClientDoc.close();
    writeToBrowser(byteArrayInputStream, response, "application/csv", EXPORT_FILE);
    private void writeToBrowser(ByteArrayInputStream byteArrayInputStream, HttpServletResponse
    response, String mimetype, String exportFile)
       throws Exception {
          byte[] buffer = new byte[byteArrayInputStream.available()];
          int bytesRead = 0;
          response.reset();
          response.setHeader("Content-disposition", "inline;filename=" + exportFile);
          response.setContentType(mimetype);
          //Stream the byte array to the client.
          while((bytesRead = byteArrayInputStream.read(buffer)) != -1)
                { response.getOutputStream().write(buffer , 0, bytesRead);}
          //Flush and close the output stream.
          response.getOutputStream().flush();
          response.getOutputStream().close();

    I do not know if my solution to my Heap problem will help any of you but I thought I would just post it here
    just incase yourselves or others come looking for possible solutions.
    I created a very simlpe report with 2 groups and not much in the way of complex functions. Whilst reporting against about
    100 pages of output everything worked fine, but as soon as we pushed the report up to 500+ pages we got all sorts
    of issues.
    java.lang.OutOfMemoryError: Java heap space
    After much hair pulling and trial and error I discovered that the issue came about where I did not declare formula variables as local. I was concatinating various street address details for of the envelope windows.
    Stringvar Address;      //    I was using this declaration
    Global Stringvar Address;    // Specific Global declaration
    Local Stringvar Address;    // Changed to this declaration
    After changing to Local, my report now runs with no hassels. And the memory usage whilst exporting the report has gone from maxing out at over 1GB to almost nothing (dont even get it registering)
    Am sure someone can come up with a better explanation for this and give reasons but just thougth I would share.
    Cheers
    Darren

  • Officejet 4630 printer makes high pitched whine even when not printing

     I just bought an Officejet 4630 printer for home use and noticed it makes an annoying high pitched whine whenever it's not sleeping, even when not printing.  Is not very loud, and would not be noticeable in an office environment due to ambient noise, but is obvious in a quiet home environment.  Is this normal for this model or is the unit defective?  Neither of my two previous inkjet printers made this noise.

    Hello,
    If your OfficeJet 4630 is within the standard warranty period, please contact HP technical support to speak to one of our agents who can troubleshoot and diagnose this issue.
    We look forward to your response,
    Best regards,
    Jeff Christopher
    Executive Customer Relations
    Hewlett-Packard Company
    Palo Alto, California
    I work for HP

  • Could this unclosed() byteArrayInputStream cause high Heap usage ?

    Hi all,
    As part of our reporting integrated with our JSF/JSP application, the
    report is converted to PDF then sent to browser for user to display.
    mean while during peak load our Heap usage could reach 3.5GB - 4GB. So
    I am suspecting the unclosed byteArrayInputStream is the cause.
    (This is a production application so I am collecting information
    before change the code)
    Is the unclosed() byteArrayInputStream really cause the problem ?
    (the codes is below)
    Thank you,
    Krist
    ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream)
    reportClientDoc.getPrintOutputController().export(exportOptions);
    reportClientDoc.close();
    writeToBrowser(byteArrayInputStream, response, "application/csv",
    EXPORT_FILE);
    private void writeToBrowser(ByteArrayInputStream byteArrayInputStream,
    HttpServletResponse
    response, String mimetype, String exportFile)
    throws Exception {
    byte[] buffer = new byte[byteArrayInputStream.available()];
    int bytesRead = 0;
    response.reset();
    response.setHeader("Content-disposition", "inline;filename=" +
    exportFile);
    response.setContentType(mimetype);
    //Stream the byte array to the client.
    while((bytesRead = byteArrayInputStream.read(buffer)) != -1)
    { response.getOutputStream().write(buffer , 0,
    bytesRead);}
    //Flush and close the output stream.
    response.getOutputStream().flush();
    response.getOutputStream().close();
    }

    xtanto wrote:
    Is the unclosed() byteArrayInputStream really cause the problem ? Source code from 1.6.12
    class ByteArrayInputStream extends InputStream {
         * Closing a <tt>ByteArrayInputStream</tt> has no effect. The methods in
         * this class can be called after the stream has been closed without
         * generating an <tt>IOException</tt>.
         * <p>
        public void close() throws IOException {
        }

  • Exhaust fan overworked when system idle

    Any idea as to why my exhaust is freaking out when the system is idle. I turn it on and in a matter of 10 minutes after ONLY checking e-mail the fan is at 6000 rpm. The system seems to be overworking itself unnecessarily. CPU shows the following in istat:
    User: 22-30%
    System: 27-34%
    Nice: 0%
    Idle: 48-51%
    CPU temp is at 68%
    I have a Best Buy warranty and they say it passes all ASD tests. This fan is draining my battery 10 times faster than before. Any thoughts?

    Go to your Utilities folder and start Activity Monitor....select the CPU tab and choose 'All Processes' from the drop down menu at the top of the window....I suspect you have a stuck processes....you can click the stop sign and kill it from there....

  • Engine heap usage exceeded when calling Subflow

    Hello all,
    We are running a single server UCCX 7.0(1)SR05_Build504 with two CUCM version 7.1.5.11901-1 servers.
    We recently added a subflow call to seven of our scripts. The subflow checks an XML file that we loaded to Applications > Document Management in UCCX. The XML file is very small. See screenshot
    This is the Subflow:
    We had no problems when we had only one script calling this subflow. However, now that we have seven of our scripts calling it, we are getting this message when attempting to update or refresh an application.
    I found this article (see link below) even though it refered to version 8.0, and so as soon as I removed the Call subflow from the seven scripts, this message stopped appearing. Do I need to somehow delete at cached document at the end of the subflow script or reset some value? We would like to continue to use the subflow for checking for holidays.
    article - http://www.cisco.com/en/US/products/sw/custcosw/ps1846/products_tech_note09186a0080b51d17.shtml
    Thank you in advance for any help anyone can provide. :-)

    You have to open a Cisco TAC case and they will give you access to a secial download area.
    ES05 was issued around June last year.
    The 7.0(2) was released around June this year and that bug is fixed in 7.0(2)
    If you have the contract you can order the 7.0(2) upgrade via the PUT tool. You can't download it Cisco have to ship you the CD.
    http://www.cisco.com/upgrade
    If you don't have a contract you have a problem
    Regards
    Graham

  • Why does my apple tv use data even when im not downloading..??? even when its idle it uses data???

    why doe smy apple tv use data when idle?

    If it's not accessing any internet content it shouldn't be. I would look into your security settings and contact ISP

  • IMac...Safari not working when parental controls enabled, even when no safari or application restrictions have been set.

    I woke up one morning to find that Safari could only open webpages on the administrator account.
    The other accounts had parental controls enabled. However, not all of them even had any restrictions for using applications or Safari content. When I totally disabled parental controls, these other accounts could get access the internet through safari. When I enabled them (without setting up any paramters), Again Safari could not open any web pages. I tried reseting also.
    Has anyone had this issue or have an idea of what I need to do to fix it? Thanks!

    I had the same problem, Safari would not open at all in the accounts that had parent controls enabled. I resolved this by going into the admin account and making a copy of safari then pasting it into the library folders as well as the application folders. You can also paste a copy of safari into the other user accounts (desktop) from the admin account. Once that is done, open the parent controls  system  (check the applications to allow) Internet tab then check safari. Hope that works for you

  • Third-party websites set cookies even when the "Block Cookies" preference in Safari is set to  default setting "From third parties and advertisers"

    Is there a fix for this?

    Safari and cookies management needs improvement as noted from the ASC forum search for Safari / Cookies here.
    What I'm trying to say is that you would have better luck managing cookies in another browser.

  • Microsoft Office 2004 -- extremely high cpu usage and virtual ram

    hi,
    when i use office it causes a very high cpu usage even when its in idle mode.
    i am unable to work with it, because its extremely slow.
    does anyone have same experiences?
    thanks for your help!
    mbp 2.0 1,5gb ram 80gb hdd   Mac OS X (10.4.7)  

    I am able to work OK with office, I'm using the 'old version' Microsoft Office v.X, not much details in the About Box, just listed as MSoft Word/Excel/etc for Mac service release 1.
    I get the occasional crash, and I have seen Word in particular use 90% of a single core and amazingly large virtual memory usage, gigabytes sometimes, but eventually the document gets printed.
    It shows how useful the dual core (or quad) cpu approach is!
    One cpu for Word to print, and one cpu to run the rest of my applications/life!
    I still use this old office rather than re-booting into Window§ for whatever is the latest version of office.
    Doing some playing with a similar one page document in Office v.X and Pages 2.01, I get Word using about 25% of a core , Pages using 5%, - whilst editing; Intel native Pages has 20% of a core and 80MB ram 480 virtual whilst printing, Word has about 100% of a core and 65MB ram 650 virtual whilst printing, but it is a powerPC code so Rosetta is in there somewhere.
    check Activity Monitor or other apps/widgets for some parasitic processes? have fun!
    many Macs 512k -> MacBool Pro 2GHz 1GB ram   Mac OS X (10.4.7)   Yes, I have Key Lime

  • High cpu usage when the system is idle

    I do have a high cpu usage problem when the system is idle. I bought the laptop (lenovo x230 tablet) with windows 7 installed in it. Then upgraded to windows 8. But ever since I have problems with high cpu usage by the system even when the computer is idle.
    Only the system by itself uses around 30% of the cpu all the time. I ran xperf, and here is the result of it:
    http://sdrv.ms/Kj6CFN
    I appreciate any help you can provide.
    Thanks,

    Hi,
    I'm sorry for that the log you provide can't be opened on my computer. While according to your description, it should had a special process that consume CPU usage when system idle Iguess, isn't it?
    You can use
    Process Explorer to monitor the process activity, may be we can find the reason of this problem.
    Note: We can use Process Explorer to check the Stack of every process then analyize the problem in deep.
    To gave a better insight about this problem, you can take a ScreenShot for this problem and provide the picture here.
    Roger Lu
    TechNet Community Support

Maybe you are looking for

  • Connection Office365 Exchange - Outlook 2010/2013 (Desktop)

    I have an Office365 account with Exchange function, connected with my personal domain. This works perfect for almost a year now, but since a few days, Outlook (desktop) can't connect to my ExchangeMail/Office365 anymore. Some details: I can reach my

  • Report expression

    Im a bit new to SQL reporting, but one of the items I am trying to generate is an expression within a matrix. One of the fields is not reported within the database, but is based on a calculation of two other fields. These two other fields could be bl

  • Do we have BED,CESS & ECESS Values in Export Invoice

    Hi Experts Since the conditions maintained of BED,CESS and ECESS are statistical in case of export pricing procedure. Do we have the values displayed of BED,CESS & ECESS when we create export invoice. If yes, please let me know what can be the reason

  • Installing Grid Control - Solaris - Containers - VM(Veritas)

    I need to know how and where I can start to learn how to install Grid Control using Solaris with containers, and Veritas VM to create and mantain filesystems. Please help. Paola. @}-->-->>-----

  • SELECT STATEMENT FROM THIS TABLES

    HI FRIENDS, PLE HELP ME REGARDING THIS. data from 3 tables TABLES: CUST_CONT,CONT_CAT_FOLD,CONT_FOLD_*** cust_cont_pk (IS COMMON FIELD IN TABLE I AND 3) cont_cat_fold_pk( IS COMMON FIELD IN TABLE 2 AND 3) HOW CAN I WRITE SELECT STATEMENT Thanking u s