Last active
December 13, 2018 17:40
-
-
Save haigopi/83737f3e24fca705a03b7b56fca65535 to your computer and use it in GitHub Desktop.
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
$ ./confluent start | |
Starting zookeeper | |
zookeeper is [UP] | |
Starting kafka | |
kafka is [UP] | |
Starting schema-registry | |
schema-registry is [UP] | |
Starting kafka-rest | |
kafka-rest is [UP] | |
Starting connect | |
connect is [UP] | |
Starting ksql-server | |
ksql-server is [UP] | |
$ ./kafka-console-producer --broker-list localhost:9092 --topic gopiTest | |
>Test | |
>Gopi | |
>Krishna | |
$ ./kafka-console-consumer --bootstrap-server localhost:9092 --topic gopiTest --from-beginning | |
Test | |
Gopi | |
Krishna |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment