Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dinstone/meshgrid
Meshgrid is a service mesh implement that is based on Vert.x
https://github.com/dinstone/meshgrid
Last synced: about 1 month ago
JSON representation
Meshgrid is a service mesh implement that is based on Vert.x
- Host: GitHub
- URL: https://github.com/dinstone/meshgrid
- Owner: dinstone
- Created: 2018-02-23T12:09:52.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-02-11T00:24:23.000Z (almost 3 years ago)
- Last Synced: 2023-05-18T07:48:08.013Z (over 1 year ago)
- Language: Java
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Meshgrid
Meshgrid is a service mesh implement that is based on Vert.x# what' the service mesh mean?
![image](https://github.com/dinstone/vertx-mesh/wiki/images/mesh.png)# How to start?
## start vertx-mesh
```
java -Dconfig.file=config.json com.dinstone.meshgrid.mesher.Activator
java -Dconfig.file=config-7074.json com.dinstone.meshgrid.mesher.Activator
```## register service to vertx-mesh
create service 'magnet' and endpoint on localhost:8988, then register service to vertx-mesh by admin endpoint(localhost:8888/upline).
```
curl --request GET --url 'http://localhost:8888/upline?service-name=magnet.online&service-port=8988&service-health=/info'
```## invoke service 'magnet' by vertx-mesh
api pattern:
```
curl --request GET --url 'http://localhost:7070/magnet.online/info'
```proxy pattern:
```
curl --request GET --url 'http://localhost:7474/info' --header 'host: magnet.online'
```