We have the same issues with Jboss/JMS
We're running a clustered JBoss application on JBoss 4.0.4 and java1.5
We have a log4j appender that logs the messages to JMS queue. The messages are consumed by MDB.
I've used "jconsole" and noticed that each time the JMS message is sent to HA-JMS queue the number of threads is increased. The "ReadTask"/"WriteTask" is started and never ends. It looks like it has a "wait" call inside. So we end with too many threads and OutOfMemoryError on Linux based server.
Is it a known bug ? Does somebody know what is workaround?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050920#4050920
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4050920
I am no maven expert or anything, but I think you want to change this dependency:
<dependency>
| <groupId>jgroups</groupId>
| <artifactId>jgroups-all</artifactId>
| <version>2.5.0-BETA2</version>
| <exclusions>
| <exclusion>
| <artifactId>bsh</artifactId>
| <groupId>bsh</groupId>
| </exclusion>
| </exclusions>
| </dependency>
To:
<dependency>
| <groupId>jgroups</groupId>
| <artifactId>jgroups</artifactId>
| <version>2.5.0-BETA2</version>
| <exclusions>
| <exclusion>
| <artifactId>bsh</artifactId>
| <groupId>bsh</groupId>
| </exclusion>
| </exclusions>
| </dependency>
I.e., change artifactId from 'jgroups-all' to just 'jgroups'.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050913#4050913
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4050913
Hi everyone,
i am facing a peculair problem.
I have a PD
start ->taksNode1 -> taskNode2 -> taskNode3 -> end-State
when i run the folowing code ,
println(instance.getRootToken().getNode().getName());
instance.signal();
println(instance.getRootToken().getNode().getName());
it prints
start
end-state
in test case doing a signal on the instance takes it to taskNode1.
any idea what is happening or what i might be doing wrong..
-Vipul
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050912#4050912
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4050912