forked from redhat-developer/reactive-microservices-in-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5b9482
commit e44d54e
Showing
1 changed file
with
13 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Vert.x Cluster Configuration | ||
|
||
By default, the Vert.x cluster manager based on Infinispan uses _multicast_. If your network does not support | ||
_multicast_, you can configure Infinispan to use another discovery protocol such as _unicast_. | ||
|
||
Infinispan is based on _JGroups_, and to configure the discovery, you must provide a `jgroups.xml` file in the | ||
application `CLASSPATH`. | ||
|
||
The `jgroups.xml` file available in this directory is configured to use _unicast_ on 127.0.0.1. You will only | ||
discover applications running on the same machine. To use this configuration, just copy the file to the | ||
`src/main/resources` directory of your source code. | ||
|
||
|