https://github.com/jd-opensource/joyqueue
A cloud-native production-quality messaging platform with high performance
https://github.com/jd-opensource/joyqueue
Last synced: 10 months ago
JSON representation
A cloud-native production-quality messaging platform with high performance
- Host: GitHub
- URL: https://github.com/jd-opensource/joyqueue
- Owner: jd-opensource
- License: apache-2.0
- Created: 2019-07-22T12:34:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-16T04:45:30.000Z (about 3 years ago)
- Last Synced: 2025-03-29T01:09:49.151Z (10 months ago)
- Language: Java
- Homepage:
- Size: 19.8 MB
- Stars: 374
- Watchers: 25
- Forks: 139
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-java - JoyQueue
README
# JoyQueue
[](./LICENSE)
[](https://github.com/chubaostream/joyqueue/releases)
[](https://search.maven.org/search?q=org.joyqueue)
[](https://github.com/chubaostream/joyqueue/commits)
[](https://travis-ci.org/chubaostream/joyqueue)
[](https://coveralls.io/github/chubaostream/joyqueue)
[阅读中文版](docs/cn/README.md)
JoyQueue -- A cloud-native production-ready messaging platform with excellent performance.
## Features
* High performance design with low latency and high throughput, see [performance](#Performance).
* Built-in multi-protocol support, working pretty well with OpenMessaging, Kafka and MQTT clients.
* easy to deploy: single-process, zero-dependent, no need of additional cluster coordination services.
* Large-scale clustering.
* Strong durability
* Consistent replication based on [Raft consensus algorithm](https://raft.github.io/).
* Full-featured web management console.
* Other nice features:
* Rich metrics APIs
* Transactions
* Parallel message consumption
* Message archiving
* Message preview
* Automatically save consumption failure messages and error logs
* Unlimited message stacking capacity
## Performance
A JoyQueue performance test results here:
| Scenario | QPS | clients | Delay AVG/TP99/TP999 (ms) | Fail(%)
| :----:| :----:|:----: |:----: |:----:|
|**Online service**| **510, 924** | 400| 1/4/8 | 0
|**Streaming** | **32, 961, 776** | 900 | N/A | 0
Scenario settings:
Scenario | Sync/Async | Batch | Compress | Msg size | Partitions | Client SDK
-- | -- | -- | -- | -- | -- | --
**Online service** | Sync | 1 | Not compressed | 1KB | 200 | joyqueue-client-4.1.0
**Streaming** | Async | 100 | LZ4 | 1KB | 200 | kafka-clients-2.1.1
For detail,visit [Performance](./docs/cn/performance.md)。
## Quickstart
Visit [Quick start](./docs/cn/quickstart.md)。
## Documentation
Visit [Documentation Index](./docs/cn/index.md)。
## Dependency Analysis
The [License Maven Plugin](https://www.mojohaus.org/license-maven-plugin/) manages the license of this project and its dependencies. Use maven goal `license:third-party-report` to generate a report of all third-parties detected in the project.
```bash
mvn license:aggregate-third-party-report
```
## Contributing
We are dedicate to building high-quality messaging platform product. So any thoughts, pull requests, or issues are appreciated.
See [CONTRIBUTING.md](CONTRIBUTING.md) for details on submitting patches and the contribution workflow.
## License
Licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).