Horizon component for the delivery of eventMessages with deliveryType SSE.
Prerequisites • Building Pulsar • Configuration • Running Pulsar
Pulsar is a Horizon component that is responsible for the SSE delivery of event messages to customers that actively call the /sse REST endpoint together with their subscriptionId as path parameter.
Note: Pulsar is an essential part of the Horizon ecosystem. Please refer to documentation of the entire system to get the full picture.
For the optimal setup, ensure you have:
- A running instance of Kafka
- A running instance of MongoDB
./gradlew build
The default docker base image is azul/zulu-openjdk-alpine:21-jre
. This is customizable via the docker build arg DOCKER_BASE_IMAGE
.
Please note that the default helm values configure the kafka compression type snappy
which requires gcompat to be installed in the resulting image.
So either provide a base image with gcompat installed or change/disable the compression type in the helm values.
docker build -t horizon-pulsar:latest --build-arg="DOCKER_BASE_IMAGE=<myjvmbaseimage:1.0.0>" .
To simplify things, we have also added a mult-stage Dockerfile to the respository, which also handles the Java build of the application in a build container. The resulting image already contains "gcompat", which is necessary for Kafka compression.
docker build -t horizon-pulsar:latest . -f Dockerfile.multi-stage
Pulsar configuration is managed through environment variables. Check the complete list of supported environment variables for setup instructions.
Before you can run Pulsar locally you must have a running instance of Kafka and MongoDB locally or forwarded from a remote cluster.
After that you can run Pulsar in a dev mode using this command:
./gradlew bootRun
Read more about the software architecture and the general process flow of Horizon Pulsar in docs/architecture.md.
We're committed to open source, so we welcome and encourage everyone to join its developer community and contribute, whether it's through code or feedback.
By participating in this project, you agree to abide by its Code of Conduct at all times.
This project has adopted the Contributor Covenant in version 2.1 as our code of conduct. Please see the details in our CODE_OF_CONDUCT.md. All contributors must abide by the code of conduct.
By participating in this project, you agree to abide by its Code of Conduct at all times.
This project follows the REUSE standard for software licensing. You can find a guide for developers at https://telekom.github.io/reuse-template/.
Each file contains copyright and license information, and license texts can be found in the ./LICENSES folder. For more information visit https://reuse.software/.