K8s Vector Agent w/ Sink Vector - What happens if buffer is full? #10489
-
Hi, We are using a centralized deployment topology as explained here in our Kubernetes clusters. I would like to better understand what happens exactly on the Vector agent side (collecting container logs) when the sink type Vector is reaching the maximum allowed number of events in the buffer. Default Settings:
The documentation says:
Can someone please explain in detail what does this mean for the K8s Vector agent? Will it stop reading events from container log files completely? Thx a lot, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @svenmueller ! Good question. When the buffer is full, the sink, in this case the Does this answer your question? |
Beta Was this translation helpful? Give feedback.
Hi @svenmueller !
Good question. When the buffer is full, the sink, in this case the
vector
sink, will start applying back-pressure to the source. What is the source in this case?kubernetes_logs
? If it is, that means that the source will slow down, or stop, reading the pod log files until the sink catches up.Does this answer your question?