{"id":13697604,"url":"https://github.com/allegro/hermes","last_synced_at":"2025-05-14T10:08:34.809Z","repository":{"id":32089980,"uuid":"35662043","full_name":"allegro/hermes","owner":"allegro","description":"Fast and reliable message broker built on top of Kafka.","archived":false,"fork":false,"pushed_at":"2025-03-28T08:49:19.000Z","size":123066,"stargazers_count":823,"open_issues_count":44,"forks_count":217,"subscribers_count":30,"default_branch":"master","last_synced_at":"2025-04-04T14:49:48.053Z","etag":null,"topics":["hacktoberfest","hermes","kafka","messaging","pubsub"],"latest_commit_sha":null,"homepage":"http://hermes.allegro.tech","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/allegro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-05-15T08:11:16.000Z","updated_at":"2025-03-31T02:10:12.000Z","dependencies_parsed_at":"2023-09-23T08:09:36.690Z","dependency_job_id":"2c40277a-a2de-4d52-bbbe-83b60d9520e6","html_url":"https://github.com/allegro/hermes","commit_stats":{"total_commits":1677,"total_committers":189,"mean_commits":8.873015873015873,"dds":0.86463923673226,"last_synced_commit":"7f289737b69c4fe60d661532eadaf8d457563971"},"previous_names":[],"tags_count":242,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allegro%2Fhermes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allegro%2Fhermes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allegro%2Fhermes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allegro%2Fhermes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/allegro","download_url":"https://codeload.github.com/allegro/hermes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248336541,"owners_count":21086813,"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":["hacktoberfest","hermes","kafka","messaging","pubsub"],"created_at":"2024-08-02T18:01:00.675Z","updated_at":"2025-04-11T03:34:10.426Z","avatar_url":"https://github.com/allegro.png","language":"Java","readme":"Hermes\n======\n\n[![Build Status](https://github.com/allegro/hermes/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/allegro/hermes/actions/workflows/ci.yml?query=branch%3Amaster)\n[![Documentation Status](https://readthedocs.org/projects/hermes-pubsub/badge/?version=latest)](https://readthedocs.org/projects/hermes-pubsub/?badge=latest)\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/pl.allegro.tech.hermes/hermes-client/badge.svg)](https://maven-badges.herokuapp.com/maven-central/pl.allegro.tech.hermes/hermes-client)\n\nHermes is an asynchronous message broker built on top of [Kafka](http://kafka.apache.org/).\nWe provide reliable, fault tolerant REST interface for message publishing and adaptive push\nmechanisms for message sending.\n\nSee our 10-minute getting started guide with Docker: [Getting started](http://hermes-pubsub.readthedocs.org/en/latest/quickstart/)\n\nVisit our page: [hermes.allegro.tech](http://hermes.allegro.tech)\n\nSee our full documentation: [http://hermes-pubsub.readthedocs.org/en/latest/](http://hermes-pubsub.readthedocs.org/en/latest/)\n\nIf you have any question or idea regarding the project, please feel free to reach us out using [GitHub discussions](https://github.com/allegro/hermes/discussions).\n\n## License\n\n**hermes** is published under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0).\n\n## Development \n\n### Code formatting\nFor code formatting we use [google-java-format](https://github.com/google/google-java-format/tree/master).\nFollowing steps are required for optimal dev experience in IJ:\n\n1. Download [google-java-format plugin](https://plugins.jetbrains.com/plugin/8527-google-java-format)\n2. [Set custom VM options required for IJ plugin](https://github.com/google/google-java-format/tree/master?tab=readme-ov-file#intellij-jre-config)\n3. Go to `Settings \u003e google-java-format` and click `Enable google java-format` (should be checked by default)\n4. Go to `Settings \u003e Tools \u003e Actions on Save` and enable `Reformat code` and `Optimize imports` for Java files\n\nEach save should automatically trigger reformat.\n\nIf you want to debug the CLI check on macOS:\n\n```shell\nwget https://github.com/google/google-java-format/releases/download/v1.23.0/google-java-format_darwin-arm64\nchmod a+x google-java-format_darwin-arm64\nchmod a+x .github/scripts/check-google-java-format.sh\n./.github/scripts/check-google-java-format.sh                                                                                                                     \n```\n\nor if you are on Linux:\n\n```shell\nwget https://github.com/google/google-java-format/releases/download/v1.23.0/google-java-format_linux-x86-64\nchmod a+x google-java-format_linux-x86-64\nchmod a+x .github/scripts/check-google-java-format.sh\n./.github/scripts/check-google-java-format.sh        \n```\n\nYou can also run the following command to fix formatting for the whole project:\n\n```shell\n./.github/scripts/check-google-java-format.sh --fix\n```\n","funding_links":[],"categories":["Libraries","Deployment","Applications","Java","进程间通信"],"sub_categories":["Kafka","Integrations"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallegro%2Fhermes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fallegro%2Fhermes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallegro%2Fhermes/lists"}