Inifnispan服务器停止响应(接近缓存配置,群集环境,客户端服务器配置)

时间:2017-06-08 14:30:33

标签: caching infinispan

我们在使用应用程序的每个群集节点测试100个并发活动会话的应用程序时,一直面临infinispan服务器问题。

Infinispan服务器配置。

具有两个节点的两个域 Near Cache配置为INVALIDATE类型,没有最大条目限制。 我们的应用程序也有两个集群节点。 Infinispan版本:8.2.3

我们在infinispan服务器中发现错误:

2017-06-08 18:49:18,464 DEBUG [org.infinispan.server.hotrod.HotRodExceptionHandler] (HotRodServerWorker-8-7) Exception caught: java.io.IOException: An existing connection was forcibly closed by the remote host
  at sun.nio.ch.SocketDispatcher.read0(Native Method)
  at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
  at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
  at sun.nio.ch.IOUtil.read(IOUtil.java:192)
  at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380)
  at io.netty.buffer.PooledUnsafeDirectByteBuf.setBytes(PooledUnsafeDirectByteBuf.java:221)
  at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:898)
  at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:242)
  at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
  at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:528)
  at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:485)
  at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:399)
  at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:371)
  at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:112)
  at io.netty.util.concurrent.DefaultThreadFactory$DefaultRunnableDecorator.run(DefaultThreadFactory.java:137)
  at java.lang.Thread.run(Thread.java:745)

收到此错误后,我们尝试使用infinispan服务器禁用近缓存。该配置使事情正确,但它也导致非常慢的性能,这是不可接受的,因为我们使用infinispan服务器仅用于性能目的。

我们使用Infinispan创建缓存容器的模板

  <distributed-cache-configuration name="OurTempateName" owners="2" segments="20" mode="SYNC" remote-timeout="30000" start="EAGER">
                    <locking striping="false" acquire-timeout="30000" concurrency-level="1000"/>
                    <transaction mode="NONE"/>
                    <security/>
                </distributed-cache-configuration>

使用客户端服务器infinispan设置,任何人都可以建议可以解决此问题的配置吗?

1 个答案:

答案 0 :(得分:0)

如果您看到此类消息,则可能表示客户端存在问题。您是否查看过客户端日志?