Replies: 1 comment
-
Hi @hedard ! This is expected behavior (there are more details on https://vector.dev/docs/about/under-the-hood/architecture/buffering-model/). To avoid one sink blocking, you can configure the buffer to instead drop data rather than blocking by adding: buffer:
on_full: drop_newest on the sink you don't want to block if down. This, of course, means that data going to that sink will be dropped. |
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
-
Hi!
Problem
I'm setting up a simple configuration where metrics from node exporter are pushed to victoriametrics. One is primary and the second one is backup. I have an issue that metrics are not pushed to backup if primary is down.
When I stop vict1, metrics stop going into vict2 too.
I expect these sinks to work separatelly and independent from each other.
I'm using tlast_over_time function to check incoming metrics on backup vm, but last TS for backup vm is when primary was up.
Debug log doesn't say much
Configuration
Version
I'm using docker image timberio/vector:0.39.0-alpine
Debug Output
Beta Was this translation helpful? Give feedback.
All reactions