Hi
I am trying to diagnose a problem where we notice sporadic high utilization and load spikes on an ICE server application. Interestingly corresponding exactly to these spikes are small bursts in traffic over the lo interface (usually there is virtually no traffic).
Now, I have noticed that the ICE application opens & maintains connections to itself:
Three pairs it looks like. From searching through the forum the only tidbit I learned was that it apparently these are opened for each thread pool?Code:java 10213 root 41u IPv6 18046494 TCP localhost.localdomain:42569->localhost.localdomain:42568 (ESTABLISHED) java 10213 root 42u IPv6 18046495 TCP localhost.localdomain:42568->localhost.localdomain:42569 (ESTABLISHED) java 10213 root 50u IPv6 18046506 TCP localhost.localdomain:42571->localhost.localdomain:42570 (ESTABLISHED) java 10213 root 51u IPv6 18046507 TCP localhost.localdomain:42570->localhost.localdomain:42571 (ESTABLISHED) java 10213 root 58u IPv6 18046515 TCP localhost.localdomain:42573->localhost.localdomain:42572 (ESTABLISHED) java 10213 root 59u IPv6 18046516 TCP localhost.localdomain:42572->localhost.localdomain:42573 (ESTABLISHED)
Here is the relevant config:
Could you tell me what these localhost to localhost connections are used for and why there would be this correlation between localhost traffic and high load?Code:EventSystemAdapter.Endpoints=tcp -p 21500 -t 10000 EventSystemAdapter.ThreadPool.Size=15 EventSystemAdapter.ThreadPool.SizeMax=35 EventSystemAdminAdapter.Endpoints=tcp -p 21550 -t 2000 EventSystemAdminAdapter.ThreadPool.Size=5 EventSystemAdminAdapter.ThreadPool.SizeMax=25 Ice.ThreadPool.Client.Size=5 Ice.ThreadPool.Client.SizeMax=35 Ice.ThreadPool.Server.Size=5 Ice.ThreadPool.Server.SizeMax=35
Thanks
Peter

Reply With Quote