'Use Memory Analysis' of WebiProcessing in HP-IA64

Hi. I have a question about 'Use Memory Analysis' option of WebiProcessingServer.
According to Administrator's Guide, this option prevents memory curruption when BOE works as 32-bit application.
(maxmum memory setting is limited to 2000MB)
Then in my thinking, it's useless when BOE works as 64-bit application in HP-IA64.
So it's better that turn off that check box. Is this right ?
There is no detail description about what happened when this option turned off.

Hi
Yes, as you are running a 64-bit software on 64-bit OS, your webi processes will be able to consume > 2GB RAM.
you will need to disable memory analysis which limits you upto 2GB. While disabling memory analysis will allow Webi processes to run for > 2GB memory, there will be no control wherein the process could run away after 4 GB or whereever it hits a limit and crash. Memory analysis is a good setting as it prevents webi processes from crashing.
Lastly, you must always try to design reports and processes which dont push processes to run away using such large memory footprint.
regards
shiva

Similar Messages

  • How to use memory analyser in CE 7.1 portal

    Hi,
    I want to use Memory Analyser in my landscape, i have installaed CE7.1 on oracle DB( remote DB) on my VM.I have downloaded the memory analyzer from the eclipse site and i have the memory analyser.exe file with me. How can i use this one to use in my server case. Currently i have installaed SAP JVM_5, and how can i get the heap dump from my SAP JVM and how can i import those hepa dumps in to my memory analyzer on the virtual machine.
    Regards,
    Pradeep J

    Hi,
    there are varios ways to get a heap dump. Have a look at this page:
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=33456
    If you want to trigger a heap dump on your own, ust the jvmmon tool from the SAP JVM.
    Then you need to copy the heap dump to a place where Memory Analyzer can open it. In Memory Analyzer just ust the File -> Open Heap Dump menu.
    Does this help?
    Regards,
    Krum

  • How to use memory analyzer On Virtual Machines

    Hi,
    I want to use Memory Analyser in my landscape, i have installaed CE7.1 on oracle DB( remote DB) on my VM.I have downloaded the memory analyzer from the eclipse site and i have the memory analyser.exe file with me. How can i use this one to use in my server case. Currently i have installaed SAP JVM_5, and how can i get the heap dump from my SAP JVM and how can i import those hepa dumps in to my memory analyzer on the virtual machine.
    Regards,
    Pradeep J

    I don't know. I've never tried.
    Look at the manual (7210midpSimGuide.pdf in the docs directory). Maybe there is something in there. In the command line options there are a bunch of tracing options that you can specify, like tracing allocations, garbage collections, stackmaps, etc.
    shmoove

  • How to use SAP Memory analyser in CE7.1 EHP1

    Hi All,
    Please Can you provide proper link to know how to use SAP Memory analyser in CE7.1 EHP1.
    It is urgent .
    Regards
    Mahesh

    Problem solved.

  • Solaris/SAP Memory Analysis/Audit

    Experts,
    We have a landscape that is only a couple of years old, but seeing some paging and buffer issues.  We are running in a solaris/Oracle environment, and I was wanting to do some memory analysis, or a memory audit to make sure that we had everything configured correctly. 
    Memory is not really my stong suit, so if any of you have some handy resources that you dont mind sharing, I would like to  research and better understand. 
    Our Prod Landscape is this:
    Sun e2900 (#1) 8cpu (multicore) 64g
    Global Zone - Ecc 600 ASCS /Oracle 10.2 Cluster (Slave)
    Local zone - BI 7 CI+DB
    Local Zone - XI 7 CI+DB
    Sun e2900 (#2) 8cpu (multicore) 64g
    Global Zone - Ecc 600 ASCS /Oracle 10.2 Cluster (Master)
    Local zone - ECC CI
    Qty 3 - Sun V490 (#1, #2, #3) 4cpu (Multicore) 16g
    Global Zone - OS only
    Local zone - ECC APP
    Local zone - BI APP
    Local zone - XI APP
    I have the performance tuning book, and have been studying up on buffers and parameters.  But first mainly looking to research how memory is assigned, where, and determine if any changes need to be made, or there is memory room to increase buffers.
    Thank you.
    Phillip

    Apologies.  I was struggling with how exactly to articulate the question.  And even more with how to go about determining where we are with our memory both inside and outside of SAP.  With Solaris you have Zones (containers), projects, oracle, sap, user environment settings, etc.  All of which have an impact on memory, either from consumption, or limitation of memory (projects and user environment settings.) 
    I have looked at ST02, and we do see swaps of greater that 10k, however, before increasing the buffers, I'm trying to determine what memory we have available, and where the current memory is being used.
    Our response times are not absurd.  We hover around 800 - 1000 ms.  Our CPU is average less than 15% util.  But I think there is room for improvement/tuning on our memory and buffers, because performance does degrade over a period of weeks without an app restart.
    Thank you for your response, and the help link.  I am reviewing it now.
    Best Regards,
    Phil May
    Edited by: Phil May on Sep 11, 2009 9:52 AM

  • Memory Analysis of Deep Structures

    Hi Experts,
    ISSUE PART 1
    i have created two structures ZTEST_SRC and ZTEST_TRT. The structure ZTEST_TRT contains the same fields as in structure ZTEST_SRC but i have removed the include COMT_TEXT_TEXTDATA in this structure.
    Technically, as the two structure contains the same fields and length, the memory occupied during run time should be same.
    But contrary to the expectations, its not .
    I have written a short program to analyze it. Please find the screen shot below.
    REPORT  ZTEST_COMPARE_LENGTH.
    DATA: SRC TYPE ZTEST_SRC,
           TRT TYPE ZTEST_TRT,
           LO TYPE REF TO CL_ABAP_TYPEDESCR,
           LSRC TYPE  REF TO CL_ABAP_TYPEDESCR,
           LTRT TYPE REF TO CL_ABAP_TYPEDESCR.
    DATA: REF_KIND TYPE CHAR10,
           STXH TYPE STXH,
           LINES TYPE COMT_TEXT_LINES_T,
           FUNCTION TYPE TDFUNCTION.
    CALL METHOD CL_ABAP_TYPEDESCR=>DESCRIBE_BY_DATA
       EXPORTING
         P_DATA      = SRC
       RECEIVING
         P_DESCR_REF = LSRC.
    CALL METHOD CL_ABAP_TYPEDESCR=>DESCRIBE_BY_DATA
       EXPORTING
         P_DATA      = TRT
       RECEIVING
         P_DESCR_REF = LTRT.
    BREAK-POINT.
    During debugging, the following is the screenshot of the memory analysis.
    The bytes occupied by SRC is 912 and TRT is 904.
    ISSUE PART 2:
    Now i have changed the filed length of the field 'REF_KIND' in both the structures to CHAR80.
    Now i have execute the program and here is the memory analysis.
    Surprised to see that the Bytes occupied are 928 and its same.
    Why is memory occupied not the same in ISSUE PART 1 when char70 is used for field REF_KIND as in ISSUE PART 2 ?
    Hope I have provided sufficient data for analysis and I need your help in getting to know about it.
    Thanks in advance.
    Cheers,
    Ravi.

    Hi
    Yes, as you are running a 64-bit software on 64-bit OS, your webi processes will be able to consume > 2GB RAM.
    you will need to disable memory analysis which limits you upto 2GB. While disabling memory analysis will allow Webi processes to run for > 2GB memory, there will be no control wherein the process could run away after 4 GB or whereever it hits a limit and crash. Memory analysis is a good setting as it prevents webi processes from crashing.
    Lastly, you must always try to design reports and processes which dont push processes to run away using such large memory footprint.
    regards
    shiva

  • Could u plz help me to find simple example for how to save data file in a spread sheet or any other way in the real time controller for Sbrio 9642 using memory or usb flash memory

    Could u plz help me to find simple example for how to save data file in a spread sheet or any other way in the real time controller for Sbrio 9642 using memory or usb flash memory

    Here are a few Links to a helpful Knowledge Base article and a White Paper that should help you out: http://digital.ni.com/public.nsf/allkb/BBCAD1AB08F1B6BB8625741F0082C2AF and http://www.ni.com/white-paper/10435/en/ . The methods for File IO in Real Time are the same for all of the Real Time Targets. The White Paper has best practices for the File IO and goes over how to do it. 
    Alex D
    Applications Engineer
    National Instruments

  • I have adobe photoshop CS6 and I am trying to use the analysis tools but all of them except for the ruler tool are unavailable. Am I missing certain plug ins?

    I have adobe photoshop CS6 and I am trying to use the analysis tools but all of them except for the ruler tool are unavailable. Am I missing certain plug ins?

    Which operating system?
    If I recall, some features were not fully supported on XP.
    Nancy O.

  • My mac keeps freezing, i checked my ram fine, checked if SMART was verified it was, i reinstalled my software a few times and my RAM is 8gb used memory clean to make sure it wasnt a RAM probkem and my macbook is still freezing my RAM is 8gb i have

    My mac keeps freezing, i checked my ram fine, checked if SMART was verified it was, i reinstalled my software a few times and my RAM is 8gb used memory clean to make sure it wasnt a RAM probkem and my macbook is still freezing my RAM is 8gb i have 4.50/4.80 gb left and Mid -2012 model Macbook Pro what could be the problem also it started freezong when i upgraded to Yosemite and now my mac freezes once im logged into and sometimes has problem booting up either freezing or agent secuity error black screen??!!!!

    My mac keeps freezing, i checked my ram fine, checked if SMART was verified it was, i reinstalled my software a few times and my RAM is 8gb used memory clean to make sure it wasnt a RAM probkem and my macbook is still freezing my RAM is 8gb i have 4.50/4.80 gb left and Mid -2012 model Macbook Pro what could be the problem also it started freezong when i upgraded to Yosemite and now my mac freezes once im logged into and sometimes has problem booting up either freezing or agent secuity error black screen??!!!!

  • Func module to convert list to pdf without using memory id

    hi Experts,
    Is there any funct module to convert list to pdf without using memory, as I am using Convert_to_PDF func module which outputs last page only  when its running in Background.
    But my req is to output all the Pages in the PDF format.
    Sample code also appreciable,
    Reward Points are guranteed..
    Cheers
    Santosh

    Check the below postings :
    Re: Convert spool to pdf
    Convert a spooljob to a writeprotected PDF
    Hope this will helpful

  • Reducing app size and using memory

    Building with release preference Blank App template will give you a ~200kb .exe, which in running state use ~7mb of memory.
    It has a huge list of external dependencies.
    So, is it possible to reduce app size and using memory?
    Or, how safely unlink from app headers that really didnt used?

    generally speaking  premature optimization is not a good idea.
    Normally those tricks we learned from stone age are picked by tools already.
    (http://stackoverflow.com/questions/6215782/do-unused-functions-get-optimized-out)
    So if you experice performance/optimization issue
    optimization ususally goes with repeated measure -> optimize -> verify
    cycles.

  • Sql server is using memory more then there max memory setting?

    Hi All,
    today i have faced the different issue..........
    we have one SQl server 2008 prod server... it have memory issue actually  total server memory is 8GB and we have allocated the 6 GB to SQL server,we checked the server no open trans and dont have running jobs also,one database is using the memory high(no
    open trans)... but Sql server has used 6.5 GB (6 GB) and total server used memory is reached to 7.89 GB.
    Please tell me how to find the most costly query in particular database wise and sql server internally behavior ?
    how to troubleshot the  above issue?
    please post the your valuable answers ASAP...
    Thanks,
    RAM

    Please refer to what Olaf said briefly.Buffer pool in SQL server only caters to memory requests which requires pages <8 KB . Almost all requests are satisfies by buffer pool and generally request for memory is small and so buffer pool satisfies the requests.
    However there are some direct memory allocation by windows API which is done by windows for requests which  requires memory greater than 8 KB. This memory wont come from buffer pool and this would be counted in memory utilized by SQL server. SQL
    CLR,XML, linked Server, all takes memory outside buffer pool in SQL Server 2008. This behavior changed in 2012 so my statement only applies to SQL server 2005/2008 and 2008 R2.
    I would run below to check SQL server memory utilization.
    select
    (physical_memory_in_use_kb/1024)Memory_usedby_Sqlserver_MB,
    (locked_page_allocations_kb/1024 )Locked_pages_used_Sqlserver_MB,
    (total_virtual_address_space_kb/1024 )Total_VAS_in_MB,
    process_physical_memory_low,
    process_virtual_memory_low
    from sys. dm_os_process_memory
    I am sure you must be using some features mentioned above.You were worried that even though there is no query running on SQL server it has still holded up the memory. This is default behavior and this is how memory management in SQL Server works. It will
    not release memory untill SQLOS asks it to do so which is told by windows OS thorugh some flag that it is facing memory pressure.
    Please read below for more details on memory. There is section to test whether system is facing memory crunch please read that as well.
    http://social.technet.microsoft.com/wiki/contents/articles/22316.sql-server-memory-and-troubleshooting.aspx
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • "Nobody" using memory?

    I find the following in my Activity Monitor:
    101 usbmuxd nobody 0.00 2 532.00 KB 26.98 MB Intel
    Who is nobody?

    A google search has produced an answer to my question of what does usbmuxd do? It's the program that looks for your iPhone in order to sync it up.
    http://www.ehmac.ca/anything-mac/53805-anyone-know-what-usbmuxd.html also has links to further information if you're curious.
    The second post on this thread has some great info about who is nobody. Also your concern about it using memory is likely of no importance, first because it's a really small amount, and second because in the event your computer needs that half-meg desperately, I would hypothesize that it could easily be paged out to disk and freed up until you plug that thar iPhone back in. Don't quote me on that though. Who knows, maybe it's wired down.

  • How to use report designer using bex analyser  give screenshots  details

    how to use report designer using bex analyser  give screenshots  details

    Hi,
    As per my understanding you want to see Query Designer when you execute the query in BEx Analyzer.
    When you launch BEx analyzer,you should be able to see  new tab of "Business Explorer" in your Toolbar.
    So,when you execute the query in BEx analyzer,in order to goto query designer screen,click on Tab "Business Explorer",select option "Change Query" and then select the option "ChangeQuery (Global Definition)".
    It will open the query designer in which you can modify the query and save it.
    Regards,
    Nilima

  • How  to use report designer   using bex analyser ineed screeenshots  steps

    how  to use report designer   using bex analyser ineed screeenshots  steps

    Please try to search and stop asking for all types of screen shots. Thanks!

Maybe you are looking for

  • In Adobe Acrobat Pro XI, is there a way to set defaults when combining files?

    My specific problem;  When I combine files, Adobe creates the bookmarks (which is desirable).  These bookmarks however, always seem to default on "page width" view.  I would prefer to have the bookmarks set to "fit page".  It is very cumbersome to ed

  • Error "expected element is missing: SMOKER_DT" running Get method

    Hello, We have PT 8.49 and we managed publish the WSDL for the CI-based Web Services for the PERSONAL_DATA component. Using JDeveloper, we managed to build a Web Service Proxy in Java to retrieves one or more record keys (EMPLID and NAME) using the F

  • Sections in properties file

    In my file i have few sections and name=value pair. sectiona name1=value1 name2=value2 sectionb name3=value3 name4=value4 Can i do it in one properties class. In Properties.store i see you can write a header. So i guess header will be sectiona. Do i

  • Microphone for 5g iPod?

    Is there a microphone for 5g iPod yet? If not are there any alternate solutions for recording audio with iPod?

  • PO release strategy, ref: plant and activity

    Hi, for PO release M_EINK_FRG is the object. but along with this we need to give M_BEST_BSA & M_BEST_WRK, the activity is 02(change). my concern is, if we give him the same objects authorization, he will be in a position to change the PO also, along