{"id":13783937,"url":"https://github.com/streamthoughts/azkarra-streams","last_synced_at":"2025-08-19T23:54:32.017Z","repository":{"id":37978444,"uuid":"224235390","full_name":"streamthoughts/azkarra-streams","owner":"streamthoughts","description":"🚀 Azkarra is a lightweight java framework to make it easy to develop, deploy and manage cloud-native streaming microservices based on Apache Kafka Streams.","archived":false,"fork":false,"pushed_at":"2023-01-05T01:50:51.000Z","size":19731,"stargazers_count":182,"open_issues_count":48,"forks_count":23,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-07-27T07:33:56.181Z","etag":null,"topics":["apache-kafka","azkarra-streams","cloud-native","data","interactive-queries","java","kafka","kafka-streams","micro-framework","microservices","webui"],"latest_commit_sha":null,"homepage":"https://www.azkarrastreams.io/","language":"HTML","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/streamthoughts.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":null,"security":null,"support":null}},"created_at":"2019-11-26T16:18:45.000Z","updated_at":"2025-03-27T16:44:54.000Z","dependencies_parsed_at":"2023-02-03T04:46:41.964Z","dependency_job_id":null,"html_url":"https://github.com/streamthoughts/azkarra-streams","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/streamthoughts/azkarra-streams","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/streamthoughts%2Fazkarra-streams","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/streamthoughts%2Fazkarra-streams/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/streamthoughts%2Fazkarra-streams/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/streamthoughts%2Fazkarra-streams/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/streamthoughts","download_url":"https://codeload.github.com/streamthoughts/azkarra-streams/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/streamthoughts%2Fazkarra-streams/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271241922,"owners_count":24724971,"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","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["apache-kafka","azkarra-streams","cloud-native","data","interactive-queries","java","kafka","kafka-streams","micro-framework","microservices","webui"],"created_at":"2024-08-03T19:00:33.345Z","updated_at":"2025-08-19T23:54:32.008Z","avatar_url":"https://github.com/streamthoughts.png","language":"HTML","funding_links":[],"categories":["进程间通信","Unsorted"],"sub_categories":["Integrations"],"readme":"[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/streamthoughts/blob/master/LICENSE)\n[![CircleCI](https://circleci.com/gh/streamthoughts/azkarra-streams.svg?style=svg\u0026circle-token=dc27c1e59cfd3f4445d6cd234156773aae6e7013)](https://circleci.com/gh/streamthoughts/azkarra-streams)\n\n![Logo of Azkarra Streams](images/azkarra-streams-logo.png)\n\nAzkarra Streams is a lightweight Java framework which makes easy to develop and operate Kafka Streams applications (Azkarra is Basque word for *\"Fast\"*) \n\n_**[Kafka Streams](https://kafka.apache.org/documentation/streams/)** is a client library for building applications and microservices, where the input and output data are stored in Kafka clusters. \nIt combines the simplicity of writing and deploying standard Java and Scala applications on the client side  with the benefits of Kafka's server-side cluster technology (source: [Apache documentation](https://kafka.apache.org/documentation/streams/))._\n\n## 🚀 Features\n\n* Create stand-alone Kafka Streams applications.\n* Easy externalization of Topology and Kafka Streams configurations (using Typesafe Config).\n* Embedded http server (Undertow).\n* Embedded WebUI for topologies visualization.\n* Provide production-ready features such as metrics, health checks, dead-letter-queues.\n* Encryption and Authentication with SSL or Basic Auth.\n\n## 🙏 Show your support\n\nDo you think this project can help you create event-driven applications based on Kafka Streams?\nPlease 🌟 this repository to support us!\n\n## 🚀 Quickstart \n\nAzkarra is available in [Maven Central](https://mvnrepository.com/artifact/io.streamthoughts/azkarra-streams-reactor/0.7.0). You can add Azkarra Streams to the dependency of the pom.xml of your project.\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.streamthoughts\u003c/groupId\u003e\n  \u003cartifactId\u003eazkarra-streams\u003c/artifactId\u003e\n  \u003cversion\u003e0.9.2\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n## Building Azkarra Streams\n\n**Prerequisites for building Azkarra:**\n\n* Git\n* Maven (we recommend version 3.6.3)\n* Java 11\n\n```bash\n$ git clone https://github.com/streamthoughts/azkarra-streams.git\n$ cd azkarra-streams\n$ ./mvnw clean package -DskipTests\n```\n\n*NOTE: Azkarra Worker is built in `./azkarra-worker/target/distribution/`*\n    \n## Documentation\n\nIf you want to read more about using **Azkarra Streams**, the documentation can be found on [www.azkarrastreams.io](https://www.azkarrastreams.io/)\n\n## 💡Contributions\n\nAny feedback, bug reports and PRs are greatly appreciated!\n\n- Source Code: [https://github.com/streamthoughts/azkarra-streams](https://github.com/streamthoughts/azkarra-streams)\n- Issue Tracker: [https://github.com/streamthoughts/azkarra-streams/issues](https://github.com/streamthoughts/azkarra-streams/issues)\n\n## Community\n\n* [Slack Channel](https://communityinviter.com/apps/azkarra-streams/azkarra-streams-community)\n\n## Who Uses?\n\n**Want to appear on this page?** \n\nOpen an [issue](https://github.com/streamthoughts/azkarra-streams/issues) with a quick description of your organization and usage or send us a message to the [Slack Channel](https://communityinviter.com/apps/azkarra-streams/azkarra-streams-community).\n\n## Licence\n\nCopyright 2019-2020 StreamThoughts.\n\nLicensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstreamthoughts%2Fazkarra-streams","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstreamthoughts%2Fazkarra-streams","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstreamthoughts%2Fazkarra-streams/lists"}