Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/streamnative/pulsar-recipes
A StreamNative library containing a collection of recipes that are implemented on top of the Pulsar client to provide higher-level functionality closer to the application domain.
https://github.com/streamnative/pulsar-recipes
apache-pulsar apachepulsar cookbook event-streaming messaging pubsub pulsar recipes
Last synced: 25 days ago
JSON representation
A StreamNative library containing a collection of recipes that are implemented on top of the Pulsar client to provide higher-level functionality closer to the application domain.
- Host: GitHub
- URL: https://github.com/streamnative/pulsar-recipes
- Owner: streamnative
- License: apache-2.0
- Created: 2022-07-28T16:39:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-29T21:48:37.000Z (about 1 year ago)
- Last Synced: 2024-11-14T20:53:55.570Z (about 1 month ago)
- Topics: apache-pulsar, apachepulsar, cookbook, event-streaming, messaging, pubsub, pulsar, recipes
- Language: Java
- Homepage:
- Size: 83 KB
- Stars: 11
- Watchers: 16
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Pulsar Recipes
[![Build](https://github.com/streamnative/pulsar-recipes/actions/workflows/pr-build-and-test.yml/badge.svg)](https://github.com/streamnative/pulsar-recipes/actions/workflows/pr-build-and-test.yml)
Authored by [StreamNative](https://streamnative.io), this is cookbook of varied use-cases built atop of Apache Pulsar. The purpose of this repository is to demonstrate how Apache
Pulsar primitives can be combined to produce useful and novel behaviours while benefiting from Pulsar's inherent
reliability and scalability.## Recipes
* [Long Running Tasks](long-running-tasks) — A distributed work queue for long-running tasks.
* [RPC](rpc) — A distributed RPC framework.## Build
Requirements:
* JDK 11
* Maven 3.8.6+Common build actions:
| Action | Command |
|---------------------------------|------------------------------------------|
| Full build and test | `mvn clean verify` |
| Skip tests | `mvn clean verify -DskipTests` |
| Skip Jacoco test coverage check | `mvn clean verify -Djacoco.skip` |
| Skip Checkstyle standards check | `mvn clean verify -Dcheckstyle.skip` |
| Skip Spotless formatting check | `mvn clean verify -Dspotless.check.skip` |
| Format code | `mvn spotless:apply` |
| Generate license headers | `mvn license:format` |## License
This library is licensed under the terms of the [Apache License 2.0](LICENSE) and may include packages written by third parties which carry their own copyright notices and license terms.
### About StreamNative
Founded in 2019 by the original creators of Apache Pulsar, [StreamNative](https://streamnative.io/) is one of the leading contributors to the open-source Apache Pulsar project. We have helped engineering teams worldwide make the move to Pulsar with [StreamNative Cloud](https://streamnative.io/product), a fully managed service to help teams accelerate time-to-production.