Yurii created KAFKA-8261: ---------------------------- Summary: snappyjava.dll not removed after consumer restart. Key: KAFKA-8261 URL: https://issues.apache.org/jira/browse/KAFKA-8261 Project: Kafka Issue Type: Bug Components: producer Affects Versions: 2.2.0 Environment: Windows Server Reporter: Yurii
When using snappy compression with producer snappyjava.dll is not being removed from Temp folderafter producer closed. Producer properties used: {code:java} kafkaProperties.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, org.apache.kafka.common.serialization.StringSerializer.class); kafkaProperties.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, org.apache.kafka.common.serialization.StringSerializer.class); kafkaProperties.put(ProducerConfig.ACKS_CONFIG, "-1"); kafkaProperties.put(ProducerConfig.MAX_BLOCK_MS_CONFIG,60000L); kafkaProperties.put(ProducerConfig.RETRIES_CONFIG, "3"); kafkaProperties.put(ProducerConfig.COMPRESSION_TYPE_CONFIG, "snappy"); kafkaProperties.put(ProducerConfig.LINGER_MS_CONFIG, "20"); kafkaProperties.put(ProducerConfig.BATCH_SIZE_CONFIG, Integer.toString(32*1024)); {code} -- This message was sent by Atlassian JIRA (v7.6.3#76005)