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
Once you have an up and running EventMesh server with `DiscoveryConfigFile` plugin enabled, you can use the CLI to update the list of active peers for one specific EventMesh server.
Copy file name to clipboardExpand all lines: docs/documentation/eventmesh/plugins.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
EventMesh server supports plugins. Plugins extend core functionality in a variety of ways:
4
4
* Support more protocols.
5
5
* Support more sink connectors. A sink connector consumes records from an event store or message broker and stream the data events to the EventMesh server.
6
+
* Support more discovery methods. To form a cluster, new nodes need to be able to discover their peers.
6
7
7
8
## Install a plugin
8
9
@@ -12,6 +13,7 @@ A plugin can manually be installed :
12
13
3. Based on the nature of the plugin, move the folder into the appropriate sub-folder of the local EventMesh server.
13
14
* If the plugin supports an additional protocol then the sub-folder is `protocolPlugins`.
14
15
* If the plugin supports a new sink connector then the sub-folder is `sinkPlugins`.
16
+
* If the plugin supports an additional discovery method then the sub-folder is `discoveryPlugins`.
15
17
16
18
## Enable a plugin
17
19
@@ -53,4 +55,6 @@ The table below lists plugins
53
55
|[ProtocolWebsocket](pluginwebsocket.md)| protocolPlugins | Support WebSocket protocol |
54
56
|[SinkAMQP](pluginsinkamqp.md)| sinkPlugins | Consume records from AMQP server |
55
57
|[SinkKafka](pluginsinkkafka.md)| sinkPlugins | Consume records from KAFKA server |
56
-
|[SinkVpnBridge](pluginsinkvpnbridge.md)| sinkPlugins | Consume records from Virtual Private Network bridge |
58
+
|[SinkVpnBridge](pluginsinkvpnbridge.md)| sinkPlugins | Consume records from Virtual Private Network bridge |
59
+
|[DiscoveryConfig](plugindiscoveryconfig.md)| discoveryPlugins | Use configuration file to discover peers |
60
+
|[DiscoveryEtcd](plugindiscoveryetcd.md)| discoveryPlugins | Use etcd to discover peers |
0 commit comments