2012-07-10 60 views
2

尝试在Amazon EC2上的两台JBoss 4.2服务器之间创建一个基于EHCache的基于RMI的缓存复制。目前,这被设置为手动对等发现,具有从Server2到Server1的单向复制。EHCache JBoss/EC2上的RMI复制抛出java.rmi.NoSuchObjectException:表中没有这样的对象

配置为下:

服务器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程序),它会很好用。但只要我将它们移到不同的主机上,它就会死在我身上。

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

回答

0

java.rmi.NoSuchObjectException意味着由存根引用的对象当前未导出。它必须在某个时间出口,否则不会有残余物。可能它已被垃圾收集,首先是DGC,然后是本地GC。您可以通过在静态变量中引用远程对象(nb而非存根)来防范这种情况。但是,似乎有关的远程对象不是你们中的一员,而是他们中的一员,在这种情况下,你需要找到他们的错误报告系统。

相关问题