You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am experiencing some strange behavior when trying to use the UDP functionality. Basically the majority of messages are never sent. Using the code here:
for(int i=0;i<10000;i++){
System.out.println("Logging a thing");
logger.info("testing thing "+i);
System.out.println("Logged a thing");
}
I would expect all 10,000 messages to send, and a (small) number to be lost in transit. What actually happens is only 2-3k are sent, and a small number are lost in transit. I've verified what is sent/received with a packet capture on both ends.
Hi,
I am experiencing some strange behavior when trying to use the UDP functionality. Basically the majority of messages are never sent. Using the code here:
and config here:
I would expect all 10,000 messages to send, and a (small) number to be lost in transit. What actually happens is only 2-3k are sent, and a small number are lost in transit. I've verified what is sent/received with a packet capture on both ends.