Created
March 5, 2019 13:03
-
-
Save tristantarrant/4cbc7166a5e4c784370c69a1b45cd6da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <infinispan | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="urn:infinispan:config:10.0 http://www.infinispan.org/schemas/infinispan-config-10.0.xsd | |
| urn:org:jgroups http://www.jgroups.org/schema/jgroups-4.0.xsd" | |
| xmlns="urn:infinispan:config:10.0" | |
| xmlns:ispn="urn:infinispan:config:10.0"> | |
| <jgroups> | |
| <!-- Inline our own JGroups stack --> | |
| <stack name="mping"> | |
| <TCP bind_port="7800" port_range="30" recv_buf_size="20000000" send_buf_size="640000" | |
| sock_conn_timeout="300" bundler_type="no-bundler" | |
| thread_pool.min_threads="0" thread_pool.max_threads="25" thread_pool.keep_alive_time="5000" | |
| xmlns="urn:org:jgroups"/> | |
| <MPING bind_addr="127.0.0.1" break_on_coord_rsp="true" | |
| mcast_addr="${jgroups.mping.mcast_addr:228.2.4.6}" | |
| mcast_port="${jgroups.mping.mcast_port:43366}" | |
| ip_ttl="${jgroups.udp.ip_ttl:2}" | |
| xmlns="urn:org:jgroups"/> | |
| <MERGE3 xmlns="urn:org:jgroups"/> | |
| <FD_SOCK xmlns="urn:org:jgroups"/> | |
| <FD_ALL timeout="3000" | |
| interval="1000" | |
| timeout_check_interval="1000" | |
| xmlns="urn:org:jgroups" | |
| /> | |
| <VERIFY_SUSPECT timeout="1000" xmlns="urn:org:jgroups"/> | |
| <pbcast.NAKACK2 | |
| use_mcast_xmit="false" | |
| xmit_interval="100" | |
| xmit_table_num_rows="50" | |
| xmit_table_msgs_per_row="1024" | |
| xmit_table_max_compaction_time="30000" | |
| xmlns="urn:org:jgroups"/> | |
| <UNICAST3 | |
| xmit_interval="100" | |
| xmit_table_num_rows="50" | |
| xmit_table_msgs_per_row="1024" | |
| xmit_table_max_compaction_time="30000" | |
| xmlns="urn:org:jgroups" | |
| /> | |
| <RSVP xmlns="urn:org:jgroups"/> | |
| <pbcast.STABLE stability_delay="200" | |
| desired_avg_gossip="2000" | |
| max_bytes="1M" | |
| xmlns="urn:org:jgroups" | |
| /> | |
| <pbcast.GMS print_local_addr="false" | |
| join_timeout="${jgroups.join_timeout:2000}" | |
| xmlns="urn:org:jgroups"/> | |
| <MFC max_credits="2M" min_threshold="0.40" xmlns="urn:org:jgroups"/> | |
| <FRAG3 xmlns="urn:org:jgroups"/> | |
| </stack> | |
| </jgroups> | |
| <cache-container name="clustered"> | |
| <!-- Use the stack --> | |
| <transport cluster="cluster" stack="mping"/> | |
| ... | |
| </cache-container> | |
| </infinispan> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment