English 中文(简体)
关于从定义组别中删除一条子的例外情况
原标题:Getting exception on removal of a node from the infinispan cluster

在试图从我使用jgroups作为运输的有限组群中删除一条标语时,我正在获得以下例外。

org.infinispan.remoting.transport.jgroups.SuspectException: One or more nodes have left the cluster while replicating command CacheViewControlCommand

at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:232)
at java.util.concurrent.FutureTask.get(FutureTask.java:91)
at org.infinispan.cacheviews.CacheViewsManagerImpl.clusterPrepareView(CacheViewsManagerImpl.java:299)
at org.infinispan.cacheviews.CacheViewsManagerImpl.clusterInstallView(CacheViewsManagerImpl.java:244)
at org.infinispan.cacheviews.CacheViewsManagerImpl$ViewInstallationTask.call(CacheViewsManagerImpl.java:815)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)

and this exception keeps getting printed by all the live nodes for ever.

How can i fix this issue?

提前感谢。

问题回答




相关问题
Communication between 2 nodes in a cluster

I am trying to figure out how this will work out: client-server communication via NIO/BIO Server-server communication (replication, membership etc) via JGroups (replication of data can be a pain?) ...

JGroups, TCP_NIO multiple messages sent to nowhere

Messages sent to ports I never specified in my configuration file. this is my config: [10-Jan-2011 11:02:22.917 GMT] ERROR org.jgroups.protocols.TCP_NIO - failed sending message to 192.168.50.41:...

JGroups equivalent library in C++

at work we have been using JGroups and I have to say that I really like it, however, at home I primarily build with C/C++. I m wondering if anyone knows of any good/solid ports of JGroups to C++ or ...

How does Jgroup on UDP become reliable?

In my mind, UDP is fast but not reliable, and in a lot of places jgroup is based on UDP, is that reliable? I saw a lot of places use jgroup to transfer caching information. Does jgroup have to use TCP ...

JAVA 1.5 in OSX 10.6.4

I am trying to debug a j2ee application in tomcat using Intellij Idea in an OS X 10.6.4 system. I need it specifically to run over a 1.5 JVM and 1.5 JDK so that the jgroups-all component doesn t crash ...

JBoss 4.2.2 nodes start to cluster then suspect each other

I have a website running with JBoss 4.2.2 on an existing Red Hat server. I m setting up a second server so as to have a clustered pair (which will then be load-balanced). However, I can t get them to ...

JGroups eating memory

I currently have a problem with my jgroups configuration, causing thousands of messages getting stuck in the NAKACK.xmit_table. Actually all of them seem to end up in the xmit_table, and a another ...

How Fast Might RMI Be?

I have seen the question: Communication between two separate Java desktop applications (answer: JGroups) and I m thinking about implementing something with JavaGroups or straight RMI but speed is of ...

热门标签