Kafka server Shutdown after continue wrting data to topic
Kafka server Shutdown after continue wrting data to topic when i am writing data to kafka topic using spark Direct streaming 2.1, after some time kafka geting shutdown. val props = new HashMap[String, Object]() props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "ip:9092") props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringSerializer") props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringSerializer") val producer = new KafkaProducer[String, String](props) val message = new ProducerRecord[String, String](topic, partition,compression key,message) producer.send(message) What is an exception? – Popeye Jun 29 at 19:07 java.io.IOException: Too many open files, and l...