Kafka Streams Topology stuck in num.stream.threads=50 and 100 partitions
问题 There is a topology: kStreamBuilder.stream(kafkaProperties.getInboundTopicName(), consumed) .filterNot((k,v) -> Objects.isNull(v)) .transform(() -> new CustomTransformer(...)) .transform(() -> new AnotherTransformer(...)) .to(kafkaProperties.getOutTopicName(), resultProduced); with configured num.stream.threads: 50 On startup application stuck with constantly logging messages(I'm not 100% sure it stuck but after 20 minutes there are no changes in the state and CPU, network usage is very high)