I'm using KStream parameter in @StreamBuilder.
This will create a DefaultBinding through KStreamBinder.
My requirement is to use Binding visualization and control.
However
return new DefaultBinding <> (name, null, outboundBindTarget, null);
You can't control the state via springboot /actuator/bindings because the lifecycle is null.
(POST /actuator/bindings/{bindings-name} {"state":"PAUSED"})
How can I control the state of a Binding?
The version I am using is below.
- org.springframework.cloud:spring-cloud-stream:3.0.1.RELEASE
- org.springframework.cloud:spring-cloud-stream-binder-kafka-core:3.0.1.RELEASE
- org.springframework.cloud:spring-cloud-stream-binder-kafka-streams:3.0.1.RELEASE
- org.apache.kafka:kafka-streams:2.3.1
please answer about my question. Thank you.