SCM optimizer CPU utilization mostly 0%

Hello All,
My SAP and DB are running on the same host. And its an SCM 5.0 system.
I observed that the idle time is always 100% for the optimizer.
Can anyone please elaborate the role of this optmizer and why the idle time is always 100.
for my SCM system, the CPU utlization keeps varying which is normal, but i dont get the role of optmizer.
Please let me know.
BR
Prashanth chikbala

Thanks a lot again for the reply.
I have checked  in /sapapo/opt11 and I am able to see only SNP related logs however the status are in yellow and when I click the log buttun it throws a pop with a message that "no log exist".
And in SM59, under TCP/IP i can see 4 rfc connections (OPTSERVER_SNP01, OPTSERVER_SNP02, OPTSERVER_DPS01, OPTSERVER_DPS02) and for all these connection test is working successfully.
So from this can I canclude that the planning method are not being used and for that reason CPU Utilization is 0%?
Best Regads,
Prashanth Chikbala

Similar Messages

  • High CPU utilization (80%+) most of the time

    We have a windows 2008 server, 4 proc machine hosting a jboss turnkey install of LC, experiencing high CPU utilization most of the time (80%+).  Memory utilization remains low.  Anyone experiencing this?

    LC ES3 10.0.2

  • Low CPU utilization on Solaris

    Hi all.
    We've recently been performance tuning our java application running
    inside of an Application Server with Java 1.3.1 Hotspot -server. We've
    begun to notice some odd trends and were curious if anyone else out
    there has seen similiar things.
    Performance numbers show that our server runs twice
    as fast on Intel with Win2K than on an Ultra60 with Solaris 2.8.
    Here's the hardware information:
    Intel -> 2 processors (32bit) at 867 MHz and 2 Gig RAM
    Solaris -> 2 processors (64bit) at 450 MHz and 2 Gig RAM.
    Throughput for most use cases in a low number of threads is twice as
    fast on Intel. The only exception is some of our use-cases that are
    heavily dependent on a stored procedure which runs twice as fast on
    Solaris. The database (oracle 8i) and the app server run on the same
    machine in these tests.
    There should minor (or no) network traffic. GC does not seem to be an
    issue. We set the max heap at 1024 MG. We tried the various solaris
    threading models as recommended, but they have accomplished little.
    It is possible our Solaris machine is not configured properly in some
    way.
    My question (after all that ...) is whether this seems normal to
    anyone? Should throughput be higher since the processors are faster on
    the wIntel box? Does the fact that the solaris processors are 64bit
    have any benefit?
    We have also run the HeapTest recommended on this site on both
    machines. We found that the memory test performs twice as fast on
    solaris, but the CPU test performs 4 times as slow on solaris. The
    "joint" test performs twice as slow on solaris. Does this imply bad
    things about our solaris configuration? Or is this a normal result?
    Another big difference is between Solaris and Win2K in these runs is
    that CPU Utilization is low on solaris (20-30%) while its much higher
    on Win2K (60-70%)
    [both machines are 2 processor and the tests are "primarily" single
    threaded at
    this stage]. I would except the solaris CPU utilization to be around
    50% as well. Any ideas why it isn't?

    Hi,
    I recently went down this path and wound up coming to the realization that the
    cpu's are almost neck and neck per cycle when running my Java app. Let me qualify
    this a little more (400mhz Sparc II cpu vs 500mhz Intel cpu) under similar load
    running the same test gave me similar results. It wasn't as huge difference in
    performance as I was expecting.
    My theory is given the scalability of the SPARC architecture, more chips==more
    performance with less hardware, whereas the Wintel boxes are cheaper, but in order
    to get scaling, the underlying hardware comes into question. (how many wintel
    boxes to cluster, co-locate, manage, etc…)
    From what little I've found out when running tests against our Solaris 8 (E-250's)
    400mhz UltraSparc 2's is that it appears that the CPU performance in a lightly
    threaded environment is almost 1 cycle / 1 cycle (SPARC to Intel). I don't think
    the 64 bit SPARC architecture will buy you anything for java 1.3.1, but if your
    application has some huge memory requirements, then using 1.4.0(when BEA supports
    it) should be beneficial (check out http://java.sun.com/j2se/1.4/performance.guide.html).
    If your application is running only a few threads, tying the threads to the LWP
    kernel processes probably won't gain you much. I noticed that it decreased performance
    for a test with only a few threads.
    I can't give you a good reason as to why your Solaris CPU utilization is so low,
    you may want to try getting a copy of Jprobe and profiling Weblogic and your application
    to see where your bottlenecks are. I was able to do this with our product, and
    found some nasty little performance bugs, but even with that our CPU utilization
    was around 98% on a single and 50% on a dual.
    Also, take a look at iostat / vmstat and see if your system is bottlenecking doing
    io operations. I kept a background process of vmstat to a log and then looked
    at it after my test and saw that my cpu was constantly pegged out (doing a lot
    of context switching), but that it wasn't doing a whole lot of page faults
    (had enough memory).
    If you're doing a lot of serialization, that could explain slow performance as
    well.
    I did follow a suggestion on this board of running my test several times with
    the optimizer (-server) and it boosted performance on each iteration until a plateau
    on or about the 3rd test.
    If you're running Oracle or another RDBMS on your Solaris machine you should see
    a pretty decent performance benchmark against NT as these types of applications
    are more geared toward the SPARC architecture. From what I've seen running Oracle
    on Solaris is pretty darn fast when compared to Intel.
    I know that I tried a lot of different tweaks on my Solaris configuration (tcp
    buffer size, etc/system parameters for file descriptors, etc.) I even got to the
    point where I wanted
    to see how WebLogic was handling the Nagle algorithm as far as it's POSIX muxer
    was concerned and ran a little test to see how they were setting the sockets (setTcpNoDelay(Boolean)
    on java.net.Socket). They're disabling the Nagle algorithm so that wasn't an
    issue sigh. My best advice would be to profile your application and see where
    the bottlenecks are, you might be able to increase performance, but I'm not too
    sure. I also checked out www.spec.org and saw some of their benchmarks that
    coincide with our findings.
    Best of luck to you and I hope this helps :)
    Andy
    [email protected] (feanor73) wrote:
    Hi all.
    We've recently been performance tuning our java application running
    inside of an Application Server with Java 1.3.1 Hotspot -server. We've
    begun to notice some odd trends and were curious if anyone else out
    there has seen similiar things.
    Performance numbers show that our server runs twice
    as fast on Intel with Win2K than on an Ultra60 with Solaris 2.8.
    Here's the hardware information:
    Intel -> 2 processors (32bit) at 867 MHz and 2 Gig RAM
    Solaris -> 2 processors (64bit) at 450 MHz and 2 Gig RAM.
    Throughput for most use cases in a low number of threads is twice as
    fast on Intel. The only exception is some of our use-cases that are
    heavily dependent on a stored procedure which runs twice as fast on
    Solaris. The database (oracle 8i) and the app server run on the same
    machine in these tests.
    There should minor (or no) network traffic. GC does not seem to be an
    issue. We set the max heap at 1024 MG. We tried the various solaris
    threading models as recommended, but they have accomplished little.
    It is possible our Solaris machine is not configured properly in some
    way.
    My question (after all that ...) is whether this seems normal to
    anyone? Should throughput be higher since the processors are faster on
    the wIntel box? Does the fact that the solaris processors are 64bit
    have any benefit?
    We have also run the HeapTest recommended on this site on both
    machines. We found that the memory test performs twice as fast on
    solaris, but the CPU test performs 4 times as slow on solaris. The
    "joint" test performs twice as slow on solaris. Does this imply bad
    things about our solaris configuration? Or is this a normal result?
    Another big difference is between Solaris and Win2K in these runs is
    that CPU Utilization is low on solaris (20-30%) while its much higher
    on Win2K (60-70%)
    [both machines are 2 processor and the tests are "primarily" single
    threaded at
    this stage]. I would except the solaris CPU utilization to be around
    50% as well. Any ideas why it isn't?

  • CPU utilization for GC...?? (Need Help)

    In am currently investigating high CPU utilization of an application at certain peak times.
    During the course of investigation, I was watching the Performance Monitor screen on the Weblogic Admin Console.
    I noticed that the "Memory Usage" graph(Amount of memory available in the JVM Heap) is showing continuous set of spikes(a SAWTOOTH pattern) during the peak times of the application.
    Now I am wondering if:
    1) I can CONCLUDE that this is really GC happening multiple times, which is showing as the sawtooth pattern on the graph.
    (I cannot turn on any verbose GC options, since the app is on production).
    2) Does doing GC contribute to the User CPU or System CPU.
    (Although the JVM i.e: Weblogic server was started as a user process, I want to know if GC is completely accounted only into the User CPU count).
    3) What would generally be the contribution of GC to CPU usage. How much CPU could it consume (minor GC and Full GC). Could the contribution be really so large that my CPU usage graph peaks out(above 85%).
    4) In case the answer for (3) is really large, then what should be my approach first..to increase New Gen size or to enable Parallel GC to use multiple CPUs (I have 2 CPUs and my GC options are default).
    Please advice. I really am in a soup.

    Hi,
    Yes, the sawtooth pattern shows that a GC has happened on every peak.
    I assume that you run on top of some Linux distribution.
    GC does contribute mainly to the value registered under User CPU unless you have limited physical memory on your machine where you could note an increase in System CPU during swapping.
    Optimization could also contribute to high CPU usage, you can turn off optimization with -Xnoopt.
    If you run with -Xgc:parallel (default with most JRockit versions), highest throughput is achieved when all CPUs concentrate on GC, thus generating a high CPU usage.
    What JRockit version are you using? (Include -showversion in your commandline or run java -version.)
    Kind regards, Cecilia
    JRockit Customer Centric Engineering
    Kind regards,
    Cecilia Borg
    BEA WebLogic JRockit

  • CPU utilization during GC...?? (Need Help).

    In am currently investigating high CPU utilization of an application at certain peak times.
    During the course of investigation, I was watching the Performance Monitor screen on the Weblogic Admin Console.
    I noticed that the "Memory Usage" graph(Amount of memory available in the JVM Heap) is showing continuous set of spikes during the peak times of the application.
    Now I am wondering if:
    1) I can infer that this is really GC happening multiple times, which is showing as the spike pattern on the graph.
    (I cannot turn on any verbose GC options, since the app is on production).
    2) Does doing GC contribute to the User CPU or System CPU.
    (Although the JVM i.e: Weblogic server was started as a user process, I want to know if GC is completely accounted into the User CPU count).
    Please advice. I really want to get this thing clear.

    Hi,
    Yes, the sawtooth pattern shows that a GC has happened on every peak.
    I assume that you run on top of some Linux distribution.
    GC does contribute mainly to the value registered under User CPU unless you have limited physical memory on your machine where you could note an increase in System CPU during swapping.
    Optimization could also contribute to high CPU usage, you can turn off optimization with -Xnoopt.
    If you run with -Xgc:parallel (default with most JRockit versions), highest throughput is achieved when all CPUs concentrate on GC, thus generating a high CPU usage.
    What JRockit version are you using? (Include -showversion in your commandline or run java -version.)
    Kind regards, Cecilia
    JRockit Customer Centric Engineering
    Kind regards,
    Cecilia Borg
    BEA WebLogic JRockit

  • Increased CPU utilization on Sup1A after upgrade

    Hello,
    I recently upgraded a 6009 with Supervisor 1A from CatOS 7.6(5) to 8.4(4). Baseline total CPU utilization before the upgrade was about 12%, post upgrade it sits at about 30%.
    We have several similar switches throughout our network that we intend to upgrade as well, so are treating this one box as a testbed. We will soon deploy IP telephones to every desk in our network, and want to determine if this higher baseline utilization will be problematic for us.
    Considering voice, should we be concerned about this? Will any changes due to voice deployment such as many trunks, QoS, etc. cause a significant jump in CPU that might put our baseline even higher?
    Will the higher baseline CPU utilization affect switch performance? I know most forwarding functions do not depend upon the CPU, and are switched via ASIC.
    thanks for the help,
    Brad

    The IDLE_Tasks process on which you are seeing a slightly higher CPU is actually an enhancement that collects information more effectively on crashinfo files (files generated when there is a crash on the box). This enhancement went into 8.3(x) and 8.4(x)
    In the past "IDLE_tasks" processing was not counted and therefore belong to the "kernel and IDLE" process (which as you can see in the show proc cpu) accounts the amount of cpu not being used.
    If you are upgrading other 6500's with Sup1a's make sure they all have 128MB DRAM just like this one has.

  • CPU utilization problem with JSF

    Hi,
    I am using MyFaces 1.1.4 and tomahawk 1.1.3.
    I am using EJB 2.0 and weblogic server 9.2
    I have a problem with the performance of my application. The response time for 500 concurrent users is arnd 10sec. However, the CPU utilization normally hits *95-97%.*
    I have disabled all the logging to reduce the file IO. Also, all the code has been optimised. Still the problem exists. Now, I cannot think of any way to overcome this. My project is getting delayed because of this.
    Request you all to pls help.
    Regards,
    Milan.

    What type of server or servers are you using. I am assuming which I hate to do is that your EJB's are for CRUD and you a connection pool. Have tried to optimize the DB connection pool's ?.

  • Heavy CPU Utilization of Dictionary Query - After 9i to 10g Upgrade

    Hi Friends,
    We have migrated our production DB from Oracle 9i(Windows) to Oracle 10g(AIX) and after that a heavy cpu utilization query is coming frequently and hence many timeouts are happening in the application.
    Application is connecting to the database through Java Application (JDBC).
    Once the application service is started, below query is invoked and CPU takes around 20% continuously.
    The interesting thing is this query is not owned by the application schema but by SYS and it's invoked from Application Schema.
    We have raised an SR but still no luck.
    Any help will be very much appreciated.
    SELECT -- Packaged procedures with no arguments package_name AS procedu
    re_cat, owner AS procedure_schem, object_name AS procedure_name, NULL
    , NULL, NULL, 'Packaged procedure' AS remarks, 1 AS procedure_type
    FROM all_arguments WHERE argument_name IS NULL AND data_type IS NULL AN
    D package_name LIKE :3 ESCAPE '/' AND owner LIKE :4 ESCAPE '/' AND obje
    ct_name LIKE :5 ESCAPE '/' UNION ALL SELECT -- Packaged procedures with a
    rguments package_name AS procedure_cat, owner AS procedure_schem, obj
    ect_name AS procedure_name, NULL, NULL, NULL, 'Packaged procedure'
    AS remarks, 1 AS procedure_type FROM all_arguments WHERE argument_name IS
    NOT NULL AND position = 1 AND position = sequence AND package_name L
    IKE :3 ESCAPE '/' AND owner LIKE :4 ESCAPE '/' AND object_name LIKE :5
    ESCAPE '/' UNION ALL SELECT -- Packaged functions package_name AS proce
    dure_cat, owner AS procedure_schem, object_name AS procedure_name, NU
    LL, NULL, NULL, 'Pa
    Regards,
    Savad
    Edited by: user9292816 on May 9, 2011 4:35 AM

    Hi,
    We couldn't find anything in the alert log related to this.
    But we have taken the explain plan from both DBs as shown below.
    PLan of the Query in Oracle 9.2.0.8(Windows - Old DB )
    SQL> select * from table(dbms_xplan.display());
    | Id | Operation | Name | Rows | Bytes | Cost |
    | 0 | SELECT STATEMENT | | | | |
    | 1 | SORT ORDER BY | | | | |
    |* 2 | FILTER | | | | |
    |* 3 | TABLE ACCESS BY INDEX ROWID | ARGUMENT$ | | | |
    | 4 | NESTED LOOPS | | | | |
    | 5 | NESTED LOOPS | | | | |
    | 6 | TABLE ACCESS BY INDEX ROWID| USER$ | | | |
    |* 7 | INDEX RANGE SCAN | I_USER1 | | | |
    | 8 | TABLE ACCESS BY INDEX ROWID| OBJ$ | | | |
    |* 9 | INDEX RANGE SCAN | I_OBJ2 | | | |
    |* 10 | INDEX RANGE SCAN | I_ARGUMENT2 | | | |
    |* 11 | FIXED TABLE FULL | X$KZSPR | | | |
    |* 12 | TABLE ACCESS BY INDEX ROWID | OBJAUTH$ | | | |
    | 13 | NESTED LOOPS | | | | |
    | 14 | FIXED TABLE FULL | X$KZSRO | | | |
    |* 15 | INDEX RANGE SCAN | I_OBJAUTH2 | | | |
    Predicate Information (identified by operation id):
    2 - filter("SYS_ALIAS_1"."OWNER#"=:B1 OR EXISTS (SELECT /*+ */ 0 FROM
    "X$KZSPR" "X$KZSPR" WHERE "X$KZSPR"."INST_ID"=:B2 AND
    ((-"X$KZSPR"."KZSPRPRV")=(-144) OR (-"X$KZSPR"."KZSPRPRV")=(-141))) OR EXISTS
    (SELECT 0 FROM "SYS"."OBJAUTH$" "OBJAUTH$","X$KZSRO" "X$KZSRO" WHERE
    "OBJAUTH$"."OBJ#"=:B3 AND "OBJAUTH$"."GRANTEE#"="X$KZSRO"."KZSROROL" AND
    "OBJAUTH$"."PRIVILEGE#"=12))
    3 - filter(("A"."ARGUMENT" LIKE :Z ESCAPE '/' OR "A"."ARGUMENT" IS NULL AND
    DECODE("A"."TYPE#",0,NULL,1,DECODE("A"."CHARSETFORM",2,'NVARCHAR2','VARCHAR2'),2,
    DECODE("A"."SCALE",(-127),'FLOAT','NUMBER'),3,'NATIVE
    INTEGER',8,'LONG',9,DECODE("A"."CHARSETFORM",2,'NCHAR
    VARYING','VARCHAR'),11,'ROWID',12,'DATE',23,'RAW',24,'LONG
    RAW',29,'BINARY_INTEGER',69,'ROWID',96,DECODE("A"."CHARSETFORM",2,'NCHAR','CHAR')
    ,102,'REF CURSOR',104,'UROWID',105,'MLSLABEL',106,'MLSLABEL',110,'REF',111,'REF',
    112,DECODE("A"."CHARSETFORM",2,'NCLOB','CLOB'),113,'BLOB',114,'BFILE',115,'CFILE'
    ,121,'OBJECT',122,'TABLE',123,'VARRAY',178,'TIME',179,'TIME WITH TIME
    ZONE',180,'TIMESTAMP',181,'TIMESTAMP WITH TIME ZONE',231,'TIMESTAMP WITH LOCAL
    TIME ZONE',182,'INTERVAL YEAR TO MONTH',183,'INTERVAL DAY TO SECOND',250,'PL/SQL
    RECORD',251,'PL/SQL TABLE',252,'PL/SQL BOOLEAN','UNDEFINED') IS NOT NULL) AND
    DECODE("A"."PROCEDURE$",NULL,NULL,"SYS_ALIAS_1"."NAME") LIKE :Z ESCAPE '/' AND
    NVL("A"."PROCEDURE$","SYS_ALIAS_1"."NAME") LIKE :Z ESCAPE '/')
    7 - access("U"."NAME" LIKE :Z ESCAPE '/')
    filter("U"."NAME" LIKE :Z ESCAPE '/')
    9 - access("SYS_ALIAS_1"."OWNER#"="U"."USER#")
    10 - access("SYS_ALIAS_1"."OBJ#"="A"."OBJ#")
    11 - filter("X$KZSPR"."INST_ID"=:B1 AND ((-"X$KZSPR"."KZSPRPRV")=(-144) OR
    (-"X$KZSPR"."KZSPRPRV")=(-141)))
    12 - filter("OBJAUTH$"."PRIVILEGE#"=12)
    15 - access("OBJAUTH$"."GRANTEE#"="X$KZSRO"."KZSROROL" AND
    "OBJAUTH$"."OBJ#"=:B1)
    Note: rule based optimization
    PLan of the Query in Oracle 10.2.0.5.3(AIX - New DB )
    ?PLAN_TABLE_OUTPUT
    Plan hash value: 2991281545
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 109 | 451 (3)| 00:00:06 |
    | 1 | SORT ORDER BY | | 1 | 109 | 451 (3)| 00:00:06 |
    |* 2 | FILTER | | | | | |
    |* 3 | HASH JOIN | | 3 | 327 | 450 (3)| 00:00:06 |
    |* 4 | HASH JOIN | | 12 | 1128 | 448 (3)| 00:00:06 |
    |* 5 | TABLE ACCESS FULL | ARGUMENT$ | 4821 | 291K| 259 (3)| 00:00:04 |
    | 6 | TABLE ACCESS FULL | OBJ$ | 56329 | 1760K| 187 (2)| 00:00:03 |
    | 7 | TABLE ACCESS BY INDEX ROWID| USER$ | 6 | 90 | 2 (0)| 00:00:01 |
    |* 8 | INDEX RANGE SCAN | I_USER1 | 2 | | 1 (0)| 00:00:01 |
    |* 9 | FIXED TABLE FULL | X$KZSPR | 1 | 26 | 0 (0)| 00:00:01 |
    | 10 | NESTED LOOPS | | 2 | 50 | 2 (0)| 00:00:01 |
    |* 11 | INDEX RANGE SCAN | I_OBJAUTH1 | 1 | 12 | 2 (0)| 00:00:01 |
    |* 12 | FIXED TABLE FULL | X$KZSRO | 2 | 26 | 0 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    2 - filter("OWNER#"=USERENV('SCHEMAID') OR EXISTS (SELECT 0 FROM SYS."X$KZSPR"
    "X$KZSPR" WHERE ((-"KZSPRPRV")=(-144) OR (-"KZSPRPRV")=(-141)) AND
    "INST_ID"=USERENV('INSTANCE')) OR EXISTS (SELECT 0 FROM "SYS"."OBJAUTH$"
    "OBJAUTH$",SYS."X$KZSRO" "X$KZSRO" WHERE "GRANTEE#"="KZSROROL" AND "OBJ#"=:B1 AND
    "PRIVILEGE#"=12))
    3 - access("O"."OWNER#"="U"."USER#")
    4 - access("O"."OBJ#"="A"."OBJ#")
    filter(NVL("A"."PROCEDURE$","O"."NAME") LIKE :2 ESCAPE '/' AND
    DECODE("A"."PROCEDURE$",NULL,NULL,"O"."NAME") LIKE :3 ESCAPE '/')
    5 - filter("A"."ARGUMENT" LIKE :5 ESCAPE '/' OR "A"."ARGUMENT" IS NULL AND
    DECODE("A"."TYPE#",0,NULL,1,DECODE("A"."CHARSETFORM",2,'NVARCHAR2','VARCHAR2'),2,DECO
    DE("A"."SCALE",(-127),'FLOAT','NUMBER'),3,'NATIVE
    INTEGER',8,'LONG',9,DECODE("A"."CHARSETFORM",2,'NCHAR
    VARYING','VARCHAR'),11,'ROWID',12,'DATE',23,'RAW',24,'LONG
    RAW',29,'BINARY_INTEGER',69,'ROWID',96,DECODE("A"."CHARSETFORM",2,'NCHAR','CHAR'),100
    ,'BINARY_FLOAT',101,'BINARY_DOUBLE',102,'REF
    CURSOR',104,'UROWID',105,'MLSLABEL',106,'MLSLABEL',110,'REF',111,'REF',112,DECODE("A"
    ."CHARSETFORM",2,'NCLOB','CLOB'),113,'BLOB',114,'BFILE',115,'CFILE',121,'OBJECT',122,
    'TABLE',123,'VARRAY',178,'TIME',179,'TIME WITH TIME
    ZONE',180,'TIMESTAMP',181,'TIMESTAMP WITH TIME ZONE',231,'TIMESTAMP WITH LOCAL TIME
    ZONE',182,'INTERVAL YEAR TO MONTH',183,'INTERVAL DAY TO SECOND',250,'PL/SQL
    RECORD',251,'PL/SQL TABLE',252,'PL/SQL BOOLEAN','UNDEFINED') IS NOT NULL)
    8 - access("U"."NAME" LIKE :1 ESCAPE '/')
    filter("U"."NAME" LIKE :1 ESCAPE '/')
    9 - filter(((-"KZSPRPRV")=(-144) OR (-"KZSPRPRV")=(-141)) AND
    "INST_ID"=USERENV('INSTANCE'))
    11 - access("OBJ#"=:B1 AND "PRIVILEGE#"=12)
    filter("PRIVILEGE#"=12)
    12 - filter("GRANTEE#"="KZSROROL")
    52 rows selected.
    Regards,
    Savad

  • How to over come jlaunch process High CPU utilization

    Hi ,
    I am facing problem in Poratal Production system
    Jlaunch process consuming more CPu utilization, Can you suggest me How to overcome this problem with out restart server
    regards,
    Balaram

    Hi,
    This is because of parameters of your J2ee engine are not optimized. Check SAP 723909 Java VM settings for J2EE 6.40/7.0 Prerequisite for performance optimization
    Thanks
    Sunny

  • High time consumption and CPU utilization on EPM 11.1.2.1

    We are using a distributed environment for EPM system 11.1.2.0, in which, on system A, Foundation services and Planning have been installed and on system B, Essbase, Admin Services and Provider Services have been installed.
    The configuration for the two systems is as mentioned below :
    System A:
    intel Xenon CPU X7560 2.27 GHz (dual core)
    12 GB RAM
    System B:
    intel Xenon CPU X7560 2.27 GHz (dual core)
    8 GB RAM
    A business rule takes 15 minutes on being executed on version 9.3.1; whereas the time consumed on system 11.1.2.1 varies from 3 hours (mostly) to 10 minutes.
    This business rule aggregates 5 dimensions (1 dense and 4 sparse). It does not create any new blocks and intelligent calc is also set to off.
    Although the cache and memory values on the newer system are higher than the previous version, we fail to reduce the time consumption and CPU utilization. Please help us resolve this issue.

    Your issues is beyond the scope of a forum. I suggest you find an infrastructure person who has Essbase experience. Your machines also have less resources than the standard deployment guide recommends.
    This would appear to either be lack of physical memory or an issue with the IO speed of the disk subsystem which you are storing your Essbase data on.
    Regards,
    John A. Booth
    http://www.metavero.com

  • Firefox CPU Utilization

    Hi all, I'm hoping someone can shed some light on an issue relating to Firefox. CPU utilization is consistently above 30%, regardless of the number of tabs, complexity of websites, etc. Currently, two tabs open (Wiki & current) and I'm sitting at 37% CPU usage. Tried to reinstall, trashed the Mozilla prefs, ensured most up-to-date version is installed, all to no avail.
    Thanks in advance!
    Ryan

    HI,
    Go to ~/Library/Internet Plugins. Third party plugins could be causing this.
    And /Library/Input Managers.
    Carolyn

  • SDK-based Management Pack causes 100% CPU utilization for HealtService.exe

    We developed an MP that uses SDK to create SCOM objects and insert a large number of performance counters ~ 2000 every 5 minute interval.
    On SCOM side the MP has about 2000 instances of UnitMonitor (only ~20 per class but there are lots of  actual objects). In these monitors we use 
    DataSource based on Microsoft.SystemCenter.TargetEntitySdkPerformanceDataProvider. All worked fine for a year but lately added a bunch of new objects/counters and CPU utilization for the MonitoringHost.exe started to spike
    to 100% a few seconds after the Performance Counters were posted via SDK. The spike lasts for up to 3 minutes. No DB or Network spikes observed. We suspect SCOM does not deal efficiently with SDK Performance data - as if a separate SdkPerformanceDataProvider
    is started for every UnitMonitor when the counters are posted rather than having cooked-down - one per Target instance.
    Can anyone shed some light on this? I suspect only the Microsoft engineers would know.
    Our environment is like this:
    SCOM 2012 R2 UR4
    Windows Server 2012 8 Core, 16 GB Ram
    Thanks,
    Dave

    Hi Dave,
    is there a way that you can reduce the number of performance insertions? Regardless of even fixing the performance issue, the impact from a database standpoint may be something to consider in the long term. My point is that fixing one issue, will take us
    to the next one, etc etc.
    I would reduce the number of insertions, only to the either insertion of the "most critical" or "top #". Also, aren't those counters already captured out of the box?
    hth
    Jose

  • High CPU utilization with SQL Server 2005

    Our company recently combined our DBs into one SQL 2005 Server. 
    Dell Power Edge 1800 with 3.00 GHz Xeon Processor 800 FSB, 1 GB of RAM
    Dell Power Edge 1600 with 2.80 GHz Xeon Processor 533 FSB, 1 GB of RAM
    Combined into one:
    Dell Power Edge 2950 Dual Core 1.6 GHz Xeon Woodcrest Processor, 4 GB of RAM
    However, the CPU utilization on this new server is maintaining at about 90% with 3.82 GB of RAM used as well.  It's a Windows Server 2003 R2 x64 edition running SQL Server 2005 SP2 x64.  I have searched around Microsoft's website for any information that could be of help to me, but I was unable to locate anything.  I was hoping that someone could provide some insight as to why this might be occuring.  Or if this is a known issue.
    Thanks,
    Peter

    Hello!
    Here are some steps to take after upgrading your SQL Server from 2K to 2K5. (This quote is from BOL)
    After upgrading the Database Engine to SQL Server 2005, complete the following tasks:
    Register your servers - Upgrade removes registry settings for the previous SQL Server instance. After upgrading, you must reregister your servers.
    Repopulate full-text catalogs - The upgrade process marks your databases as full-text disabled. Catalogs must be repopulated, but this operation is not run automatically by Setup because it can be time-consuming. As this operation enhances the performance of your SQL Server 2005 installation, administrators should plan to repopulate full-text catalogs at a convenient time.
    Update statistics - To help optimize query performance, we recommend that you update statistics on all databases following upgrade. Use the sp_updatestats stored procedure to update statistics in user-defined tables in SQL Server 2005 databases.
    Update usage counters - In earlier versions of SQL Server, the values for the table and index row counts and page counts can become incorrect. To correct any invalid row or page counts, we recommend that you run DBCC UPDATEUSAGE on all databases following upgrade.
    Configure your new SQL Server installation - To reduce the attackable surface area of a system, SQL Server 2005 selectively installs and activates key services and features. For more information on how to activate SQL Server 2005 features, see SQL Server Surface Area Configuration.
    Source:
    How to: Upgrade to SQL Server 2005 (Setup)
    http://msdn2.microsoft.com/en-us/library/ms144267.aspx

  • Poor Rendering CPU utilization

    Hi,
    I just got my brand-new PC including a Intel Core i7 920 and ASUS P6T Deluxe V2 Motherboard running on Windos 7 RC. I created a demo project and exported a sequence to 1920i m2v format. I was very disappointed that the CPU utilization during the rendering process was only 20-25%. Same with rendering for preview within premiere itself. Is there any way to improve this?
    - Stefan

    Could there be a mistake somewhere? I ran the Sandra benchmark on physical disks and got these results:
    With 6.00 ms access time your access time would be the same as a 15K SCSI-3 disk.
    All the SATA disks, including my Areca raid show access times around 13 to 16 ms.
    BTW, Sandra gave my raid a drive index of 1479 MB/s. It shows that interpreting these results from different benchmarks it a difficult job. The results vary so much between programs. For instance:
    SANDRA:      1479 MB/s, but indicates the size correctly as 10 TB
    HD Tune Pro:   745 MB/s, but indicates the size INcorrectly as 2199 GB
    HD Tach:         802 MB/s
    all on the same raid array. The same applies to access times, with Sandra 13.2 ms, with HD Tune Pro 9.1 ms. All my single SATA disks show around 13.5 ms access time in HD Tune Pro. The drive index for single disks do not vary as much, both Sandra and HD Tune Pro show around 91 MB/s.
    From what I have seen it looks like HD Tune Pro is the most representative benchmark for disk performance, more so than Sandra.

  • 3560 CPU utilization constantly showing 87%

    hello, we are using a 3560 switch and the cpu utilization is constantly showing 87 %.
    This switch is doing routing and leased lines are connected to service providers.
    Is there any trouble shooting steps that can be done?
    Regards,
    Shiva

    Disclaimer
    The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.
    Liability Disclaimer
    In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of   the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.
    Posting
    Inayath's document is nice, and in it he mentions show tcam utilization.  If your TCAM overlfows, some packet forwarding will be done in CPU.  So, that's an important check; insure you're using the most suitable SDM template.

Maybe you are looking for

  • I installed a new wifi router and airport will not connect automatically to it. It sees the network but will not connect unless I tell it to.

    I installed a new wifi router and airport will not connect automatically to it. It sees the network but will not connect unless I tell it to. I can't find anywhere in the utility or network preferences that will allow me to choose this router as the

  • Help With Flash Update for Android (Nexus One)

    Hello, not sure why this issue isn't addressed but it's a big issue. I have an Android Google Nexus One running update 2.2. Flash was working perfectly before the update. This is apparently an issue for those that have uninstalled Flash and re-instal

  • JS CS3 Annotations

    I found a site called PS-Scripts that had some functions for creating and adding text into annotations. I had no issues with the creation part but when I tried to add text (string) to the annotation it kept giving me a "Could not complete the command

  • Can I recover deleted bookmarks?

    Hello all, On my laptop, I accidently deleted Bookmarks off of my Safari's Bookmark Bar, which IMHO seems far too easy to do.  With an accidental click/drag, I pulled them off the bar and POOF they are gone, then trusty iCloud happily deleted them of

  • How do I cut a line with a rectangle using the Pathfinder

    I'm a complete newb in Ai (many years in Ps). I'm trying to cut off (delete) a rectangular section of a grid that is made of many lines. I keep getting the message, "The filter produced no results. Please select two intersecting paths." In its simple