sheelchand
sheelchand
I see the same issue in elasticsearch logs `"stacktrace": ["java.lang.IllegalArgumentException: mapper [logstash.node.stats.pipelines.queue.capacity.queue_size_in_bytes] cannot be changed from type [float] to [long]",` Does anybody know the work around like a way to...
@klacabane We use metrcibeat for logstash monitoring. Please let us know the workaround. Thanks!
More information on the issue: 1. I mapped each VM to a socket Id and saw that a thread was stuck on writing to socket 11. I stopped the VM...
On further analysis, it looks like a deadlock problem: Socket 7's buffer is full, other sockets, including socket 11) are blocked sending to it. Socket 7 gets blocked sending to...
This code has multiple threads writing to a socket at the same time. This will cause problem - potentially corrupting packets. We need to remove the flooding by mapping MAC...
I tried but the Mac’s in the packets don’t match the VMs Macs. I tried putting a semephore before sending to a socket but that did not help either. I...