JVM Using more than -Mx Memmory and RSS

Hi All,
Used -Xms256m -Xmx512m parameters for weblogic Admin server 10.0.1.0, 9.2.2, but the server is using more than the value specified and it is not
happening for weblogic version 10.3, This was found while cross checking with
ps and prstat.
and no application is deployed in the above admin instance.
Process grep'd below
bash-3.00# ps -ef | grep -i java
advboprd 13639 1279 1 Mar 06 ? 1673:18 /usr2/BEA10MP3/jdk160_05/bin/java -server
-DWls10=bocaejb-admin -Xms256m -Xmx512 (THIS IS WLS 10.3 WORKING AS EXPECTED)
advboprd 28246 1279 0 Mar 07 ? 159:38 /usr2/BEA92MP2/jdk150_10/bin/java -server -Dwls92=ace-admin -Xms256m -Xmx512m - (THIS IS WLS 9.2.2 NOT WORKING AS EXPECTED)
advboprd 1616 1279 1 Jan 18 ? 141803:32 /usr2/BEA10MP1/jdk150_11/bin/java -server -DWls10=vtm-admin -Xms256m -Xmx512m -(THIS IS WLS 10.0.1.0 NOT WORKING AS EXPECTED)
Cross checked the same process with prstat
bash-3.00# prstat | grep -i java
PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/NLWP
1616 advboprd 3173M 2932M cpu21 22 0 2363:33:0 21% java/150
13639 advboprd 466M 447M run 7 0 27:53:56 1.7% java/93
28246 advboprd 758M 541M run 59 0 2:39:41 0.0%
java/91
Please note the the process id 1616,28246 are corssing the specified value where as
the process 13639 (10.3) is not.
Memmory Value defined
CMD="${JAVA_HOME}/bin/java -server -D${VERSION_LABEL}=${PROC_NAME} -Xms256m -Xmx512m \
-XX:MaxPermSize=128m \
-da \
As I know JVM uses a extra memmory for JVM internal use, however but not expected to consume this huge memmory.
-Suresh

yes the max size set to 512.
ps -ef | grep 11335
nbkmsfh 21053 831 0 10:19:29 pts/23 0:00 grep 11335
advboprd 11335 1279 0 Oct 04 ? 134315:58 /usr2/BEA10MP1/jdk150_11/bin/java -server -DWls10=fiedo-admin -Xms256m -Xmx512m
prstat -L -p 11335 1 1
$ prstat -L -p 11335 1 1
PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/LWPID
11335 advboprd 3167M 2908M sleep 4 0 143:52:04 0.4% java/94
11335 advboprd 3167M 2908M sleep 4 0 60:45:05 0.3% java/318
11335 advboprd 3167M 2908M sleep 1 0 126:20:00 0.3% java/267
I see the Heap size occupied , from pmap.
00010000 64K r-x-- /usr2/BEA10MP1/jdk150_11/bin/java
0002E000 16K rwx-- /usr2/BEA10MP1/jdk150_11/bin/java
00032000 56K rwx-- [ heap ]
00040000 3840K rwx-- [ heap ]
00400000 258048K rwx-- [ heap ]
10000000 2359296K rwx-- [ heap ]
total 3238528K
-Suresh

Similar Messages

  • How can I use more than one iphone and keep contacts separate?

    How can I set up more than one phone and keep our contacts and messaging separate?

    Use separate Apple IDs for iCloud on each phone.

  • Use more than one look and feel in the Portal

    Hi,
    I'm searching for a solution to use more than one Theme in the portal. It's not based on user or a role. One and the same user should be able to enter the portal and depending on his adress he should be rooted to A or B theme.
    We are usein EP6 sps13.
    Kind regards
    Michiel Veenemans

    Hello,
    To my feeling you should be work with display rules.
    You probably have user who need one theme and other user you want to give another theme. By using display rules you can assign a theme to one user group and another theme or themes to another group.
    So depending on the group the user is assigned to you get another theme. This way everybody uses the same URL and a theme can be altered with the default user functions.
    Best regards,
    Frederik

  • Using more than one PU and PC for the same database

    I have a scenario described here: [http://www.seamframework.org/Community/UsingTwoParallelNestedConversationsWithParentAtomicConversation|http://www.seamframework.org/Community/UsingTwoParallelNestedConversationsWithParentAtomicConversation]
    which uses Seam, EJB3, JPA, Hibernate, Richfaces (modalPanel) and JSF.
    The question I have is the following:
    is there any negative consequence (memory consumption, performance hit, etc.) of using more than one persistence unit in the persistence.xml that points to the same EntityManagerFactory? I was thinking of having one PersistenceContext (Seam-managed PC - an extended PC which is conversation-scoped) which uses one PU and reserving the other PC for the modalPanel forms and backing beans (SFSBs).
    The reason I needed to use this solution/approach is so that when using Hibernate MANUAL flush with SMPC, I can achieve isolated synchronization of the PersistenceContext without updating values in the modalPanel forms and vice versa.
    Any tips on best practices or alternative solutions? thx.
    persistence.xml snippet:
       <persistence-unit name="boBETS">
          <provider>org.hibernate.ejb.HibernatePersistence</provider>
          <jta-data-source>java:/boBETSDatasource</jta-data-source>
          <properties>
             <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
             <!-- <property name="hibernate.hbm2ddl.auto" value="validate"/>   -->
             <property name="hibernate.show_sql" value="true"/>
             <property name="hibernate.format_sql" value="true"/>
             <property name="hibernate.generate_statistics" value="true"/>
             <property name="jboss.entity.manager.factory.jndi.name" value="java:/boBETSEntityManagerFactory"/>
             <property name="hibernate.default_catalog" value="boBETS"/>
             <property name="hibernate.default_schema" value="dbo"/>
          </properties>
       </persistence-unit>
       <!-- using boBETS2 for ListValueParamAction for now! trying to isolate the em.flush() such that we can achieve atomic conversations for the
       base form as well as the popup form! -->   
       <persistence-unit name="boBETS2">
          <provider>org.hibernate.ejb.HibernatePersistence</provider>
          <jta-data-source>java:/boBETSDatasource</jta-data-source>
          <properties>
             <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
             <!-- <property name="hibernate.hbm2ddl.auto" value="validate"/>   -->
             <property name="hibernate.show_sql" value="true"/>
             <property name="hibernate.format_sql" value="true"/>
             <property name="hibernate.generate_statistics" value="true"/>
             <property name="jboss.entity.manager.factory.jndi.name" value="java:/boBETS2EntityManagerFactory"/>
             <property name="hibernate.default_catalog" value="boBETS"/>
             <property name="hibernate.default_schema" value="dbo"/>
          </properties>
       </persistence-unit>What happens if I were to have 10 PUs and 10 PCs in the same app? Whether they're all pointing to same DB or not. What's the consequence of using "too many"?

    Yes, you can use multiple iCloud accounts in multiple User Accounts on one computer, but, as you know not multiple iTunes Match accounts. Keep in mind that the two services are not the same.
    Since you've posted your question to the iTunes Match forum, which it really doesn't pertain to, you might want to also post it to the iCloud on my Mac forum.

  • Using more than one computer...

    I've been trying to wrap my head around syncing using more than one computer and want to see if I have it right.
    Obviously the easiest arrangement is to have one computer and one iphone (and if you want, one mobileme acct) and keep them in sync in all departments.
    Most people have more complicated lives.
    When there is more than one computer involved the basic idea is that all media and apps can only come from one computer. That is the computer/itunes program associated with the iphone.
    When it comes to a second computer, one can still sync contacts, calendars, (notes? bookmarks?) but no media/apps.
    That is to say, you can't download a podcast or song on the second computer and get it onto your iphone without erasing your iphone media library.
    Is that the basic idea? A distinction between media/software and data?
    One grey area: Can voice memos be moved from an iphone onto a second computer without losing media?
    Thanks,
    D.

    If you sync to a computer without media, it will wipe all media off the phone. It's easier to stick to one computer. If you want to sync other things, calendars etc it's better to do it via WiFi or Data.

  • Mail uses more than 120'%  CPU when fetching headers

    Hello,
    mail uses more than 100% CPU and the system response gets slow, affecting the other processes when mail starts, and the mail activity viewer says: fetching headers.
    It happens when I check my mail with mail client directly in the same server, or when I connect from another machine, my mail Version 2.1 (752/752.2), I have 3 IMAP accounts.
    I have verified and repaired the disk (no errors), I have set up mail from scratch, the first network connection is ethernet,
    I am using mail program on the server trying to check the mail in the same server. when I open the program, and it starts to fetch headers, the 100 % percent or more of CPU is used (128%,etc).
    when I try to conect from another mail program to this server the 100% cpu or more is get when fetching headers (I am using a firewire connection, and the another machine is a MAC PRO (4 processors, 2 x 2.66 GhZ Dual Core Intel Xeon, 1GB ram 667 mhz DDR2 fB/Dimm, MAC OSX 10.4.9, with no other programs running), so the problem is on the server.
    I have booted the machine in safe mode (the red text "safe mode" appeared), and the same things happened, I have some screen shots available
    from the mail forum they told me that I should check this problem in the server forum.
    http://discussions.apple.com/thread.jspa?threadID=957222&tstart=0
    any idea?
    thanks
    Alberto
    Dual 2 GHz PowerPC G5   Mac OS X (10.4.9)   4GB DDR SDRAM, MAC OS X Server

    Hello OgelThorpe,
    Thank you for the suggestion. I will try that soon. My macbook meets well over the hardware requirements for that package. Also only the cpu usage is high, i have 4GB ram and only 500-700 MB of that gets used by adobe premiere.
    I have have run the hardware test in a loop and it passed everytime, so i dont doubt the hardware.
    regards
    Ankit

  • Can u use more than one apple account on your device and itunes

    Can u use more than one apple account on your device and itunes

    Yes, but you have to logout of one, and login to the other.
    If it is an iPhone/iPad/iPod Touch and you buy apps on different accounts, when it comes time to update an app, you have to specify the password for the account used to acquirer the app. You change an iOS account via Settings -> Store -> Apple ID (tap on it), and start by logging out and then you can enter the other Id
    So it is possible, but it can also be a pain.

  • HT1589 Can I use more than 1 device ie iPod and iPhone on the same iTunes account and have different music on them

    Can I use more than 1 device ie iPod and iPhone on the same iTunes account and have different music on them

    Yes. Use the option to sync with selected playlists on the music tab when your devices are connected.
    tt2

  • Can I use more than one version of Adobe Reader on an iPad, 8.1 touch and 11.1

    Can I use more than one version of Adobe Reader on an iPad  adobe Reader Touch and Reader 11.1 .  .  I use Acrobat XI Pro although I had some old files that were stored on adobe.com from a prior version of acrobat 9 student edition.
    I guess the same question for my Surface Pro2 Computer might apply, although I gather from what I read that you shouldn't have two versions of reader on a computer.

    If I may add a qualification: on a device running full Windows 8, you may have both Adobe Reader Touch and Adobe Reader (normal desktop edition). This does not apply to the primitive devices which cannot run desktop apps (running "Windows RT"), and while I may be wrong, I believe that the Surface 2 is such a device.

  • Can I use more than one blue-tooth device at the same time on IPhone 4S? Like a wireless headsets and speed and cadence sensor for cycling computer, receive the data and listen music simultaneously

    Can I use more than one blue-tooth device at the same time on IPhone 4S? Like a wireless headsets and speed and cadence sensor for cycling computer, receive the data and listen music simultaneously

    As long as the profiles are different (ex. HID vs AD2P) you will not have any issues. But say if you try to use 2 keyboards at once, it won't work. Or 2 headsets at once. Your scenario seems fine.

  • I use more than one computer to access my four business email accounts. When one computer is on (and mail is open) emails do not get through to the other computers. This is fine, but how do I make one of the other computers the dominant one?

    I use more than one computer to access my four business email accounts. When one computer is on (and mail is open) emails do not get through to the other computers. This is fine, but how do I make one of the other computers the dominant one?

    I assume these are POP accounts and all computers are set to remove from Server after downloading.
    So on the non dominant ones... Mail Preferences>Accounts, highlight an account, Advanced tab, uncheck remove from Server, just have the main dominant one remove from server.
    Or get/setup IMAP accounts.

  • HT1386 Hi All, I plugged my iPhone into my laptop and I was asked to upgrade my iTunes software. It took more than seven hours and just to be told that my SIM card does not appear to be supported. Since then I can not use my iPhone. I am lost plse help. J

    Hi All, I plugged my iPhone into my laptop and I was asked to upgrade my iTunes software. It took more than seven hours and just to be told that my SIM card does not appear to be supported. Since then I can not use my iPhone. I am lost plse help. Jam53
    Every time I switch on the iPhone, the iTunes icon is displayed together with a USB icon and Emergency call message appears on the screen in many languages. When I touch the i symbol I get the following information IMEI: **** AND ICCID: ****
    However, the iphone is visible in the Devices directory in iTunes. I changed my SIM card but still can not be recognized by the iPhone.
    <Edited By Host>

    Do you mean when you say its locked to another carrier other then the one im using, that maybe my insurance sent me an iphone thats for a different network for example orange and not mine which is o2?

  • I entered calculates hands and more than one account and used a credit card please raise security measure for Visa card and thank you

    I entered calculates hands and more than one account and used a credit card please raise security measure for Visa card and thank you

    Hi Eva B.,
    Please refer to the help document below:
    Adobe Store | Online order and payment FAQ
    Regards,
    Sheena

  • Can I pair and use more than one set of bluetooth speakers at the same time on my ipod touch 4.0

    can I pair and use more than one set of bluetooth speakers at the same time on my ipod touch 4.0 or Iphone 4s or Ipad 2?

    You can only connect to one device at a time using Bluetooth, See article below for more information.
    http://support.apple.com/kb/ht1664
    While your iOS device can maintain multiple pairing records, it can only connect to one headset or hands-free device at a time. This prevents your iOS device from sending your data to the wrong Bluetooth accessory.

  • Can I create and use more than one repository on OVM 2.1.5

    The version of Oracle VM I am using is 2.1.5 .
    I wonder can I create and use more than one repository on OVM 2.1.5. Because I want to install different GOS on different disks.
    I know in Oracle VM 2.2 we can use following commands to realize that.
    a. #/opt/ovs-agent-2.3/utils/repos.py –n /dev/mapper/mpathxp1
    b. #/opt/ovs-agent-2.3/utils/repos.py –r UUID
    c. #/opt/ovs-agent-2.3/utils/repos.py –i
    And other repositories can also be mounted and found under /var/ovs/mount/UUID.
    But in Oracle VM 2.1.5, seems just one repository can be created and mounted. For example:
    At first, I create a repository using mpath1p1:
    a. # mkfs.ocfs2 /dev/mapper/mpath1p1
    b. #/usr/lib/ovs/ovs-makerepo /dev/mapper/mpath1p1 C "cluster root"
    c. I can find the repository has been mounted under /OVS.
    But if I want to use "/usr/lib/ovs/ovs-makerepo /dev/mapper/mpath2p1 C "cluster root" to create another repository, and check the mount status using command "mount", these two disks are all have been mounted under /OVS.
    "# cat /etc/ovs/repositories", only mpath1p1 with UUID was recorded there.
    After reboot, only repository with mpath1p1 was mounted under OVS.
    Can anyone tell me how to use more than one repositories on OVM 2.1.5. Do I have to install all the GOSs on the same disk and repository.
    Thank you very much.

    Now I've known how to create different repository. They will be mounted under /OVS/UUID. Thanks.

Maybe you are looking for

  • How to implement MHP on PC?

    I'm doing project that implement MHP on PC. I read the MHP spec for a long time, but i'm really comfused. If i want to implement MHP on PC, what should i do first? what preparations should I do? Can my direct show filters be called by JVM?

  • 5800 xm - bug or what else... it restarts itself a...

    Hi all, I'm the (for everything else lucky) owner of a 5800 XM, that works almost great. Dunno what's the cause, it resets itself (does a partial reboot, showing the white screen with the Nokia blue logo) in several ordinary use circumstances. For ex

  • Settings password

    There is a "sign in" at the bottom left of the printer's control panel screen. When I press it, it asks for a password. I just set up the printer and it did not prompt me to set a password. I have tried entering nothing, and also have entered my hp p

  • What is this format called? How do I do it?

    Hey! I want to know how to format a site such that the content is on the middle column with a different background color as the main background, such as on bodybuilding.com I don't know what this type of thing is called so I couldn't search for any a

  • Basics of wireless printing? ABS required?

    Can someone direct me to the Apple doc for this topic? One I found was for Tiger, I use Leopard now. My specific questions are, Can this be done through a wireless router other than Apple's Airport Base Station series? (we tried both Extreme and Expr