2

尝试在 Amazon EC2 上的 2 个 JBoss 4.2 服务器之间创建基于 EHCache RMI 的缓存复制。目前,这被设置为手动对等发现,从 Server2 到 Server1 的单向复制。

配置如下:

服务器 1

<cacheManagerPeerProviderFactory
   class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
   properties="peerDiscovery=manual"/>

<cacheManagerPeerListenerFactory
   class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
   properties="hostName=host1, port=40001,  
                     socketTimeoutMillis=3000"/>

<cache name="cache1"
        maxElementsInMemory="0"
        eternal="false"
        overflowToDisk="true"
        timeToIdleSeconds="600"
        timeToLiveSeconds="600"
        diskPersistent="true"
        diskExpiryThreadIntervalSeconds="60"
        statistics="true">
        <cacheEventListenerFactory
                          class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
                          properties="replicatePuts=false, replicateUpdates=false, 
                replicateRemovals=false"/>
</cache>

服务器 2

<cacheManagerPeerProviderFactory
   class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
   properties="peerDiscovery=manual,
             rmiUrls=//host1:40001/cache1"/>

<cacheManagerPeerListenerFactory
   class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
   properties="hostName=host2, port=40002,  
                     socketTimeoutMillis=3000"/>

<cache name="cache1"
        maxElementsInMemory="0"
        eternal="false"
        overflowToDisk="false"
        timeToIdleSeconds="7200"
        timeToLiveSeconds="7200">
        <cacheEventListenerFactory
                          class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
                          properties="replicateAsynchronously=false"/>
    </cache>

但是,当我将新元素放入 Server2 上的缓存时,它会引发以下异常:

Jul 10, 2012 3:25:37 PM net.sf.ehcache.distribution.RMISynchronousCacheReplicator replicatePutNotification
SEVERE: Exception on replication of putNotification. no such object in table. Continuing...
java.rmi.NoSuchObjectException: no such object in table
          at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:255)
          at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:233)
          at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:142)
          at net.sf.ehcache.distribution.RMICachePeer_Stub.put(Unknown Source)
          at net.sf.ehcache.distribution.RMISynchronousCacheReplicator.replicatePutNotification(RMISynchronousCacheReplicator.java:149)
          at net.sf.ehcache.distribution.RMISynchronousCacheReplicator.notifyElementPut(RMISynchronousCacheReplicator.java:132)
          at net.sf.ehcache.event.RegisteredEventListeners.notifyListener(RegisteredEventListeners.java:294)
          at net.sf.ehcache.event.RegisteredEventListeners.invokeListener(RegisteredEventListeners.java:284)
          at net.sf.ehcache.event.RegisteredEventListeners.internalNotifyElementPut(RegisteredEventListeners.java:144)
          at net.sf.ehcache.event.RegisteredEventListeners.notifyElementPut(RegisteredEventListeners.java:122)
          at net.sf.ehcache.Cache.notifyPutInternalListeners(Cache.java:1515)
          at net.sf.ehcache.Cache.putInternal(Cache.java:1490)
          at net.sf.ehcache.Cache.put(Cache.java:1417)
          at net.sf.ehcache.Cache.put(Cache.java:1382)

我还尝试将 Server2 作为独立的 Java 程序(使用与上图所示相同的 ehcache.xml)而不是 JBoss 服务器。但只要 Server1 是 JBoss 服务器,我就会看到这个异常。

如果我在同一主机上部署 Server1 和 Server2(JBoss 或 Java 程序),效果会很好。但是,一旦我将它们移到不同的主机上,它就会死在我身上。

任何帮助将不胜感激。谢谢 ...

4

1 回答 1

0

java.rmi.NoSuchObjectException表示存根引用的对象当前未导出。它必须在某个时间被导出,否则将没有存根。可能它已经被垃圾收集了,首先是 DGC,然后是本地 GC。您可以通过在静态变量中保留对远程对象(nb 不是存根)的引用来防止这种情况发生。但似乎相关的远程对象不是您的,而是他们的,在这种情况下,您需要找到他们的错误报告系统。

于 2012-07-11T00:40:14.840 回答