Add kafka consumer implementation using segmentio#411
Closed
noxymon-mekari wants to merge 10 commits intoMelkeydev:mainfrom
noxymon-mekari:main
Closed
Add kafka consumer implementation using segmentio#411noxymon-mekari wants to merge 10 commits intoMelkeydev:mainfrom noxymon-mekari:main
noxymon-mekari wants to merge 10 commits intoMelkeydev:mainfrom
noxymon-mekari:main
Conversation
Owner
|
Hey I want to start by thanking you for the PR. |
# Conflicts: # cmd/flags/advancedFeatures.go # cmd/program/program.go # cmd/steps/steps.go # cmd/template/advanced/routes.go
move redis to advance feature
Author
Hi, thanks for warmth welcome ! as per your concern, Thanks alot @Melkeydev ! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
By submitting this pull request, I confirm that my contribution is made under the terms of the MIT license.
Problem/Feature
This pull request introduces a Kafka integration feature to the project setup, allowing users to add Kafka consumer functionality when creating a new project. The changes include updates to the project creation flow, templates for Kafka-related files, and support for configuring Kafka settings via environment variables.
Description of Changes:
Kafka Integration Feature:
Add Kafka as an Advanced Feature Option:
AllowedAdvancedFeatureslist and the advanced feature selection step. This allows users to enable Kafka integration during project creation.Kafka Consumer Implementation:
consumer.go,consumer_test.go,main.go) and an.envtemplate for Kafka configuration. These templates are embedded in the project and used to generate necessary files.CreateKafkaFilesto generate Kafka-related files and directories, including a consumer binary setup.Environment Variable Support for Kafka:
.envfile generation logic to include Kafka-specific configurations, such as brokers, group ID, and topic.Project Creation Flow Enhancements:
Feature Flag Handling:
createcommand, allowing them to be processed independently of the--advancedflag.Interactive Messages for Kafka:
These changes enhance the flexibility and functionality of the project creation process by enabling Kafka integration as an advanced feature.
Checklist