Kafka Streams configuration is specified witha StreamsConfig instance▪ This is typically created from ajava.util.Properties instance▪ Example:Properties streamsConfiguration = new Properties();streamsConfiguration.put(StreamsConfig.APPLICATION_ID_CONFIG, "simple-example");streamsConfiguration.put(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG,"broker1:9092");streamsConfiguration.put(StreamsConfig.ZOOKEEPER_CONNECT_CONFIG,"zookeeper1:2181");// Continue to specify configuration optionsstreamsConfiguration.put(..., ...);Copyright