You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/documentation/eventmesh/clustering.md
+27-3Lines changed: 27 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ To ensure fault tolerance, EventMesh replicates queues across peers using the [R
28
28
Data is divided into partitions. Each partition has a number of replicas. Among the replica set, a leader is determined by the raft protocol which takes in requests and performs all of the processing.
29
29
All other peers are passive followers. When the leader becomes unavailable, the followers transparently select a new leader.
30
30
31
-
Eah peer in the cluster my be both leader and follower at the same time of different partitions.
31
+
Each peer in the cluster may be both leader and follower at the same time of different partitions.
32
32
33
33
In EventMesh, the partition key corresponds to the `groupId` or the `topic` name
34
34
@@ -42,11 +42,35 @@ An EventMesh cluster can be formed in a number of ways :
42
42
* Using etcd-based discovery (via a plugin).
43
43
* Using in-memory list on nodes (enabled by default).
44
44
45
-
In order to have an up and running cluster one plugin must be enabled.
45
+
In order to have an up and running cluster one of the plugin above must be enabled.
46
46
For more information please refer to the `Plugins` chapter.
47
47
48
48
# Quick start
49
49
50
50
In this tutorial, we are going to install two EventMesh servers with the plugin `DiscoveryEtcd` enabled via Docker.
Copy file name to clipboardExpand all lines: docs/documentation/eventmesh/pluginamqp.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,13 +20,13 @@ The ZIP file can be downloaded [here]().
20
20
| maxFrameSize | Largest frame size that the sending peer is able to accept on this connection. | 1000 |
21
21
| maxChannel | The channel-max value is the highest channel number that can be used on the connection | 1000 |
22
22
| sessionLinkCredit | Current maximum number of messages that can be handled at the receiver endpoint of the link | 255 |
23
-
| eventMeshVpn | EventMesh server VPN | default |
24
-
| eventMeshUrl | EventMesh server URL | localhost |
25
-
| eventMeshPort | EventMesh server Port | 4000 |
23
+
| eventMeshVpn | EventMesh peer VPN | default |
24
+
| eventMeshUrl | EventMesh peer URL | localhost |
25
+
| eventMeshPort | EventMesh peer Port | 4000 |
26
26
27
27
## Quick start
28
28
29
-
Once you have an up and running EventMesh server with `ProtocolAmqp` plugin enabled, you can start using any client compliant with the [AMQP 1.0 protocol](http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-complete-v1.0-os.pdf).
29
+
Once you have an up and running EventMesh peer with `ProtocolAmqp` plugin installed, you can start using any client compliant with the [AMQP 1.0 protocol](http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-complete-v1.0-os.pdf).
30
30
31
31
### Configure client and VPN
32
32
@@ -59,9 +59,9 @@ If the plugin is not yet configured, it can be enabled like this
0 commit comments