Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kilemonn/messagequeue
A message queue service, which can receive, hold and provide messages that are sent between services.
https://github.com/kilemonn/messagequeue
docker docker-container in-memory kotlin microservice mongodb mssql-server mysql postgresql queueing redis service sql
Last synced: about 5 hours ago
JSON representation
A message queue service, which can receive, hold and provide messages that are sent between services.
- Host: GitHub
- URL: https://github.com/kilemonn/messagequeue
- Owner: Kilemonn
- License: apache-2.0
- Created: 2022-08-06T10:32:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-07T11:18:29.000Z (10 days ago)
- Last Synced: 2024-11-07T12:25:52.874Z (9 days ago)
- Topics: docker, docker-container, in-memory, kotlin, microservice, mongodb, mssql-server, mysql, postgresql, queueing, redis, service, sql
- Language: Kotlin
- Homepage:
- Size: 747 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MessageQueue
[![CI Build](https://github.com/Kilemonn/MessageQueue/actions/workflows/gradle.yml/badge.svg)](https://github.com/Kilemonn/MessageQueue/actions/workflows/gradle.yml) [![Coverage](.github/badges/jacoco.svg)](https://github.com/Kilemonn/MessageQueue/actions/workflows/gradle.yml)## Overview
A message queue service, which can receive, hold and provide messages that are sent between services.
A storage mechanism can be used to persist messages and sub queues can be restricted so only correctly provided credentials
can interact with such queues.### More detailed documentation can be found in the [Wiki](https://github.com/Kilemonn/MessageQueue/wiki)!
## Quick Start
There is an image hosted in Docker Hub: https://hub.docker.com/r/kilemon/message-queue
By default, the application will be store messages in memory and no queue restriction will be available.
To start the application you can use the following command to pull and run the latest version of the image:`docker run -p8080:8080 kilemon/message-queue`
Once running the best endpoint to call at the moment is probably: `http://localhost:8080/queue/healthcheck`
The application provides REST APIs to interact with the messages queued within the MultiQueue.
## Rest API Documentation
REST Documentation is provided as Swagger docs from the running application. Once the image is running you can reach the Swagger documentation from the following endpoint: `http://localhost:8080/swagger-ui/index.html`.