{"id":23353540,"url":"https://github.com/ivanclay/kafka-training","last_synced_at":"2026-05-02T02:39:24.670Z","repository":{"id":267787527,"uuid":"902353672","full_name":"ivanclay/kafka-training","owner":"ivanclay","description":"It is a Kafka training repository","archived":false,"fork":false,"pushed_at":"2024-12-12T13:41:09.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T20:47:14.420Z","etag":null,"topics":["dotnet","kafka"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ivanclay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-12T12:02:08.000Z","updated_at":"2024-12-12T22:12:34.000Z","dependencies_parsed_at":"2024-12-12T13:20:43.888Z","dependency_job_id":"d0c2812e-5ff2-4676-a060-9489ffc06a5a","html_url":"https://github.com/ivanclay/kafka-training","commit_stats":null,"previous_names":["ivanclay/kafka-training"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivanclay%2Fkafka-training","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivanclay%2Fkafka-training/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivanclay%2Fkafka-training/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivanclay%2Fkafka-training/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ivanclay","download_url":"https://codeload.github.com/ivanclay/kafka-training/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247713263,"owners_count":20983683,"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":["dotnet","kafka"],"created_at":"2024-12-21T09:13:53.256Z","updated_at":"2026-05-02T02:39:24.622Z","avatar_url":"https://github.com/ivanclay.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kafka Training\n\n![Badge de Licença](https://img.shields.io/badge/.NET-8.0.0-blue.svg?style=flat-square\u0026logo=dotnet)\n![Badge de Licença](https://img.shields.io/badge/Apache_Kafka-2.13_3.0.0-orange.svg?style=flat-square\u0026logo=apachekafka)\n![Badge de Licença](https://img.shields.io/badge/git-2.42.0-lightgrey.svg?style=flat-square\u0026logo=git)\n![Badge de Licença](https://img.shields.io/badge/docker-27.2.0-orange.svg?style=flat-square\u0026logo=docker)\n\n![Badge de Versão](https://img.shields.io/badge/app-v_1.0.0-green.svg?style=flat-square\u0026logo=app)\n![Badge de Status do Projeto](https://img.shields.io/badge/status-training-blue.svg?style=flat-square)\n\nIt is only a Kafka training repository\n\n### Contextualization\n\n\n### KAFKA Install (Windows WSL2)\n\n```sh\n    wget -O- https://apt.corretto.aws/corretto.key | sudo apt-key add -\n```\n\n```sh\n    sudo add-apt-repository 'deb https://apt.corretto.aws stable main'\n```\n\n```sh\n    sudo apt-get update; sudo apt-get install -y java-11-amazon-corretto-jdk\n```\n\n```sh\n    wget https://archive.apache.org/dist/kafka/3.0.0/kafka_2.13-3.0.0.tgz\n```\n\n```sh\n    tar xzf kafka_2.13-3.0.0.tgz\n```\n\n### ZOOKEEPER RUN\n\n```sh\n    ./zookeeper-server-start.sh ../config/zookeeper.properties\n```\n\n### KAFKA RUN\n\n```sh\n    ./kafka-server-start.sh ../config/server.properties\n```\n### KAFKA UTILITIES RUN\n\n#### TOPICS\n\n```sh\n    ./kafka-topics.sh --list --bootstrap-server localhost:9092\n```\n\n\n```sh\n    ./kafka-topics.sh -create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic tp-test\n```\n\n```sh\n    ./kafka-topics.sh --describe --bootstrap-server localhost:9092 --topic tp-test\n```\n\n```sh\n   ./kafka-topics.sh --alter --bootstrap-server localhost:9092 --topic tp-test --partitions 2\n```\n\n```sh\n    ./kafka-topics.sh --delete --bootstrap-server localhost:9092 --topic tp-test\n```\n\n```sh\n    ./kafka-configs.sh --alter --bootstrap-server localhost:9092 --entity-type topics --entity-name tp-test --add-config retention.ms=1000\n```\n\n#### PRODUCERS\n\n```sh\n    ./kafka-console-producer.sh --broker-list localhost:9092 --topic tp-test\n```\n\n```sh\n    ./kafka-console-producer.sh --broker-list localhost:9092 --topic tp-test --property parse.key=true --property key.separator=;\n```\n#### CONSUMERS\n\n```sh\n    ./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic tp-test --from-beginning\n```\n\n```sh\n    ./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic tp-test --from-beginning --property print.key=true --property key.separator=;\n```\n#### CONSUMER GROUPS\n\n```sh\n   ./kafka-consumer-groups.sh --list --bootstrap-server localhost:9092 \n```\n\n```sh\n   ./kafka-consumer-groups.sh --bootstrap-server localhost:9092 --group cgp-test --reset-offsets --to-earliest --topic tp-test --execute\n```\n\n```sh\n  ./kafka-consumer-groups.sh --describe --group cgp-test --bootstrap-server localhost:9092\n``` \n\n\n```sh\n./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic tp-test --from-beginning --group cgp-test\n``` \n### Dependencies\n\n- [--]()\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivanclay%2Fkafka-training","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fivanclay%2Fkafka-training","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivanclay%2Fkafka-training/lists"}