我有两个服务器需要执行http会话群集和缓存。每个服务器都有需要共享会话的服务器节点。但是,在形成集群的过程中,经常会发生以下情况:每个服务器无法获取另一台服务器的正确节点名称,并显示一组随机字母和数字。就像这样:

2019-11-13 00:28:32,973信息[org.infinispan.remoting.transport.jgroups.JGroupsTransport] ISPN000094:收到了新的群集视图:[12dshost10-14444 | 11](12)[12dshost10-14444、12dhost10-27717, b5f9d81c-046d-bbc5-7de0-0fe99cce2e53,ce824896-df27-fef0-5872-857335dd9ce0,aeec4fab-e57d-2e99-3e06-834c998ee897,b857e4c0-abe4-e989-bc4c-2ab05b9ca2fa5d60a2fa8d6a6a2f3d3d3f0f3d6f0f6d0f0f0f0f0f0f0f0f0f0f0f0f0e 12dshost11-28633、12dshost10-24663、12dshost10-3048、12dshost10-14948、12dshost10-47369]

在这种情况下,“ 12dshost10”表示本地服务器,其所有节点名称均正确,“ 12dshost11”表示远程服务器,其他异常节点名称实际上来自12dshost11。”我不知道为什么它们会变成这个。

在这种情况下,该集群无法正常工作,当涉及到会话缓存过程时,这些异常节点总是在等待15秒后才会抛出TimeoutException,似乎无法与这些异常节点进行通信。在这段时间内,我的所有请求也将被阻止,直到引发异常。我阅读了infinispan的教程,但是没有找到使会话缓存异步的方法,也没有找到为什么出现这些异常节点的方法。有人有这样的问题吗?

这是我对infinispan和缓存的配置。

<infinispan>
<global>
   <transport>
       <properties>
            <property name="configurationFile" value="cache-web-session-jgroups.xml"/>
            <property name="channelLookup" value="com.wjw.aos.cache.impl.infinispan.InfinispanJGroupsChannelLookup"/>
        </properties>
    </transport>
    <globalJmxStatistics
        allowDuplicateDomains="true"
        enabled="true"
        jmxDomain="org.infinispan"
        cacheManagerName="SampleCacheManager"/>
</global>
<default>
    <clustering mode="replication">
        <sync/>
    </clustering>
    <jmxStatistics enabled="true"/>
</default>
<namedCache name="transactional-type">
    <transactional
        transactionManagerLookupClass="org.infinispan.transaction.lookup.JBossStandaloneJTAManagerLookup"
        syncRollbackPhase="true"
        syncCommitPhase="true"
        cacheStopTimeout="30000"
        uselPcForAutoCommitTransactions="true"
        autoCommit="true"
        lockingMode="OPTIMISTIC"
        useEagerLocking="true"
        useSynchronization="true"
        transactionMode="TRANSACTIONAL"
        />
        <clustering mode="replication">
        <sync/>
        </clustering>
</namedCache>
</infinispan>


jgroups的配置如下。

<config xmlns="urn:org:jgroups"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance""
        xsi:schemaLocation="urn:org:jgroups http://www.jgroups.org/schema/JGroups-3.0.xsd">
    <TCP loopback="true"
        bind_addr="$(cache.websessions.jgroups.bind.ip)"
        bind_port="$(cache.websessions.jgroups.bind.port)"
        recv_buf_size="20M"
        send_buf_size"640k"
        discard_incompatible_packets="true"
        max_bundle_size="64K"
        max_bundle_timeout="2=300"
        timer_type="new"
        timer.min_threads="4"
        timer.max_threads="10"
        timer.keep_alive_time="3000"
        timer.queue_max_size="500"
        thread_pool.enabled="true"
        thread_pool.min_threads="2"
        thread_pool.max_threads="30"
        thread_pool.keep_alive_time="60000"
        thread_pool.queue_enabled="false"
        thread_pool.queue_max_size="100"
        thread_pool.rejection_policy="discard"
        oob_thread_pool.min_threads="2"
        oob_thread_pool.max_threads="30"
        oob_thread_pool.keep_alive_time="60000"
        oob_thread_pool.queue_enabled="false"
        oob_thread_pool.queue_max_size="100"
        oob_thread_pool.rejection_policy="discard"/>
    <TCPGOSSIP initial_hosts="$(cache.websession.jgroups.members)"/>
    <MERGE2 max_interval="30000" min_interval="10000"/>
    <FD_SOCK/>
    <FD timeout=3000" max_tries="3"/>
    <VERIFY_SUSPECT timeout="1500"/>
    <pbcast.NAKACK
        use_mcast_xmit="false"
        retransmit_timeout="300,600,1200,2400,4800"
        discard_delivered_msgs="false"/>
    <UNICAST2 timeout="300,600,1200"
              stable_interval="5000"
              max_bytes="1m"/>
    <pbcast.STABLE stability_delay="500" desired_avg_gossip="5000" max_bytes="1m"/>
    <pbcast.GMS print_local_addr="false" join_timeout="3000" view_bundling="true"/>
    <UFC max_credits="200k" min_threshold="0.20"/>
    <MFC max_credits="200k" min_threshold="0.20"/>
    <FRAG2 frag_size="60000"/>
    <RSVP timeout="60000" resend_interval="500" ack_on_delivery="false"/>
</config>

最佳答案

这看起来像是Infinispan的真正古老版本。您不能考虑升级吗?

关于java - 使用infinispan进行HTTP session 群集和缓存时,经常会发生TimeoutException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58891034/

10-10 17:50