Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
remove parenthesis in readStream() on kafka structured streaming doc
  • Loading branch information
manugarri committed Feb 7, 2017
commit ea313ae236d8ace7a553434093aea9d6bea2b0b6
2 changes: 1 addition & 1 deletion docs/structured-streaming-kafka-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ ds3.selectExpr("CAST(key AS STRING)", "CAST(value AS STRING)")

# Subscribe to 1 topic
ds1 = spark
.readStream()
.readStream
.format("kafka")
.option("kafka.bootstrap.servers", "host1:port1,host2:port2")
.option("subscribe", "topic1")
Expand Down