Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suborbital/grav
Embedded decentralized message bus
https://github.com/suborbital/grav
beta message-bus
Last synced: about 1 month ago
JSON representation
Embedded decentralized message bus
- Host: GitHub
- URL: https://github.com/suborbital/grav
- Owner: suborbital
- License: apache-2.0
- Created: 2020-07-03T18:55:54.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-07T00:20:57.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T01:25:20.923Z (4 months ago)
- Topics: beta, message-bus
- Language: Go
- Homepage:
- Size: 1.84 MB
- Stars: 103
- Watchers: 11
- Forks: 8
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Changelog: changelogs/v0.3.3.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-repositories - suborbital/grav - Embedded decentralized message bus (Go)
README
## Grav has been deprecated. You can use the new [bus package](https://github.com/suborbital/e2core/tree/main/bus), which is a drop-in continuation of this project. You can find the [docs](https://github.com/suborbital/grav/docs) for this deprecated project in this repo.
Grav is an embedded distributed messaging library for Go applications. Grav allows interconnected components of your system to communicate effectively in a reliable, asynchronous manner. HTTP and RPC are hard to scale well in modern distributed systems, so we created Grav to add a performant and resilient messaging system to various distributed environments.
Grav's main purpose is to act as a flexible abstraction that allows your application to discover and communicate using a variety of protocols without needing to re-write any code.
Grav messages can be sent in-process (such as between Goroutines), or to other nodes via **transport plugins** such as [Websocket](./transport/websocket/README.md) and [NATS](./transport/nats/README.md). Transport plugins extend the core Grav bus to become a networked distributed messaging system. Grav nodes can also be configured to automatically discover each other using **discovery plugins**. Grav can operate as a decentralized mesh or integrate with centralized streaming platforms, making it extremely flexible.
Copyright Suborbital Contributors 2021.