Php out of memory

I've got a memory problem which shows up in php like:
unable to allocate memory for mutex; resize mutex region
I have implemented a query almost exactly like the query in
the Berkeley DB XML book, page 184. I do a query, then
create a prepared query to further refine the result. In my case, the
outside where looks like:
fn:collection("$z")/dataset[@name="$dsn"]/qualification
Which returns thousands of things that look like this:
<qualification>
<arg name="queryname" value="getnewdataset"/>
<arg name="fromtimestamp" value="2009-09-07T21:00:00-05:00"/>
<arg name="totimestamp" value="2009-09-07T22:00:00-05:00"/>
<arg name="dtype" value="U"/>
</qualification>
<qualification>
<arg name="queryname" value="getnewdataset"/>
<arg name="fromtimestamp" value="2009-09-07T22:00:00-05:00"/>
<arg name="totimestamp" value="2009-09-07T23:00:00-05:00"/>
<arg name="dtype" value="U"/>
</qualification>
I prepare this query once:
$pqc->setVariableValue("attname", "fromtimestamp");
$pq = $mgr->prepare('arg[@name=$attname]/@value', $pqc);
Then, for each result, execute the prepared query:
try
$pqc->setVariableValue($column_name, $colval);
$ts = $pq->execute($res, $pqc);
while($ts->hasNext())
$v .= $ts->next()->asString();
catch(Exception $e)
print "got exception " . $e->getMessage();
exit(0);
Every time I run it I get the exception (after 636 successful executions) :
unable to allocate memory for mutex; resize mutex region
Any ideas? I am using this technique as a 'bind' to connect
php variables to bdb xml return values. Is there a better way?
I can use the php xml dom, or I could parse the <qualification> subtree
that comes back as a string. What is the preferred way of moving data in to
program variables?
-g

Some more information. The contexts that I was using for the inside and
outside queries were 'Eager'. I changed to 'Lazy' and the query works. I then
changed just the outside query to 'Lazy' and the inside to 'Eager' and it works.
It's just when the outside query is 'Eager' that the failure occurs.
-g

Similar Messages

  • I haven't done an update since 24.0 because my computer is running out of memory. How much MORE memory will I need to get up to version 28.0?

    I haven't done an update since 24.0 because my computer is running out of memory. How much MORE memory will I need to get up to version 28.0?
    My computer is really old.
    It is running out of memory.
    I haven't done a firefox update since 24.0 because I think it will explode my computer.
    I see that v28.0 takes 200MB.
    How much more is this than what is already loaded for my v24.0?
    Will it just add the extra pieces, or will it require a free block of 200MB (which my computer does not have)?
    I don't want to crash and lockup my computer because I try to install something that is too big for the remaining memory.
    Thanks.

    You should updated to Firefox 28, Firefox updates don't take any new space they just replace the existing files.
    There are some things you can do to clean up your hard drive to free up space however, http://arstechnica.com/civis/viewtopic.php?p=21178060 and http://support.microsoft.com/kb/956324, also uninstall programs you don't use anymore and delete files you don't need anymore.
    You should also start saving up for a new machine, Windows XP is being dropped from support by Microsoft in a few days, which means it will no longer be safe to use on the internet.

  • Out of memory error with 80Kb file?

    Hi, my pc has 2Gb of Ram, a page file that is setup correctly
    and the physical ram is almost non-used (500Mb)
    When I start DW and load a php file of 80Kb approx., it just
    hangs/locks up. When I wait for it, it gives me an "out of memory"
    error, and when you look in windows task manager, it just keeps
    hogging up ram.
    My laptop is a "simple", 1Gb Hp pavillion, and when I open
    the file there, it just works like it's supposed to, using about
    70Mb of ram, instead of the gigabyte(s) it does on my developer
    machine....
    Adjusting virtual memory has absolutely no effect.. It seems,
    after some reading, that people using 2gb of ram, have the most
    problems in this area?
    Adobe, please help here !
    EDIT: i just tested another file, 136Kb large, that loads
    normal!, so it has to do with the files in specific... If you want
    to test the files, just download "Simplemachines Forum" and load
    the "load.php" or the "post.php" files from the source directory,
    to trigger the lockup...

    mmm... just tried using a "workaround" if you still can call
    it that
    Installed a virtual machine (xp) with less than 2gigs, and it
    works... I really hope someone else has got these kind of errors
    yet.... 2500$ + software, wich I can't use for now... Using
    notepad2 for time being...

  • Out of Memory Error bcoz of xml file size

    Hi,
    Help me to solve this out of memory error, if xml file size
    is increased means
    it is not displaying anything and displaying this out of
    memory error.
    Thanking you
    Regards
    Nirmalatha.N

    You should avoid loading large sized XML files in your Flash
    Lite application. There is a limit on incoming data, and anything
    beyond that will give an error. My experience has been around 1000
    characters in a single stream of incoming text.
    A possible solution your memory problem is to use a middle
    language like PHP, ASP etc, to stream a single XML data file in
    parts to your Flash Lite application. This means you avoid loading
    XML directly in Flash.
    Mariam

  • FlashBuilder for PHP 4.5 memory issue

    Hi,
    I'm fairly new to flex and could use a little help. I have setup a project with FB for PHP and connected it using the PHPZend dataservices.
    When I do this it creates valueObjects in my flex project and I can then bind my data componets.
    I've done all of this using examples from adobeTV so i suppose I'm doing it the right way.
    I have a very simple two state stage with a search input which takes a string and then call's the php service which returns data into a list which has a custom item renderer.
    With each search the result data that is returned from the service is completely different values.
    While testing the application I noticed that it's memory usage keep's increasing, so after a little digging I have run profiler on the project and watched the Live Objects to see what is holding the memory.
    It seems to me that when a service is called the results are returned into a valueObject which was created by the FB for PHP introspector, and it seems that even though a new request has been made the old data is still held in memory.
    As you can see the two items at the top of this screenshot are the two services that I'm calling. On the search I use the MasterRepList service to get a list of names (about 1000 of them) and then from what is selected there I query the EditionAdList service passing it the name from the search input.
    This then returns the results into the next state in the list with custom item renderer.
    I have run the search a few times before taking this screenshot and each search returned less than 150 items in the arraycollection...
    So my question is this.
    How can I clear out the memory in the two valueObjects when a new search is performed as having it keep growing is going to crash the pc pretty quickly?
    I'm not doing anything special just making a query and displaying the results... I dont want to be able to dynamicaly have it refresh or allow them to change any of the info.. just query and display the info....
    If the list require's refreshing then I will have a seperate function handle this which will also need to clear out the valueObjects first then repopulate it.
    Sorry for the long post and what may appear to be vague description... I'm still learning and would really appreciate any help offered.
    Cheers
    Steve

    anyone... I really could use a little help.

  • MySQL has run out of memory ::Help needed::

    ::Help needed::
    I've created a PHP web application in Dreamweaver, which uses a MySQL database, containing 14 tables.
    On one page, I use a an SQL query to select data from 10 of the tables in the database.
    However, when I try to preview the page in a browser, a PHP warning stating that the MySQL engine has run out of memory.
    Is there a way of increasing the Memory Cache of the engine, or a way to optimize the performance?

    Is this happening locally?
    If it is, try rebooting your system and see if this fixes the problem. If not then you have a problem with your code. If it works locally but not on the server, then you know it's not something in your code causing the issue, so you can confidently go to your host support and have them sort it out.
    With any such situation, testing locally first is a vital debugging step.
    Hope this gives you a path to follow.
    Lawrence   *Adobe Community Expert*
    www.Cartweaver.com
    Complete Shopping Cart Application for
    Dreamweaver, available in ASP, PHP and CF
    www.twitter.com/LawrenceCramer

  • I am running out of memory on my hard drive and need to delete files. How can I see all the files/applications on my hard drive so I can see what is taking up a lot of room?

    I am running out of memory on my hard drive and need to delete files. How can I see all the files/applications on my hard drive so I can see what is taking up a lot of room?
    Thanks!
    David

    Either of these should help.
    http://grandperspectiv.sourceforge.net/
    http://www.whatsizemac.com/
    Or search 'disk size' in the App Store.
    Be carefull with what you delete & have a backup BEFORE you start, you may also want to reboot to try to free any memory that may have been written to disk.

  • I,have,a,Galaxy,S,and,want,to,clear,out,some,memory.,All,my,epics,are,in,the,cloud,(I,think),but,I,want,them,on,my,external,hard,drive,before,I,delete,them,from,my,phone.,,Do,I,have,to,upload,all,of,the

    I have a GalaxyS5 and want to clear out some memory.  All my pics are in the cloud but I don't want to keep all of them.  After I sort and cull how to I move the keepers to my external hard drive?  Can I do this directly from the cloud?

    rwethereyet,
    Keeping your pictures safe is definitely important! Once you have synced the saved pictures to your phone you can transfer them from the phone to your computer. Are you using the Verizon Cloud Desktop app?
    JohnB_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Out Of memory in prod

    One of the prod clusters is running on below crashed both nodes with an out of memory exception which looks like below.
    How do we get to know if the crash is due to a memory leak in the code or elsewhere?
    Any inputs which helps to identify on the issue and submit data to application team supporting the need to update the systems is appreciated.
    RHEL 4.6 on a 32 bit OS
    BEA JRockit(R) R27.5.0
    Below is the dump file generated when the JVM was crashed.
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 21 days, 21:54:48 on Thu Aug 29 23:22:36 2013
        *  If you see this dump, please go to                    *
        *  http://edocs.bea.com/jrockit/go2troubleshooting.html  *
        *  for troubleshooting information.                      *
    Additional information is available in:
      /wls_domains/prod_slimseu_wli_domain/jrockit.20717.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    Error Message: Out of memory [68]
    Signal info  : si_signo=11, si_code=2 si_addr=(nil)
    Fatal Error  : Lock Iteration lockTokenIterInit src/jvm/code/runtime/refiter.c:233
    Version      : BEA JRockit(R) R27.5.0-110_o-99226-1.5.0_14-20080528-1505-linux-ia32
    GC Strategy  : Mode: throughput. Currently using strategy: genparpar
    GC Status    : OC is not running. Last finished OC was OC#6379.
                 : YC is not running. Last finished YC was YC#46347.
    OC History   : Strategy genparpar was used for OC#5680 to OC#5848.
                 : Strategy singleparpar was used for OC#5849.
                 : Strategy genparpar was used for OC#5850 to OC#6034.
                 : Strategy singleparpar was used for OC#6035.
                 : Strategy genparpar was used for OC#6036 to OC#6379.
    YC History   : Ran 7 YCs before OC#6375.
                 : Ran 6 YCs before OC#6376.
                 : Ran 4 YCs before OC#6377.
                 : Ran 7 YCs before OC#6378.
                 : Ran 5 YCs before OC#6379.
                 : Ran 0 YCs since last OC.
    YC Promotion : Last YC successfully promoted all objects
    Heap         : 0x8100000 - 0x88100000  (Size: 2048 MB)
    Compaction   : 0x80100000 - 0x88100000  (Current compaction type: external)
    NurseryList  : 0x6d634138 - 0x798afad0
    KeepArea     : 0x79218a20 - 0x7c8122f0
    NurseryMarker: [ 0x79218a20,  0x7c8122f0 ]
    CompRefs     : References are 32-bit.
    CPU          : Intel Core 2 SSE SSE2 SSE3 SSSE3 SSE4.1 EM64T
    Number CPUs  : 4
    Tot Phys Mem : 21292417024 (20306 MB)
    OS version   : Red Hat Enterprise Linux ES release 4 (Nahant Update 6)
    Linux version 2.6.9-67.ELsmp ([email protected]) (gcc version 3.4.6 20060404 (Red Hat 3.4.6-8)) #1 SMP Wed Nov 7 13:58:04 EST 2007 (i686)
    Thread System: NPTL
    Java locking : Normal
    State        : JVM is running
    Command Line : -Xms2048m -Xmx2048m -Xss=256k -da -Dplatform.home=/opt/bea922/aldsp301/weblogic92 -Dwls.home=/opt/bea922/aldsp301/weblogic92/server -Dwli.home=/opt/bea922/aldsp301/weblogic92/integration -Denvironment=prod -Dlog4j.configuration=file:/wls_domains/prod_slimseu_wli_domain/apacheLog4jCfg.xml -Dweblogic.management.discover=false -Dweblogic.management.server=http://meermin.european.idexxi.com:30050 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=true -Dweblogic.ext.dirs=/opt/bea922/aldsp301/patch_weblogic922/profiles/default/sysext_manifest_classpath -Xverbose:gcreport,memdbg,gcpause -Xverboselog:/wls_logs/prod_slimseu_wli_domain/prod_slimseu_wli.gc -Duser.timezone=GMT -Dweblogic.Domain=prod_slimseu_wli_domain -Dweblogic.Name=prod_slimseu_wli_02 -Djava.security.policy=/opt/bea922/aldsp301/weblogic92/server/lib/weblogic.policy -Dsun.java.launcher=SUN_STANDARD weblogic.Server
    java.home    : /opt/bea922/aldsp301/jrockit-R27.5.0/jre
    j.class.path : /opt/bea922/aldsp301/aldsp_3.0/lib/binxml.jar:/opt/bea922/aldsp301/patch_weblogic922/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/opt/bea922/aldsp301/jrockit-R27.5.0/lib/tools.jar:/opt/bea922/aldsp301/weblogic92/server/lib/weblogic_sp.jar:/opt/bea922/aldsp301/weblogic92/server/lib/weblogic.jar:/opt/bea922/aldsp301/weblogic92/server/lib/webservices.jar::/opt/bea922/aldsp301/weblogic92/integration/lib/worklist-system-required.jar:/opt/bea922/aldsp301/weblogic92/server/lib/jpd.jar:/opt/bea922/aldsp301/weblogic92/integration/L10N:/opt/bea922/aldsp301/weblogic92/common/eval/pointbase/lib/pbclient51.jar:/opt/bea922/aldsp301/weblogic92/server/lib/xqrl.jar::
    j.lib.path   : /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/jrockit:/opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386:/opt/bea922/aldsp301/jrockit-R27.5.0/jre/../lib/i386:/opt/bea922/aldsp301/patch_weblogic922/profiles/default/native:/opt/bea922/aldsp301/weblogic92/server/native/linux/i686:/opt/bea922/aldsp301/weblogic92/server/native/linux/i686/oci920_8
    JAVA_HOME    : /opt/bea922/aldsp301/jrockit-R27.5.0
    _JAVA_OPTIONS: <not set>
    LD_LIBRARY_PATH: /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/jrockit:/opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386:/opt/bea922/aldsp301/jrockit-R27.5.0/jre/../lib/i386:/opt/bea922/aldsp301/patch_weblogic922/profiles/default/native:/opt/bea922/aldsp301/weblogic92/server/native/linux/i686:/opt/bea922/aldsp301/weblogic92/server/native/linux/i686/oci920_8
    LD_ASSUME_KERNEL: <not set>
    C Heap       : 1 memory allocations have failed
                 : First failure was a mmMalloc of 20 bytes
                 : Last failure was a mmMalloc of 20 bytes
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory  : 3 OutOfMemoryErrors have occured
    Registers (from ThreadContext: 0xa96d4e94 / OS context: 0xa96d4f90):
       eax = 00001267    ecx = a96d520c    edx = 00000043    ebx = b7f5d74c
       esp = a96d5280    ebp = a96d5298    esi = 00000044    edi = a96d52e8
        es = 0000007b     cs = 00000073     ss = 0000007b     ds = 0000007b
        fs = 00000000     gs = 00000033
       eip = b7dabd55 eflags = 00000282
    Stack:
    (* marks the word pointed to by the stack pointer)
    a96d5280: b7f72020* 00000200  b7f5d74c  a96d52e8  a96d52e8  a96d52a4 
    a96d5298: a96d52b8  b7f258c4  00000044  b7f5d74c  a96d52e8  a96d5310 
    a96d52b0: a96d5358  a96d5360  a96d52d8  b7f258ef  00000044  b7f5d74c 
    a96d52c8: a96d52e8  a96d5360  a96d5310  a96d5358  a96d52f8  b7ecee0a 
    Code:
    (* marks the word pointed to by the instruction pointer)
    b7dabd24: 4c892074  458b0824  2404c710  b7f72020  0c244489  000200b8 
    b7dabd3c: 24448900  92fae804  01b80017  a3000000  b7f72004  001267b8 
    b7dabd54: 0000a300* 04c70000  00003f24  9aeae800  768d0017  27bc8d00 
    b7dabd6c: 00000000  e589fc55  53c03157  b9e87d8d  00000004  00c0ec81 
    Loaded modules:
    (* denotes the module causing the exception)
    08048000-08056ff3  /opt/bea922/aldsp301/jrockit-R27.5.0/bin/java
    0093f000-0094c85b  /lib/tls/libpthread.so.0
    00833000-00853c8f  /lib/tls/libm.so.6
    00858000-00859967  /lib/libdl.so.2
    00705000-0082a578  /lib/tls/libc.so.6
    006eb000-0070039b  /lib/ld-linux.so.2
    b7d16000-b7f6c6a7 */opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/jrockit/libjvm.so
    00db2000-00db9a76  /lib/tls/librt.so.1
    b7cdb000-b7cf9103  /lib/libnss_centrifydc.so.2
    0099a000-009a8fef  /lib/libresolv.so.2
    00d76000-00d8866f  /lib/libnsl.so.1
    b7cd0000-b7cd8a57  /lib/libnss_files.so.2
    b7be5000-b7bef81b  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/libverify.so
    b7bc2000-b7be2317  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/libjava.so
    b6b1b000-b6b20f13  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/native_threads/libhpi.so
    b65ae000-b65bc4c4  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/libzip.so
    b4e71000-b4e82f03  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/libnet.so
    b4e69000-b4e6f207  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/libnio.so
    b5f03000-b5f06313  /lib/libnss_dns.so.2
    b3a6e000-b3a73246  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/libmanagement.so
    b39e1000-b39ea357  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/libjmapi.so
    b36d8000-b36d9de4  /opt/bea922/aldsp301/weblogic92/server/native/linux/i686/libwlfileio2.so
    a59ed000-a5a4c026  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/libawt.so
    a5926000-a59eb21f  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/libmlib_image.so
    a5920000-a5924f1c  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/headless/libmawt.so
    a53f8000-a54710a7  /opt/bea922/aldsp301/jrockit-R27.5.0/jre/lib/i386/libfontmanager.so
    "[ACTIVE] ExecuteThread: '25' fo" id=75 idx=0x128 tid=20894 lastJavaFrame=0xa96d54cc
    Stack 0: start=0xa9698000, end=0xa96da000, guards=0xa969d000 (ok), forbidden=0xa969b000
    Thread Stack Trace:
        at dumpForceDump+117()@0xb7dabd55
        at vmFatalErrorMsgV+84()@0xb7f258c4
        at vmFatalErrorMsg+31()@0xb7f258ef
        at fatalError+42()@0xb7ecee0a
        at lockTokenIterInit+151()@0xb7ecf317
        at trProcessLocksForThread+102()@0xb7edda26
        at get_all_locks+106()@0xb7df61ca
        at javalockConvertTokenForObject+74()@0xb7df83aa
        -- Java stack --
        at jrockit/vm/Locks.convertThinLockedToFatLocked(Ljava/lang/Object;)V(Native Method)
        at jrockit/vm/Locks.createMonitorAndConvert(Locks.java:1521)[inlined]
        at jrockit/vm/Locks.wait(Locks.java:2184)[inlined]
        at weblogic/rjvm/ResponseImpl.waitForData(ResponseImpl.java:81)[optimized]
        ^-- Holding lock: weblogic/rjvm/ResponseImpl@0x6daebaa8[thin lock]
        at weblogic/rjvm/ResponseImpl.getTxContext(ResponseImpl.java:108)[inlined]
        at weblogic/rjvm/BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:109)[optimized]
        at weblogic/rmi/cluster/ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:335)[inlined]
        at weblogic/rmi/cluster/ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:252)[optimized]
        at com/bea/ld/Server_ydm4ie_EOImpl_1030_WLStub.executeOperationStreaming(Lcom/bea/dsp/ejb/QualName;[Ljava/lang/Object;Lcom/bea/ld/QueryAttributes;Lcom/bea/ld/filter/FilterXQuery;)Lcom/bea/dsp/ejb/StreamingQueryResult;(Unknown Source)[optimized]
        at com/bea/dsp/das/ejb/EJBClient.invokeOperation(EJBClient.java:148)[optimized]
        at com/bea/dsp/das/DataAccessServiceImpl.invokeOperation(DataAccessServiceImpl.java:171)[inlined]
        at com/bea/dsp/das/DataAccessServiceImpl.invoke(DataAccessServiceImpl.java:122)[inlined]
        at com/bea/dsp/control/core/delegates/impl/DSPControlInvocationDelegate.executeFunction(DSPControlInvocationDelegate.java:219)[inlined]
        at com/bea/dsp/control/core/delegates/impl/DSPControlInvocationDelegate.invokeOnDataService(DSPControlInvocationDelegate.java:64)[optimized]
        at com/bea/dsp/control/core/DSPControlImpl.invoke(DSPControlImpl.java:81)[optimized]
        at com/idexx/lims/controls/dsp/ResultsReportDSPControlFileBean.getPathEventTimeStampForDepartment(ResultsReportDSPControlFileBean.java:267)[optimized]
        at com/idexx/lims/orderresults/dao/OrderResultsDAOImpl.getPathEventTimeStampForDepartment(OrderResultsDAOImpl.java:109)[optimized]
        at com/idexx/lims/controls/OrderResultsCustomControlImpl.releaseResultsAndSaveReport(OrderResultsCustomControlImpl.java:360)[optimized]
        at com/idexx/lims/controls/OrderResultsCustomControlBean.releaseResultsAndSaveReport(OrderResultsCustomControlBean.java:440)[optimized]
        at sun/reflect/GeneratedMethodAccessor831.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)[optimized]
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)[optimized]
        at java/lang/reflect/Method.invoke(Method.java:585)[optimized]
        at com/bea/wli/knex/runtime/jcs/container/JcsProxy.invokeBeehiveControl(JcsProxy.java:666)[optimized]
        at com/bea/wli/knex/runtime/jcs/container/JcsProxy.invoke(JcsProxy.java:433)[optimized]
        at $Proxy163.releaseResultsAndSaveReport(LorderResults/logical/orderResultsWs/ReleaseResultsAndSaveReportDocumentXmlBean;)LorderResults/logical/orderResultsWs/ReleaseResultsAndSaveReportResponseDocumentXmlBean;(Unknown Source)
        at com/idexx/lims/controls/process/OrderResultsProcess.orderResultsCustomControlReleaseResultsAndSaveReport(OrderResultsProcess.java:649)
        at sun/reflect/GeneratedMethodAccessor830.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)[optimized]
        at java/lang/reflect/Method.invoke(Method.java:585)[optimized]
        at com/bea/wli/bpm/runtime/Perform.invoke(Perform.java:39)[inlined]
        at com/bea/wli/bpm/runtime/Perform.execute(Perform.java:50)[optimized]
        at com/bea/wli/bpm/runtime/SyncReceive.messageDelivery(SyncReceive.java:63)[optimized]
        at com/bea/wli/bpm/runtime/ProcessState.processMessage(ProcessState.java:217)[optimized]
        at com/bea/wli/bpm/runtime/ProcessState.dispatchRequest(ProcessState.java:241)[inlined]
        at com/bea/wli/bpm/runtime/JpdContainer.dispatchProcessRequest(JpdContainer.java:1077)[optimized]
        at com/bea/wli/bpm/runtime/JpdContainer.preInvoke(JpdContainer.java:1041)[optimized]
        at com/bea/wli/knex/runtime/core/container/Invocable.invoke(Invocable.java:248)[optimized]
        at com/bea/wli/bpm/runtime/JpdContainer.invoke(JpdContainer.java:814)[optimized]
        at com/bea/wli/knex/runtime/core/bean/BaseContainerBean.invokeBase(BaseContainerBean.java:224)[optimized]
        at com/bea/wli/knex/runtime/core/bean/SLSBContainerBean.invoke(SLSBContainerBean.java:136)[optimized]
        at com/bea/wlwgen/StatelessContainer_2hozgx_ELOImpl.invoke(StatelessContainer_2hozgx_ELOImpl.java:137)[optimized]
        at com/bea/wlwgen/SLSBContAdpt.invokeOnBean(SLSBContAdpt.java:29)[optimized]
        at com/bea/wli/knex/runtime/core/bean/BaseDispatcherBean.runAsInvoke(BaseDispatcherBean.java:185)[optimized]
        at com/bea/wli/knex/runtime/core/bean/BaseDispatcherBean.invoke(BaseDispatcherBean.java:54)[optimized]
        at com/bea/wli/knex/runtime/core/bean/SyncDispatcherBean.invoke(SyncDispatcherBean.java:168)[optimized]
        at com/bea/wli/knex/runtime/core/bean/SyncDispatcher_k1mrl8_EOImpl.invoke(SyncDispatcher_k1mrl8_EOImpl.java:133)[optimized]
        at com/bea/wli/knex/runtime/core/dispatcher/Dispatcher.remoteDispatch(Dispatcher.java:165)[inlined]
        at com/bea/wli/knex/runtime/core/dispatcher/ServiceHandleImpl.invoke(ServiceHandleImpl.java:460)[optimized]
        at com/bea/wli/knex/runtime/core/call/JavaCall.invoke(JavaCall.java:56)[optimized]
        at com/bea/wli/bpm/runtime/SubFlowCall.invoke(SubFlowCall.java:112)[optimized]
        at com/bea/wli/knex/runtime/core/control/ServiceControlImpl.invoke(ServiceControlImpl.java:1307)[inlined]
        at com/bea/control/ProcessControlImpl.invoke(ProcessControlImpl.java:825)[optimized]
        at com/bea/wli/knex/runtime/core/control/ServiceControlImpl.invoke(ServiceControlImpl.java:1174)[optimized]
        at com/bea/control/ProcessControlImpl.invoke(ProcessControlImpl.java:760)[optimized]
        at com/idexx/lims/controls/process/OrderResultsProcessControlBean.releaseResultsClientRequestwithReturn(OrderResultsProcessControlBean.java:394)
        at sun/reflect/GeneratedMethodAccessor828.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)[optimized]
        at java/lang/reflect/Method.invoke(Method.java:585)[optimized]
        at com/bea/wli/knex/runtime/jcs/container/JcsProxy.invokeBeehiveControl(JcsProxy.java:666)[optimized]
        at com/bea/wli/knex/runtime/jcs/container/JcsProxy.invoke(JcsProxy.java:446)[optimized]
        at $Proxy171.releaseResultsClientRequestwithReturn(LorderResults/logical/orderResultsWs/ReleaseResultsAndSaveReportDocumentXmlBean;)LorderResults/logical/orderResultsWs/ReleaseResultsAndSaveReportResponseDocumentXmlBean;(Unknown Source)
        at com/idexx/lims/controls/process/OrderResultsProcess.orderResultsProcessControlReleaseResultsClientRequestwithReturn111(OrderResultsProcess.java:1686)[optimized]
        at sun/reflect/GeneratedMethodAccessor827.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)[optimized]
        at java/lang/reflect/Method.invoke(Method.java:585)[optimized]
        at com/bea/wli/bpm/runtime/Perform.invoke(Perform.java:39)[inlined]
        at com/bea/wli/bpm/runtime/Perform.execute(Perform.java:50)[optimized]
        at com/bea/wli/bpm/runtime/SyncReceive.messageDelivery(SyncReceive.java:63)[optimized]
        at com/bea/wli/bpm/runtime/ProcessState.processMessage(ProcessState.java:217)[optimized]
        at com/bea/wli/bpm/runtime/ProcessState.dispatchRequest(ProcessState.java:241)[inlined]
        at com/bea/wli/bpm/runtime/JpdContainer.dispatchProcessRequest(JpdContainer.java:1077)[optimized]
        at com/bea/wli/bpm/runtime/JpdContainer.preInvoke(JpdContainer.java:1041)[optimized]
        at com/bea/wli/knex/runtime/core/container/Invocable.invoke(Invocable.java:248)[optimized]
        at com/bea/wli/bpm/runtime/JpdContainer.invoke(JpdContainer.java:814)[optimized]
        at com/bea/wli/knex/runtime/core/bean/BaseContainerBean.invokeBase(BaseContainerBean.java:224)[optimized]
        at com/bea/wli/knex/runtime/core/bean/SLSBContainerBean.invoke(SLSBContainerBean.java:136)[optimized]
        at com/bea/wlwgen/StatelessContainer_2hozgx_ELOImpl.invoke(StatelessContainer_2hozgx_ELOImpl.java:137)[optimized]
        at com/bea/wlwgen/SLSBContAdpt.invokeOnBean(SLSBContAdpt.java:29)[optimized]
        at com/bea/wli/knex/runtime/core/bean/BaseDispatcherBean.runAsInvoke(BaseDispatcherBean.java:185)[optimized]
        at com/bea/wli/knex/runtime/core/bean/BaseDispatcherBean.invoke(BaseDispatcherBean.java:54)[optimized]
        at com/bea/wli/knex/runtime/core/bean/SyncDispatcherBean.invoke(SyncDispatcherBean.java:168)[optimized]
        at com/bea/wli/knex/runtime/core/bean/SyncDispatcher_k1mrl8_EOImpl.invoke(SyncDispatcher_k1mrl8_EOImpl.java:133)[optimized]
        at com/bea/wli/knex/runtime/core/dispatcher/Dispatcher.remoteDispatch(Dispatcher.java:165)[inlined]
        at com/bea/wli/knex/runtime/core/dispatcher/ServiceHandleImpl.invoke(ServiceHandleImpl.java:460)[optimized]
        at com/bea/wli/knex/runtime/core/call/JavaCall.invoke(JavaCall.java:56)[optimized]
        at com/bea/wli/bpm/runtime/SubFlowCall.invoke(SubFlowCall.java:112)[optimized]
        at com/bea/wli/knex/runtime/core/control/ServiceControlImpl.invoke(ServiceControlImpl.java:1307)[inlined]
        at com/bea/control/ProcessControlImpl.invoke(ProcessControlImpl.java:825)[optimized]
        at com/bea/wli/knex/runtime/core/control/ServiceControlImpl.invoke(ServiceControlImpl.java:1174)[optimized]
        at com/bea/control/ProcessControlImpl.invoke(ProcessControlImpl.java:760)[optimized]
        at com/idexx/lims/controls/process/OrderResultsProcessControlBean.releaseResultsToCustomer(OrderResultsProcessControlBean.java:677)[optimized]
        at sun/reflect/GeneratedMethodAccessor46336.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)[optimized]
        at java/lang/reflect/Method.invoke(Method.java:585)[optimized]
        at com/bea/wli/knex/runtime/jcs/container/JcsProxy.invokeBeehiveControl(JcsProxy.java:666)[optimized]
        at com/bea/wli/knex/runtime/jcs/container/JcsProxy.invoke(JcsProxy.java:446)[optimized]
        at $Proxy12611.releaseResultsToCustomer(LorderResults/logical/orderResultsWs/ReleaseResultsToCustomerDocumentXmlBean;)LorderResults/logical/orderResultsWs/ReleaseResultsToCustomerResponseDocumentXmlBean;(Unknown Source)
        at com/idexx/lims/processes/ReleaseResultsToCustomerProcess.sendReleaseRequest(ReleaseResultsToCustomerProcess.java:101)
        at sun/reflect/GeneratedMethodAccessor46335.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)[optimized]
        at java/lang/reflect/Method.invoke(Method.java:585)[optimized]
        at com/bea/wli/bpm/runtime/Perform.invoke(Perform.java:39)[inlined]
        at com/bea/wli/bpm/runtime/Perform.execute(Perform.java:50)[optimized]
        at com/bea/wli/bpm/runtime/Receive.messageDelivery(Receive.java:93)[optimized]
        at com/bea/wli/bpm/runtime/ProcessState.processMessage(ProcessState.java:217)[optimized]
        at com/bea/wli/bpm/runtime/ProcessState.dispatchRequest(ProcessState.java:241)[inlined]
        at com/bea/wli/bpm/runtime/JpdContainer.dispatchProcessRequest(JpdContainer.java:1077)[optimized]
        at com/bea/wli/bpm/runtime/JpdContainer.preInvoke(JpdContainer.java:1041)[optimized]
        at com/bea/wli/knex/runtime/core/container/Invocable.invoke(Invocable.java:248)[optimized]
        at com/bea/wli/bpm/runtime/JpdContainer.invoke(JpdContainer.java:814)[optimized]
        at com/bea/wli/knex/runtime/core/bean/BaseContainerBean.invokeBase(BaseContainerBean.java:224)[optimized]
        at com/bea/wli/knex/runtime/core/bean/SLSBContainerBean.invoke(SLSBContainerBean.java:136)[optimized]
        at com/bea/wlwgen/StatelessContainer_2hozgx_ELOImpl.invoke(StatelessContainer_2hozgx_ELOImpl.java:137)[optimized]
        at com/bea/wlwgen/SLSBContAdpt.invokeOnBean(SLSBContAdpt.java:29)[optimized]
        at com/bea/wli/knex/runtime/core/bean/BaseDispatcherBean.runAsInvoke(BaseDispatcherBean.java:185)[optimized]
        at com/bea/wli/knex/runtime/core/bean/BaseDispatcherBean.invoke(BaseDispatcherBean.java:54)[optimized]
        at com/bea/wli/knex/runtime/core/bean/AsyncDispatcherBean.onMessage(AsyncDispatcherBean.java:259)[optimized]
        at weblogic/ejb/container/internal/MDListener.execute(MDListener.java:429)[inlined]
        at weblogic/ejb/container/internal/MDListener.transactionalOnMessage(MDListener.java:335)[inlined]
        at weblogic/ejb/container/internal/MDListener.onMessage(MDListener.java:291)[optimized]
        at weblogic/jms/client/JMSSession.onMessage(JMSSession.java:4072)[optimized]
        at weblogic/jms/client/JMSSession.execute(JMSSession.java:3962)[optimized]
        at weblogic/jms/client/JMSSession$UseForRunnable.run(JMSSession.java:4490)[optimized]
        at weblogic/work/ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)[optimized]
        at weblogic/work/ExecuteThread.execute(ExecuteThread.java:209)[optimized]
        at weblogic/work/ExecuteThread.run(ExecuteThread.java:181)
        at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
        -- end of trace
    Extended, platform specific info:
    libc release: 2.3.4-stable
    Elf headers:
    libc       ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 00719ed0 PHOFF: 00000034 SHOFF: 00174ab8 EF: 0x0 HS: 52 PS: 32 PHN; 10 SS: 40 SHN: 67 STIDX: 66
    libpthread ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 00943850 PHOFF: 00000034 SHOFF: 00019f00 EF: 0x0 HS: 52 PS: 32 PHN; 9 SS: 40 SHN: 39 STIDX: 38
    libjvm     ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 0004bbe0 PHOFF: 00000034 SHOFF: 00297e24 EF: 0x0 HS: 52 PS: 32 PHN; 4 SS: 40 SHN: 19 STIDX: 16
        *  If you see this dump, please go to                    *
        *  http://edocs.bea.com/jrockit/go2troubleshooting.html  *
        *  for troubleshooting information.                      *
    ===== END DUMP ===============================================================

    Vicky77 wrote:
    We are seeing memory leaks in our application, this is causing Out of Memory exception after every 5-7 days in prod environment. We tried to analyse our application with JPROBE and these are our findings...
    1) Once these session is expiring, all application objects are getting garbage collected.
    2) We are seeing huge increase in String and Char[] with each submitted applicationWhere are these coming from?
    Are you using any libraries like JAXB? Are you binding XML to objects?
    We are using Weblogic 10.0 with jdk version 1.5.0_06. Are there any known String related memory leak issues.
    My understanding is that unless we are using any static variable or application scope objects we should have any memory leakage.Apparently not.
    Can someone please validate if this understanding is correct? The JVM is telling you that it's incorrect. Believe the evidence you have before you.
    Your JVM settings might help. What are the settings for the GC? How big is your perm space, and how is that changing with time?
    What could be other possible causes of memory leaks? We are also using private static ThreadLocal variablesSounds like the perm space is exploding in size. It fills up and you're done.
    I'd recommend that you download JVMStat from Sun and watch what memory is doing as you run your test. It's not a nice graphic view of eden, old & new gen, and perm spaces that will give you an idea of what's going on. It won't tell you why. Keep drilling down with JProbe.
    %

  • Acrobat XI Pro "Out of Memory" Error.

    We just received a new Dell T7600 workstation (Win7, 64-bit, 64GB RAM, 8TB disk storage, and more processors than you can shake a stick at). We installed the Adobe CS6 Master Collection which had Acrobat Pro X. Each time we open a PDF of size greater than roughly 4MB, the program returns an "out of memory" error. After running updates, uninstalling and reinstalling (several times), I bought a copy of Acrobat XI Pro hoping this would solve the problem. Same problem still exists upon opening the larger PDFs. Our business depends on opening very large PDF files and we've paid for the Master Collection, so I'd rather not use an freeware PDF reader. Any help, thoughts, and/or suggestions are greatly appreciated.
    Regards,
    Chris

    As mentioned, the TEMP folder is typically the problem. MS limits the size of this folder and you have 2 choices: 1. empty it or 2. increase the size limit. I am not positive this is the issue, but it does crop up at times. It does not matter how big your harddrive is, it is a matter of the amount of space that MS has allocated for virtual memory. I am surprised that there is an issue with 64GB of RAM, but MS is real good at letting you know you can't have it all for use because you might want to open up something else. That is why a lot of big packages turn off some of the limits of Windows or use Linux.

  • Acrobat XI Pro "Out of Memory" error after Office 2010 install

    Good Afternoon,
    We recently pushed Office 2010 to our users and are now getting reports of previous installs of Adobe Acrobat XI Pro no longer working but throwing "Out of Memory" errors.
    We are in a Windows XP environment. All machines are HP 8440p/6930p/6910 with the same Service pack level (3) and all up to date on security patches.
    All machines are running Office 2010 SP1.
    All machines have 2GB or 4GB of RAM (Only 3.25GB recognized as we are a 32bit OS environment).
    All machines have adequate free space (ranging from 50gb to 200gb of free space).
    All machines are set to 4096mb initial page file size with 8192mb maximum page file size.
    All machines with Acrobat XI Pro *DO NOT* have Reader XI installed alongside. If Reader is installed, it is Reader 10.1 or higher.
    The following troubleshooting steps have been taken:
    Verify page file size (4096mb - 8192mb).
    Deleted local user and Windows temp files (%temp% and c:\WINDOWS\Temp both emptied).
    Repair on Adobe Acrobat XI Pro install. No change.
    Uninstall Acrobat Pro XI, reboot, re-install. No change.
    Uninstall Acrobat Pro XI Pro along with *ALL* other Adobe applications presently installed (Flash Player, Air), delete all Adobe folders and files found in a full search of the C drive, delete all orphaned Registry entries for all Adobe products, re-empty all temp folders, reboot.
    Re-install Adobe Acrobat XI Pro. No change.
    Disable enhanced security in Acrobat XI Pro. No change.
    Renamed Acrobat XI's plug_ins folder to plug_ins.old.
    You *can* get Acrobat to open once this is done but when you attempt to edit a file or enter data into a form, you get the message, "The "Updater" plug-in has been removed. Please re-install Acrobat to continue viewing the current file."
    A repair on the Office 2010 install and re-installing Office 2010 also had no effect.
    At this point, short of re-imaging the machines (which is *not* an option), we are stumped.
    We have not yet tried rolling back a user to Office 2007 as the upgrade initiative is enterprise-wide and rolling back would not be considered a solution.
    Anyone have any ideas beyond what has been tried so far?

    As mentioned, the TEMP folder is typically the problem. MS limits the size of this folder and you have 2 choices: 1. empty it or 2. increase the size limit. I am not positive this is the issue, but it does crop up at times. It does not matter how big your harddrive is, it is a matter of the amount of space that MS has allocated for virtual memory. I am surprised that there is an issue with 64GB of RAM, but MS is real good at letting you know you can't have it all for use because you might want to open up something else. That is why a lot of big packages turn off some of the limits of Windows or use Linux.

  • SharePoint 2013 Search - Zip - Parser server ran out of memory - Processing this item failed because of a IFilter parser error

    Moving content databases from 2010 to 2013 August CU. Have 7 databases attached and ready to go, all the content is crawled successfully except zip files. Getting errors such as 
    Processing this item failed because of a IFilter parser error. ( Error parsing document 'http://sharepoint/file1.zip'. Error loading IFilter for extension '.zip' (Error code is 0x80CB4204). The function encountered an unknown error.; ; SearchID = 7A541F21-1CD3-4300-A95C-7E2A67B2563C
    Processing this item failed because the parser server ran out of memory. ( Error parsing document 'http://sharepoint/file2.zip'. Document failed to be processed. It probably crashed the server.; ; SearchID = 91B5D685-1C1A-4C43-9505-DA5414E40169 )
    SharePoint 2013 in a single instance out-of-the-box. Didn't install custom iFilters as 2013 supports zip. No other extensions have this issue. Range in file size from 60-90MB per zip. They contain mp3 files. I can download and unzip the file as needed. 
    Should I care that the index isn't being populated with these items since they contain no metadata? I am thinking I should just omit these from the crawl. 

    This issue came back up for me as my results aren't displaying since this data is not part of the search index.
    Curious if anyone knows of a way to increase the parser server memory in SharePoint 2013 search?
    http://sharepoint/materials-ca/HPSActiveCDs/Votrevieprofessionnelleetvotrecarrireenregistrement.zip
    Processing this item failed because the parser server ran out of memory. ( Error parsing document 'http://sharepoint/materials-ca/HPSActiveCDs/Votrevieprofessionnelleetvotrecarrireenregistrement.zip'. Document failed to be processed. It probably crashed the
    server.; ; SearchID = 097AE4B0-9EB0-4AEC-AECE-AEFA631D4AA6 )
    http://sharepoint/materials-ca/HPSActiveCDs/Travaillerauseindunequipemultignrationnelle.zip
    Processing this item failed because of a IFilter parser error. ( Error parsing document 'http://sharepoint/materials-ca/HPSActiveCDs/Travaillerauseindunequipemultignrationnelle.zip'. Error loading IFilter for extension '.zip' (Error code is 0x80CB4204). The
    function encountered an unknown error.; ; SearchID = 4A0C99B1-CF44-4C8B-A6FF-E42309F97B72 )

  • My storage is mostly full of a category labeled "other." I'm out of memory to the extent that it won't even allow me to update apps. I have moved all photos over to my computer and my music streams through the cloud. Any advice on how to fix this problem?

    My storage is mostly full of a category labeled "other." I'm out of memory to the extent that it won't even allow me to update apps. I have moved all photos over to my computer and my music streams through the cloud. Any advice on how to fix this problem?

    http://discussions.apple.com/thread/3418045?tstart=60

  • Out of memory error

    Hello all,
    I am newbie to this forum, so kindly excuse me if I am posting an incorrect question.
    My application goes down every week and the error logs point to java.lang.OutOfMemoryError.
    Analysed the sysout logs and heap logs : -
    Sysout logs :
    Could not invoke the service() method on servlet action. Exception thrown : java.lang.OutOfMemoryError
         at oracle.jdbc.driver.OracleStatement.prepareAccessors(OracleStatement.java(Compiled Code))
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java(Compiled Code))
         at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java(Compiled Code))
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java(Compiled Code))
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java(Compiled Code))
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java(Compiled Code))
         at com.ibm.ws.rsadapter.jdbc.WSJdbcPreparedStatement.pmiExecuteQuery(WSJdbcPreparedStatement.java(Compiled Code))
         at com.ibm.ws.rsadapter.jdbc.WSJdbcPreparedStatement.executeQuery(WSJdbcPreparedStatement.java(Compiled Code))
         at xxx.cis.tuf.server.connector.jdbc.v1.JDBCv1DBStatement.executeQuery(JDBCv1DBStatement.java(Compiled Code))
         at xxx.myapplication.dao.Person.loadRecord(Person.java(Compiled Code))
         at xxx.myapplication.SiteUtil.getUserJavaLocale(SiteUtil.java(Compiled Code))
         at xxx.myapplication.updateprofile.actions.UpdateProfileAction.execute(UpdateProfileAction.java:56)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java(Inlined Compiled Code))
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java(Compiled Code))
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java(Inlined Compiled Code))
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java(Compiled Code))
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java(Compiled Code))
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java(Compiled Code))
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java(Compiled Code))
         at xxx.myapplication.UTF8Filter.doFilter(UTF8Filter.java(Compiled Code))
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java(Compiled Code))
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java(Compiled Code))
         at xxx.cis.tuf.server.filter.TUFExtendedFilterChainImpl.doFilter(TUFExtendedFilterChainImpl.java(Compiled Code))
         at xxx.cis.tuf.server.directory.GroupModifixxxionEventFilter.doFilter(GroupModifixxxionEventFilter.java(Compiled Code))
         at xxx.cis.tuf.sys.server.filter.TUFFilterChainImpl.doFilter(TUFFilterChainImpl.java(Inlined Compiled Code))
         at xxx.cis.tuf.server.filter.TUFExtendedFilterChainImpl.doFilter(TUFExtendedFilterChainImpl.java(Compiled Code))
         at xxx.cis.tuf.server.security.SecurityFilter.doFilter(SecurityFilter.java(Compiled Code))
         at xxx.cis.tuf.sys.server.filter.TUFFilterChainImpl.doFilter(TUFFilterChainImpl.java(Inlined Compiled Code))
         at xxx.cis.tuf.server.filter.TUFExtendedFilterChainImpl.doFilter(TUFExtendedFilterChainImpl.java(Compiled Code))
         at xxx.cis.tuf.server.security.cws.CWSSecurityTokenContextFilter.doFilter(CWSSecurityTokenContextFilter.java(Compiled Code))
         at xxx.cis.tuf.sys.server.filter.TUFFilterChainImpl.doFilter(TUFFilterChainImpl.java(Inlined Compiled Code))
         at xxx.cis.tuf.server.filter.TUFExtendedFilterChainImpl.doFilter(TUFExtendedFilterChainImpl.java(Compiled Code))
         at xxx.cis.tuf.server.logging.LoggingRequestIDFilter.doFilter(LoggingRequestIDFilter.java(Compiled Code))
         at xxx.cis.tuf.sys.server.filter.TUFFilterChainImpl.doFilter(TUFFilterChainImpl.java(Compiled Code))
         at xxx.cis.tuf.server.filter.TUFExtendedFilterChainImpl.doFilter(TUFExtendedFilterChainImpl.java(Inlined Compiled Code))
         at xxx.cis.tuf.server.filter.TUFMasterFilter.doFilter(TUFMasterFilter.java(Compiled Code))
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java(Compiled Code))
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java(Compiled Code))
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java(Compiled Code))
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java(Compiled Code))
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java(Compiled Code))
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java(Compiled Code))
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java(Compiled Code))
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java(Compiled Code))
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java(Compiled Code))
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java(Compiled Code))
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java(Compiled Code))
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java(Compiled Code))
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java(Compiled Code))
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    The analysis of heap dump shows :-
    35,548,944 (29%) [32] 2 java/util/Hashtable$Entry 0x17e998f8
    35,548,888 (29%) [232] 15 com/ibm/ws/rsadapter/spi/WSRdbManagedConnectionImpl 0x128a8c40
    35,084,008 (28%) [24] 1 array of javax/resource/spi/ConnectionEventListener 0x128a8128
    35,083,984 (28%) [16] 1 com/ibm/ejs/j2c/ConnectionEventListener 0x128a7af8
         35,083,968 (28%) [224] 13 com/ibm/ejs/j2c/MCWrapper 0x161ccf50
         34,547,384 (28%) [24] 1 com/ibm/ejs/j2c/poolmanager/MCWrapperList 0x120ea638
         34,547,360 (28%) [216] 42 array of java/lang/Object 0x120ea558
              1,105,160 (0%) [224] 9 com/ibm/ejs/j2c/MCWrapper 0x1251fb88
              1,065,552 (0%) [224] 9 com/ibm/ejs/j2c/MCWrapper 0x1022c780
              1,061,056 (0%) [224] 9 com/ibm/ejs/j2c/MCWrapper 0x107157a0
              1,042,776 (0%) [224] 9 com/ibm/ejs/j2c/MCWrapper 0x148ab790
                   1,038,656 (0%) [224] 9 com/ibm/ejs/j2c/MCWrapper 0x168fbb30
                   1,000,784 (0%) [224] 9 com/ibm/ejs/j2c/MCWrapper 0x108cec00
                   There are 22 more children
    My analysis is that hashtable is causing this issue.
    In my application I am using hashmap to store resultset objects and use request.setAttribute("databasevaluesforuser", databasevalues) to show in jsp.
    Could it be that after the values are displayed the hashmap still contains those objects and when multiple users
    access the application, heap size increases and this causes out of memory issues. I also paginated some jsp so that users view part by part of the results from database and thus prevent memory outage.
    Could anybody help me in this issue. Please inform me if I need to provide any further information.

    Aplogies for answering late.
    I am using SUN 1.4 jvm
    The analysis of GC logs showed that lot of memory is consumed by java hashmap. In my application I am using hash map only to store the results from database and then represent at jsp using the request parameter.

  • Problem with out of memory and reservation of memory

    Hi,
    we are running a very simple java program on HP-UX that do some text substitution - replacing special characters with other characters.
    The files that are converted are sometimes very large, and now we have come to a point where the java server doing the work crashes with "Out of memory" message. (no stack) when it process one single 500MB large file.
    I have encountered this error before(with smaller files) and then I have made the maximum Heap larger, but now when I try to set it to 4000M
    i get the message:
    "Error occurred during initialization of VM
    Could not reserve enough space for old generation heap"
    When it crash with this message, my settings are:
    -XX:NewSize=500m -XX:MaxNewSize=1000m -XX:SurvivorRatio=
    8 -Xms1000m -Xmx4000m
    If I run with Xmx3000m instead the java program starts but I get Out of memory error like:
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    The GC log file created when it crashes looks like:
    <GC: -1 31.547669 1 218103808 32 219735744 0 419430400 0 945040 52428800 0 109051904 524288000 877008 877008 1048576 0.934021
    >
    <GC: -1 62.579563 2 436207616 32 218103808 0 419430400 945040 944592 52428800 109051904 327155712 524288000 877008 877008 1048
    576 2.517598 >
    <GC: 1 65.097909 1 436207616 32 0 0 419430400 944592 0 52428800 327155712 219048400 524288000 877008 877008 1048576 2.061976 >
    <GC: 1 67.160178 2 436207616 32 0 0 419430400 0 0 52428800 219048400 219048400 524288000 877008 877008 1048576 0.041408 >
    <GC: -1 128.133097 3 872415232 32 0 0 419430400 0 0 52428800 655256016 655256016 960495616 877008 877008 1048576 0.029950 >
    <GC: 1 128.163584 3 872415232 32 0 0 419430400 0 0 52428800 655256016 437152208 960495616 877008 877008 1048576 3.971305 >
    <GC: 1 132.135106 4 872415232 32 0 0 419430400 0 0 52428800 437152208 437152208 960495616 877008 876656 1048576 0.064635 >
    <GC: -1 256.378152 4 1744830464 32 0 0 419430400 0 0 52428800 1309567440 1309567440 1832910848 876656 876656 1048576 0.058970
    >
    <GC: 1 256.437652 5 1744830464 32 0 0 733282304 0 0 91619328 1309567440 873359824 1832910848 876656 876656 1048576 8.255321 >
    <GC: 1 264.693275 6 1744830464 32 0 0 733282304 0 0 91619328 873359824 873359824 1832910848 876656 876656 1048576 0.103764 >
    We are running:
    java version "1.3.1.02"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1.02-011206-02:17)
    Java HotSpot(TM) Server VM (build 1.3.1 1.3.1.02-JPSE_1.3.1.02_20011206 PA2.0, mixed mode)
    We have 132GB of physical memory and a lot of not used Swap space, so I cant imagine we have a problem with that.
    Can anyone please suggest what to do proceed troubleshooting or to change some settings? I'm not into this Java really so I really need some help.
    Usually the java program handles thousands of smaller files (around 500 KB - 1 MB sized files).
    Thanks!

    You have a one to one mapping? Where one character is replaced with another?
    And all you do is read the file, replace and then write?
    Then there is no reason to have the entire file in memory.
    Other than that you need to determine if the VM (which is not a Sun VM) has an upper memory bound. That would be the limit that the VM will not go beyond regardless of memory in the system.
    We have 132GB of physical memory and a lot of not used Swap spaceOne would wonder why you have swap space at all.

Maybe you are looking for

  • How do I set up my finger print scan it keeps showing me failed try again

    how do i fi I set up my finger print scan for my iPhone 5s it keeps showing me failed and I have already updated my device I need help I called apple but before they can do anything for me the call Cuts off saying there's a limited time for the call

  • Can't Add New Printer

    In the Print & Fax section of my system preferences it used to show my USB printer. But then, for some reason, it disappeared. Now when I click the add printer button, I can see my printer under the default printers tab, however, when I click to add

  • Is there a workaround for afp protocol?

    Hi! We've got an older model large format poster printer that uses afp as the "link" to our computers. I've gotten two Tiger OS computers that won't see this protocol. Has there been something figured out for a fix for this? I know when I first start

  • When will I ACTUALLY get my new phone

    Ordered my iphone 6 on 10/2 with a ship date of 10/31. Never got any kind of notification that it wasn't going to ship until I got an email on the afternoon of 10/31. Now it supposedly will ship 11/10. Should I expect to get my phone before Christmas

  • Exporting Report Output to Doc, RTF or other

    I have designed a few reports using Developer 2000 and I was wondering if if was possible to export the output of these reports to other file formats such as Word's Doc or RTF formats .... while the tool is powerfull it would be nice to let people us