Choppy TCP send performance

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Ivan Novick
Date: Friday, May 28, 2010 - 1:38 pm

Hello,

I am using RHEL5 and have 1 Gigabit NIC cards.

When doing a loop sending 128 KB blocks of data using TCP.  I am using
system tap to debug the performance and finding that:

90% of the send calls take about 100 micro seconds and 10% of the send
calls take about 10 miliseconds.  The average send time is about 1
milisecond

The 10% of the calls taking about 10 milliseconds seem to be
correlated with "sk_stream_wait_memory" calls in the kernel.

sk_stream_wait_memory seems to be called when the send buffer is full
and the next send call does not complete until the send buffer
utilization goes down from 4,194,304 bytes to 2,814,968 bytes.

This implies that the send that blocks on a full send buffer will not
complete until there is 1 meg of free space in the send buffer even
though the send could be accepted into the OS with only 128KB of free
space.

Do you think I am misinterpreting this data or is there a way to even
out the send calls so that they they are more even in duration: approx
1 milisecond per call.  Is there a parameter to reduce how much space
needs to be free in the send buffer before a blocking send call can
complete from user space?

Cheers,
Ivan
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Choppy TCP send performance, Ivan Novick, (Fri May 28, 1:38 pm)
Re: Choppy TCP send performance, Eric Dumazet, (Fri May 28, 2:16 pm)
Re: Choppy TCP send performance, Ivan Novick, (Fri May 28, 2:35 pm)
Re: Choppy TCP send performance, Eric Dumazet, (Fri May 28, 3:00 pm)
Re: Choppy TCP send performance, Rick Jones, (Fri May 28, 3:08 pm)
Re: Choppy TCP send performance, Ivan Novick, (Fri May 28, 3:23 pm)
Re: Choppy TCP send performance, Ivan Novick, (Fri May 28, 3:28 pm)
Re: Choppy TCP send performance, Rick Jones, (Fri May 28, 3:57 pm)