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: README.md
+46-88Lines changed: 46 additions & 88 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,48 +67,6 @@ This section of the guide will show you the steps to deploy EventMesh from [Loca
67
67
68
68
This section guides the launch of EventMesh according to the default configuration, if you need more detailed EventMesh deployment steps, please visit the [EventMesh official document](https://eventmesh.apache.org/docs/introduction).
69
69
70
-
### Deployment Event Store
71
-
72
-
> EventMesh supports [multiple Event Stores](https://eventmesh.apache.org/docs/roadmap#event-store-implementation-status), the default storage mode is `standalone`, and does not rely on other event stores as layers.
73
-
74
-
### Run EventMesh Runtime locally
75
-
76
-
#### 1. Download EventMesh
77
-
78
-
Download the latest version of the Binary Distribution from the [EventMesh Download](https://eventmesh.apache.org/download/) page and extract it:
Creating a topic is the first step in using EventMesh. You need to send an HTTP POST request to create a topic.
87
+
Example Request
137
88
```shell
138
-
cd logs
139
-
tail -n 50 -f eventmesh.out
140
-
```
141
-
142
-
### Run EventMesh Runtime in Kubernetes
143
-
144
-
#### 1. Deploy operator
145
-
146
-
Run the following commands(To delete a deployment, simply replace `deploy` with `undeploy`):
147
-
148
-
```shell
149
-
$ cd eventmesh-operator && make deploy
89
+
POST /eventmesh/topic/create HTTP/1.1
90
+
Host: localhost:10105
91
+
Content-Type: application/json
92
+
93
+
{
94
+
"topic": "example-topic"
95
+
}
150
96
```
151
-
152
-
Run `kubectl get pods` 、`kubectl get crd | grep eventmesh-operator.eventmesh`to see the status of the deployed eventmesh-operator.
97
+
#### 4. Subscribing to Topics
98
+
After creating a topic, you can subscribe to it to receive messages. EventMesh provides two subscription methods: local subscription and remote subscription.
[](https://github.com/apache/eventmesh/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22)[](https://github.com/apache/eventmesh/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22)[](https://github.com/apache/eventmesh/pulls?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22)[](https://github.com/apache/eventmesh/issues?q=is%3Aopen)
0 commit comments