1 Reply Latest reply on Jan 14, 2014 6:42 AM by pruivo

    Clusterning infinispan nodes

    anky

      Hi All,

       

      I am trying to create the 3 nodes cluster and following the source code available on link https://github.com/infinispan/infinispan-quickstart/tree/master/clustered-cache  but the nodes are not able to communicate with each other.

       

      We are using the 6.0 version of infinispan.

       

      Below is the jgroups.xml file:

       

      <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.4.xsd">

         <UDP

               mcast_addr="${jgroups.udp.mcast_addr:224.0.0.1}"

               mcast_port="${jgroups.udp.mcast_port:8661}"

               tos="8"

               ucast_recv_buf_size="20m"

               ucast_send_buf_size="640k"

               mcast_recv_buf_size="25m"

               mcast_send_buf_size="640k"

               loopback="true"

               max_bundle_size="64k"

               ip_ttl="${jgroups.udp.ip_ttl:2}"

               enable_diagnostics="false"

               thread_naming_pattern="pl"

               thread_pool.enabled="true"

               thread_pool.min_threads="2"

               thread_pool.max_threads="30"

               thread_pool.keep_alive_time="5000"

               thread_pool.queue_enabled="false"

               thread_pool.queue_max_size="100"

               thread_pool.rejection_policy="Discard"

               oob_thread_pool.enabled="true"

               oob_thread_pool.min_threads="2"

               oob_thread_pool.max_threads="30"

               oob_thread_pool.keep_alive_time="5000"

               oob_thread_pool.queue_enabled="false"

               oob_thread_pool.queue_max_size="100"

               oob_thread_pool.rejection_policy="Discard"

               />

         <PING timeout="3000" num_initial_members="2"/>

         <MERGE2 max_interval="30000" min_interval="10000"/>

         <FD_SOCK/>

         <FD_ALL/>

         <BARRIER />

         <pbcast.NAKACK2

                 use_mcast_xmit="true"

                 discard_delivered_msgs="true"/>

         <UNICAST3/>

         <pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000" max_bytes="1000000"/>

         <pbcast.GMS print_local_addr="false" join_timeout="3000" view_bundling="true"/>

         <UFC max_credits="2m" min_threshold="0.40"/>

         <MFC max_credits="2m" min_threshold="0.40"/>

         <FRAG2 frag_size="60k" />

      </config>

       

      Regards,

      Ankit Jain