Hi all,
    I'm using druid-0.9.1 with features of Kafka-indexing-service. That's really awesome!
    My imply cluster has one node with zk + broker + pivot + overlord + coordinator, one node with  overlord + coordinator for HA, and eight nodes with middlemanager + historical
    My Kafka cluster has nine servers, and data retention is set by 2 HOUR.
    In Spec of Kafka-indexing-service, I add an option "auto.offset.reset" : "latest" in “consumerProperties“, when I restart supervisor for my topic, I can find "auto.offset.reset=latest" in overlord.log, but this option is still  set "none" in worker Spec, so worker will throws an OffsetOutofRangeException when reading an expired offset in partitions . Many Kafka indexing tasks failed and numbers of segments of each hour reduce a lot.
    How can I fix this problem, can anyone help me solve this problem?
"ioConfig": {
    "topic": "tsl",
    "consumerProperties": {
      "bootstrap.servers": "
202.30.75.91:9092, 
202.30.75.92:9092,
202.30.75.93:9092,
202.30.75.94:9092,
202.30.75.95:9092,
202.30.75.96:9092,
202.30.75.98:9092,
202.30.75.99:9092,
202.30.75.100:9092,",
      "auto.offset.reset" : "latest"
    }
  }