[Installation, Configuration & DEPLOYMENT] - Re: OutOfMemoryError deploying an JSF 1.2 app (ADF11g) to JB
by nuadaComm
Hi Peter,
{Heap before GC invocations=57 (full 2):
PSYoungGen total 92608K, used 3420K [0x4c810000, 0x539d0000, 0x539d0000)
eden space 68736K, 0% used [0x4c810000,0x4c810000,0x50b30000)
from space 23872K, 14% used [0x50b30000,0x50e870d8,0x52280000)
to space 23680K, 0% used [0x522b0000,0x522b0000,0x539d0000)
PSOldGen total 233024K, used 223779K [0x139d0000, 0x21d60000, 0x4c810000)
object space 233024K, 96% used [0x139d0000,0x21458c70,0x21d60000)
PSPermGen total 48128K, used 48096K [0x039d0000, 0x068d0000, 0x139d0000)
object space 48128K, 99% used [0x039d0000,0x068c83e8,0x068d0000)
Heap after GC invocations=57 (full 2):
PSYoungGen total 92608K, used 0K [0x4c810000, 0x539d0000, 0x539d0000)
eden space 68736K, 0% used [0x4c810000,0x4c810000,0x50b30000)
from space 23872K, 0% used [0x50b30000,0x50b30000,0x52280000)
to space 23680K, 0% used [0x522b0000,0x522b0000,0x539d0000)
PSOldGen total 233024K, used 143258K [0x139d0000, 0x21d60000, 0x4c810000)
object space 233024K, 61% used [0x139d0000,0x1c5b6a80,0x21d60000)
PSPermGen total 83200K, used 48096K [0x039d0000, 0x08b10000, 0x139d0000)
object space 83200K, 57% used [0x039d0000,0x068c83e8,0x08b10000)
}
{Heap before GC invocations=58 (full 2):
PSYoungGen total 92608K, used 68736K [0x4c810000, 0x539d0000, 0x539d0000)
eden space 68736K, 100% used [0x4c810000,0x50b30000,0x50b30000)
from space 23872K, 0% used [0x50b30000,0x50b30000,0x52280000)
to space 23680K, 0% used [0x522b0000,0x522b0000,0x539d0000)
PSOldGen total 233024K, used 143258K [0x139d0000, 0x21d60000, 0x4c810000)
object space 233024K, 61% used [0x139d0000,0x1c5b6a80,0x21d60000)
PSPermGen total 83200K, used 48361K [0x039d0000, 0x08b10000, 0x139d0000)
object space 83200K, 58% used [0x039d0000,0x0690a558,0x08b10000)
Heap after GC invocations=58 (full 2):
PSYoungGen total 89728K, used 8838K [0x4c810000, 0x53700000, 0x539d0000)
eden space 68928K, 0% used [0x4c810000,0x4c810000,0x50b60000)
from space 20800K, 42% used [0x522b0000,0x52b518c0,0x53700000)
to space 22336K, 0% used [0x50b60000,0x50b60000,0x52130000)
PSOldGen total 233024K, used 143258K [0x139d0000, 0x21d60000, 0x4c810000)
object space 233024K, 61% used [0x139d0000,0x1c5b6a80,0x21d60000)
PSPermGen total 83200K, used 48361K [0x039d0000, 0x08b10000, 0x139d0000)
object space 83200K, 58% used [0x039d0000,0x0690a558,0x08b10000)
}
09:13:43,000 WARN [ClassLoaderManager] Unexpected error during load of:oracle.security.jps.principals.JpsRole
java.lang.OutOfMemoryError
thanks
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4193665#4193665
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4193665
16 years
[JBoss Messaging] - Re: JBM 1.4.0sp3 cp04 bisocket parameters does not effect
by lanceliao1
I think there are some subtle mechanism.
JMSRemotingConnection public void start()
| Map config = new HashMap();
|
| config.put(Client.ENABLE_LEASE, String.valueOf(clientPing));
|
| if (serverLocator.getParameters().containsKey(MicroSocketClientInvoker.MAX_POOL_SIZE_FLAG))
| {
| throw new IllegalArgumentException("Invalid remoting configuration - do not specify clientMaxPoolSize" +
| " use " + JBM_MAX_POOL_SIZE_KEY +" instead");
| }
|
| if (!serverLocator.getProtocol().equals("http") & !serverLocator.getProtocol().equals("https"))
| {
| String val = (String)serverLocator.getParameters().get(JBM_MAX_POOL_SIZE_KEY);
|
| if (val == null)
| {
| log.warn(JBM_MAX_POOL_SIZE_KEY + " not specified - defaulting to 200");
|
| val = "200";
| }
|
| config.put(MicroSocketClientInvoker.MAX_POOL_SIZE_FLAG, val);
| }
|
| client = new Client(serverLocator, config);
|
| client.setSubsystem("JMS");
|
The method only set a few parameters of remoting,the Map config used as configuration of Client.
The ConnectionValidator only use this map to set parameters,so it does not work.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4193655#4193655
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4193655
16 years