Stop reading from source (kafka) when sink (opensearch) is down in vector aggregator. #22715
Unanswered
shreyasarani23
asked this question in
Q&A
Replies: 1 comment
-
@pront can you please suggest if enabling |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a source as a kafka and sink as a opensearch my requirement is that vector aggregator should stop reading from kafka whenever sink (opensearch) is down and should resume reading from source (kafka) once the opensearch is up. Below is my vector aggregator configuration.
How can I configure my vector aggregator to stop reading from the source if the sink is down ? As per the above configuration i guess the events will be stored in buffer.memory and it is used along with
when_full:block
option so does that mean vector aggregator will stop reading from kafka whenbuffer.max_events
is full?To stop vector aggregator reading from kafka should I add
acknowledgements.enabled: true
in the opensearch sink?Does it mean that if for some reason if vector aggregator was not able to index the data to opensearch will it stop reading from source as
acknowledgements.enabled: true
?Beta Was this translation helpful? Give feedback.
All reactions