Replies: 1 comment 3 replies
-
Hi @bmallya ! The error you are seeing seems to be related to #17926 which was fixed in v0.32.1.
|
Beta Was this translation helpful? Give feedback.
3 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.
-
Hello,
The vector agent that I am using is doing a couple of things. It has HTTP, TCP, Unix and file as sources. The events that get in through these sources are routed through a transform (basic validation and appending additional metadata) before being sent to another instance of vector on an upstream device which will act as a collector. The version of vector that I am currently using is 0.30 and here is the config file
With this running configuration, I have so far been able to acquire and forward all the events. But recently ran into an issue with the unix socket.
The events that are being sent to the agent are quite big ~8KB. I was told by the person utilising this configuration that they are seeing these error
memory allocation of 4194304 bytes failed error
( I did not get a chance to look at the exact message and where it was popping up).To recreate this, I started pumping in 8KB sized event every 10 ms to the vector agent. I was not able to see any issues with it. Then when I brought this time gap to 1 ms. ie. send 8KB sized event every 1 ms. With these after some time, I am seeing these errors being logged.
Once we get into this situation, no more events are sent through to the collector unless we restart the vector agent.
I wanted to understand a bit more about this error and see why this is happening? would anyone know if
memory allocation
error has ever been seen and if thememory allocation
error and what I have put in above are the same?Beta Was this translation helpful? Give feedback.
All reactions