Reputation: 9029
What is the default value for private Integer concurrency; , in ConcurrentKafkaListenerContainerFactory.java ?
Kafka version : 0.10.2.1 spring-kafka version : 1.0.5-RELEASE
Upvotes: 5
Views: 12418
Reputation: 174484
one.
private int concurrency = 1;
1.0.5-RELEASE
All 1.x users are encouraged to upgrade to at least 1.3.5 because it has a much simpler threading model, thanks to KIP-62. The current release is 2.1.7; all those versions are compatible with the 10.2 broker, see the project page for a compatibility matrix.
Upvotes: 8