Retries for HostInfo in InteractiveQueryService
InteractiveQueryService methods for finding the host info for Kafka Streams currently throw exceptions if the underlying KafkaStreams are not ready yet. Introduce a retry mechanism so that the users can control the behaviour of these methods by providing the following properties. spring.cloud.stream.kafka.streams.binder.stateStoreRetry.maxAttempts (default 1) spring.cloud.stream.kafka.streams.binder.stateStoreRetry.backoffPeriod (default 1000 ms). Resolves https://github.com/spring-cloud/spring-cloud-stream-binder-kafka/issues/1185
This commit is contained in:
@@ -1261,7 +1261,7 @@ ReadOnlyKeyValueStore<Object, Object> keyValueStore =
|
||||
----
|
||||
|
||||
During the startup, the above method call to retrieve the store might fail.
|
||||
For e.g it might still be in the middle of initializing the state store.
|
||||
For example, it might still be in the middle of initializing the state store.
|
||||
In such cases, it will be useful to retry this operation.
|
||||
Kafka Streams binder provides a simple retry mechanism to accommodate this.
|
||||
|
||||
@@ -1296,6 +1296,10 @@ else {
|
||||
}
|
||||
----
|
||||
|
||||
For more information on these host finding methods, please see the Javadoc on the methods.
|
||||
For these methods also, during startup, if the underlying KafkaStreams objects are not ready, they might throw exceptions.
|
||||
The aforementioned retry properties are applicable for these methods as well.
|
||||
|
||||
==== Other API methods available through the InteractiveQueryService
|
||||
|
||||
Use the following API method to retrieve the `KeyQueryMetadata` object associated with the combination of given store and key.
|
||||
|
||||
Reference in New Issue
Block a user