Varadhi is the open source version of a similar FK internal project, a message bus implementation with a REST interface. Varadhi supports both P2P (point-to-point) and Publish-Subscribe messaging models. The idea behind RESTBus is to take your HTTP API stack and automatically transform them into service bus driven, queue/pub-sub, message oriented endpoints. The communication between Varadhi and endpoints will be on HTTP.
Varadhi is in active development and has been in production since last 10 years inside Flipkart as the backbone of async REST communication between various microservices sending billions of messages daily.
With Varadhi we hope others would be able to benefit from our learnings of a decade.
See the Wiki for concepts, use cases, architecture details, API spec and other detailed information.
./gradlew build
To provide the required functionality Varadhi takes a dependencies on various tech stack. Current development environment supports below option for these.
Run the following to start the below dependencies.
docker compose -f setup/docker/compose.yml -p docker --profile dev up -d
OR
Start Dev, start pulsar and zk IntelliJ run profile.
Varadhi needs a message broker for message persistence and delivery. Apache Pulsar is used as underlying message broker. For the development environment users can use containerised Pulsar in a standalone mode. Details can be found here.
For storing metadata about various Varadhi entities, a datastore is needed. Zookeeper is used as global datastore to persist json formatted entities. For the development environment, containerised Zookeeper can be used in a standalone mode. Details can be found here.
To run the Varadhi server execute below from repo root.
./gradlew run --args="src/main/resources/configuration.yml
OR
Start varadhi local [run] IntelliJ run profile.
- entities: It has all the entities used by the spi module and varadhi apis.
- spi: It has all the interfaces related to persistence and messaging.
- pulsar: It contains messaging-spi implementation using Apache Pulsar.
- core: It contains all the core logic of
Varadhi
and is relied upon by various other sub-modules. - server: It is the entry point of
Varadhi
. It houses all server related logic and binds together all other modules.
[ TBD ]
Status: Initial Review Completed.
See the Wiki page Roadmap for details.
[ TBD ]
Refer to Contributing.
You can also reachout to [email protected] or [email protected].
[ TBD ]
Effective Failure Handling in Flipkart’s Message Bus
Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0