-
Notifications
You must be signed in to change notification settings - Fork 834
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove unused imports from admin client wrapper * Add function to create Kafka admin properties from provided config * Use Kafka admin config for admin client * Add CLI handling for Kafka security protocol * Pass security protocol to Kafka config objects * Add comments describing logical sections of CLI config * Remove unused core-count config * Update local properties file * Use replication factor CLI value in Kafka config * Expect admin properties not normal Kafka properties in admin client wrapper * Rename var for consistency * Use Kafka streams config to set replication factor when creating topics * Use Kafka streams config to set partition count when creating topics * Add const modifier to value * Add program name to CLI config parsing setup
- Loading branch information
Showing
7 changed files
with
48 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
kafka.bootstrap.servers=localhost:9092 | ||
kafka.security.protocol=PLAINTEXT | ||
kafka.partitions.default=1 | ||
kafka.replication.factor=1 | ||
kafka.state.clean=true | ||
kafka.join.window.millis=60000 | ||
upstream.host=0.0.0.0 | ||
upstream.port=9008 | ||
cores.count=4 |