All of lore.kernel.org
 help / color / mirror / Atom feed
From: Leonardo Balliache <leoball@opalsoft.net>
To: lartc@vger.kernel.org
Subject: Re: [LARTC] hardware requirements
Date: Sat, 12 Jul 2003 19:17:28 +0000	[thread overview]
Message-ID: <marc-lartc-105803754630610@msgid-missing> (raw)
In-Reply-To: <marc-lartc-105791819408788@msgid-missing>

Hi, Nickola:

At 02:44 p.m. 11/07/03 +0300, you wrote:

>The only problem I'm experiencing is with heavy udp traffic, f.e. Counter 
>Strike
>and Bnetd (Diablo, DiabloII, {Star|War}Craft) game play. Then the machine 
>is reaching
>some really high load averages, like 8 to 10. Have no idea how this
>could be avoided.
>
>I'd appreciate any suggestions.

UDP traffic is very difficult to control because the protocol is 
unresponsive. Then the only way to put it under control is by killing its 
packets. This doesn´t mean that it is going to lowering its rate, just that 
you kill all packets that violate an upper level.

You could do that at ingress using something like this:

tc qdisc add dev eth0 handle ffff: ingress

tc filter add dev eth0 parent ffff: protocol ip prio 1 u32 \
    match ip protocol 17 0xff police rate 1200kbit \
    burst 75kb drop flowid :1

Here UDP traffic is policed to 1200kbit.

Then using tcindex you can filter them again when leaving to select an 
output class for these "bad citizen" flows.

UDP transports RTP that is always a problem. Application flows travelling 
on it are very sensitive to latency and jitter. Some multimedia protocols, 
like MPEG,  are also very sensitive to packet dropping because when you 
lose an I-decode frame you lose too a GOP (group of pictures); really a 
problem.

Using a policer you at least guarantee yourself they are not going to 
starve other (TCP good citizen) flows and your servers. But packet masacre 
generates then quality problem to the multimedia applications. Perhaps the 
best solution is overprovisioning. Check how many flows of this type you 
have on peak hours, check the bandwidth requirement of each of them, and 
supercharge your servers to support the storm.

RED, or GRED even better, can help too. This case the control is less 
agressive and, perhaps, things go better. It´s just a matter to have time 
and patient to make some tests.

You can search for more information on my site, below.

Best regards,

Leonardo Balliache



Practical QoS
http://opalsoft.net/qos


_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

      parent reply	other threads:[~2003-07-12 19:17 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-07-11 10:08 [LARTC] hardware requirements alexandru matei
2003-07-11 11:44 ` Nickola Kolev
2003-07-11 11:56 ` Catalin BOIE
2003-07-11 12:51 ` Nickola Kolev
2003-07-11 13:01 ` Catalin BOIE
2003-07-12 19:17 ` Leonardo Balliache [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=marc-lartc-105803754630610@msgid-missing \
    --to=leoball@opalsoft.net \
    --cc=lartc@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.