Skip to content

Commit

Permalink
edit kafka perperties.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhiqiang-He committed Oct 14, 2015
1 parent 9173388 commit 0f007ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ SOURCE RANDOMGEN
CREATE OUTPUT STREAM s2
(c1 STRING)
SINK kafakOutput
PROPERTIES ( topic = "cqlOut");
PROPERTIES ( topic = "cqlOut", zookeepers = "127.0.0.1:2181", brokers = "127.0.0.1:9092" );

CREATE INPUT STREAM s3
( c1 STRING)
SOURCE KafkaInput
PROPERTIES (groupid = "cqlClient", topic = "cqlInput")
PROPERTIES (groupid = "cqlClient", topic = "cqlInput", zookeepers = "127.0.0.1:2181", brokers = "127.0.0.1:9092" )

CREATE OUTPUT STREAM s4
(c1 STRING)
Expand Down

0 comments on commit 0f007ad

Please sign in to comment.