-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add maven profiles for Infinispan 14 (#131)
* feat: add maven profiles for Infinispan 14 * feat: bump ISPN version to 14.0.14.Final * fix: unknown enum constant warning Without this dependency a warning occurs during the build process. * docs: describe how to use a different ISPN version Without this dependency a warning occurs during the build process.
- Loading branch information
Showing
10 changed files
with
374 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
35 changes: 35 additions & 0 deletions
35
vertx-infinispan/src/main/resources/default-infinispan-14.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
~ Copyright 2022 Red Hat, Inc. | ||
~ | ||
~ Red Hat licenses this file to you under the Apache License, version 2.0 | ||
~ (the "License"); you may not use this file except in compliance with the | ||
~ License. You may obtain a copy of the License at: | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
~ License for the specific language governing permissions and limitations | ||
~ under the License. | ||
--> | ||
|
||
<infinispan xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="urn:infinispan:config:14.0 http://www.infinispan.org/schemas/infinispan-config-14.0.xsd" | ||
xmlns="urn:infinispan:config:14.0"> | ||
|
||
<jgroups> | ||
<stack-file name="jgroups" path="tcp.xml"/> | ||
</jgroups> | ||
|
||
<cache-container default-cache="distributed-cache"> | ||
<transport stack="jgroups"/> | ||
<distributed-cache name="distributed-cache"/> | ||
<replicated-cache name="__vertx.subs"/> | ||
<replicated-cache name="__vertx.haInfo"/> | ||
<replicated-cache name="__vertx.nodeInfo"/> | ||
<distributed-cache-configuration name="__vertx.distributed.cache.configuration"/> | ||
</cache-container> | ||
|
||
</infinispan> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<!-- | ||
~ Copyright 2022 Red Hat, Inc. | ||
~ | ||
~ Red Hat licenses this file to you under the Apache License, version 2.0 | ||
~ (the "License"); you may not use this file except in compliance with the | ||
~ License. You may obtain a copy of the License at: | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
~ License for the specific language governing permissions and limitations | ||
~ under the License. | ||
--> | ||
|
||
<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-5.2.xsd"> | ||
<!-- jgroups.tcp.address is deprecated and will be removed, see ISPN-11867 --> | ||
<TCP bind_addr="${jgroups.bind.address,jgroups.tcp.address:SITE_LOCAL}" | ||
bind_port="${jgroups.bind.port,jgroups.tcp.port:7800}" | ||
thread_naming_pattern="pl" | ||
send_buf_size="640k" | ||
sock_conn_timeout="300" | ||
bundler_type="transfer-queue" | ||
|
||
thread_pool.min_threads="${jgroups.thread_pool.min_threads:0}" | ||
thread_pool.max_threads="${jgroups.thread_pool.max_threads:200}" | ||
thread_pool.keep_alive_time="60000" | ||
/> | ||
<FILE_PING location="${jgroups.file.location}" | ||
register_shutdown_hook="false" | ||
/> | ||
<MERGE3 min_interval="10000" | ||
max_interval="30000" | ||
/> | ||
<FD_SOCK/> | ||
<!-- Suspect node `timeout` to `timeout + timeout_check_interval` millis after the last heartbeat --> | ||
<FD_ALL timeout="10000" | ||
interval="2000" | ||
timeout_check_interval="1000" | ||
/> | ||
<VERIFY_SUSPECT timeout="1000"/> | ||
<pbcast.NAKACK2 use_mcast_xmit="false" | ||
xmit_interval="200" | ||
xmit_table_num_rows="50" | ||
xmit_table_msgs_per_row="1024" | ||
xmit_table_max_compaction_time="30000" | ||
resend_last_seqno="true" | ||
/> | ||
<UNICAST3 conn_close_timeout="5000" | ||
xmit_interval="200" | ||
xmit_table_num_rows="50" | ||
xmit_table_msgs_per_row="1024" | ||
xmit_table_max_compaction_time="30000" | ||
/> | ||
<pbcast.STABLE desired_avg_gossip="5000" | ||
max_bytes="1M" | ||
/> | ||
<pbcast.GMS print_local_addr="false" | ||
join_timeout="${jgroups.join_timeout:2000}" | ||
/> | ||
<UFC max_credits="4m" | ||
min_threshold="0.40" | ||
/> | ||
<MFC max_credits="4m" | ||
min_threshold="0.40" | ||
/> | ||
<FRAG3/> | ||
</config> |
Oops, something went wrong.