{"id":13472106,"url":"https://github.com/adyliu/jafka","last_synced_at":"2025-10-21T05:57:00.811Z","repository":{"id":3129654,"uuid":"4157651","full_name":"adyliu/jafka","owner":"adyliu","description":"a fast and simple distributed publish-subscribe messaging system (mq)","archived":false,"fork":false,"pushed_at":"2022-11-16T03:16:45.000Z","size":2935,"stargazers_count":722,"open_issues_count":33,"forks_count":323,"subscribers_count":124,"default_branch":"master","last_synced_at":"2024-10-30T04:12:59.828Z","etag":null,"topics":["jafka-mq","jms","kafka","message-queue","mq"],"latest_commit_sha":null,"homepage":"https://github.com/adyliu/jafka/wiki","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adyliu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-04-27T11:20:29.000Z","updated_at":"2024-10-10T03:22:26.000Z","dependencies_parsed_at":"2023-01-13T12:45:20.207Z","dependency_job_id":null,"html_url":"https://github.com/adyliu/jafka","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adyliu%2Fjafka","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adyliu%2Fjafka/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adyliu%2Fjafka/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adyliu%2Fjafka/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adyliu","download_url":"https://codeload.github.com/adyliu/jafka/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245681308,"owners_count":20655167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jafka-mq","jms","kafka","message-queue","mq"],"created_at":"2024-07-31T16:00:51.959Z","updated_at":"2025-10-21T05:56:55.743Z","avatar_url":"https://github.com/adyliu.png","language":"Java","funding_links":[],"categories":["Java","进程间通信","Message Queue Middlewares"],"sub_categories":[],"readme":"#A fast distributed messaging system (MQ)\n\n[![License](https://img.shields.io/github/license/adyliu/jafka.svg)](https://github.com/adyliu/jafka/blob/master/LICENSE)\n[![Build Status](https://travis-ci.org/adyliu/jafka.png?branch=master)](https://travis-ci.org/adyliu/jafka)\n[![Maven Central](https://img.shields.io/maven-central/v/io.jafka/jafka.svg)](http://search.maven.org/#search|ga|1|g%3A%22io.jafka%22%20a%3A%22jafka%22)\n\nJafka mq is a distributed publish-subscribe messaging system cloned from [Apache Kafka](http://kafka.apache.org/).\n\nSo it has the following features:\n\n* Persistent messaging with O(1) disk structures that provide constant time performance even with many TB of stored messages.\n* High-throughput: even with very modest hardware single broker can support hundreds of thousands of messages per second.\n* Explicit support for partitioning messages over broker servers and distributing consumption over a cluster of consumer machines while maintaining per-partition ordering semantics.\n* Simple message format for many language clients.\n* Pure Java work\n\nIf you are interested in [scala](http://www.scala-lang.org/), please use the origin kafka at [apache](http://kafka.apache.org/). Also it has a git repository at [github](https://github.com/apache/kafka/).\n\n## News\n\n[2019-05-13] [released](https://github.com/adyliu/jafka/releases) [v3.0.6](http://central.maven.org/maven2/io/jafka/jafka/)\n\n## Document \u0026 Wiki\n\nWiki: [https://github.com/adyliu/jafka/wiki](https://github.com/adyliu/jafka/wiki)\n\n## Download\n\nYou can download the full package from Google Drive:\n\n* Jafka Releases [https://github.com/adyliu/jafka/releases](https://github.com/adyliu/jafka/releases)\n* Google Drive [https://drive.google.com/drive/folders/0B4VObojKr49KeVNaTnc3bDlKNXM](https://drive.google.com/drive/folders/0B4VObojKr49KeVNaTnc3bDlKNXM)\n* Baidu Pan [http://pan.baidu.com/s/1kU2LuwJ](http://pan.baidu.com/s/1kU2LuwJ)\n\n## Maven \u0026 Gradle Dependencies\n\n* [http://central.maven.org/maven2/io/jafka/jafka/](http://central.maven.org/maven2/io/jafka/jafka/)\n* [http://mvnrepository.com/artifact/io.jafka/jafka](http://mvnrepository.com/artifact/io.jafka/jafka)\n\nMaven\n\n    \u003cdependency\u003e\n        \u003cgroupId\u003eio.jafka\u003c/groupId\u003e\n        \u003cartifactId\u003ejafka\u003c/artifactId\u003e\n        \u003cversion\u003e3.0.6\u003c/version\u003e\n    \u003c/dependency\u003e\n\nGradle\n\n    'io.jafka:jafka:3.0.6'\n\n\n## Contributor\n\n* @rockybean\n* @tiny657\n\n## License\n\nApache License 2.0 =\u003e [https://github.com/adyliu/jafka/blob/master/LICENSE](https://github.com/adyliu/jafka/blob/master/LICENSE)\n\n----\n[Keywords: jafka, kafka, messaging system, mq, jafka mq, sohu]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadyliu%2Fjafka","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadyliu%2Fjafka","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadyliu%2Fjafka/lists"}