Hi,

while reading streaming data from kafka we use following API.

df = spark \
  .readStream \
  .format("kafka") \
  .option("kafka.bootstrap.servers", "host1:port1,host2:port2") \
  .option("subscribe", "topic1") \
  .option("startingOffsets", "earliest") \
  .load()


My Question is how to see different options() available here like

kafka.bootstrap.servers in the IDE?

Reply via email to