All of lore.kernel.org
 help / color / mirror / Atom feed
* [LARTC] RE: Anything out there that is similar to Cisco's WFQ?
@ 2002-07-10 20:16 Paul
  2002-07-10 20:27 ` Don Cohen
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Paul @ 2002-07-10 20:16 UTC (permalink / raw)
  To: lartc

Nooooo SFQ is not like WFQ... WRR is the closest thing to cisco's
fair-queue..
WRR keeps track of the connections using the ip_conntrack .. that's sort of
what
cisco's fair-queue does and it checks the bandwidth streams and gives lower
priority
to the higher streams and larger packets.. it's meant to reduce latency for
traffic
shaping and it does :)
I haven't tried WRR but it looks like the closest thing to it although it
doesn't
take everything in to account as cisco's flow based WFQ does..

Paul

-----Original Message-----
From: Don Cohen [mailto:don-lartc@isis.cs3-inc.com]
Sent: Wednesday, July 10, 2002 3:55 PM
To: xerox@foonet.net; lartc@mailman.ds9a.nl
Subject: Anything out there that is similar to Cisco's WFQ?


 > From: "CIT/Paul" <xerox@foonet.net>
 > Any help would be greatly appreciated :) This is much better than SFQ :>

Sounds like SFQ to me.  Can you tell us what the differences are?

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [LARTC] RE: Anything out there that is similar to Cisco's WFQ?
  2002-07-10 20:16 [LARTC] RE: Anything out there that is similar to Cisco's WFQ? Paul
@ 2002-07-10 20:27 ` Don Cohen
  2002-07-10 20:54 ` Don Cohen
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Don Cohen @ 2002-07-10 20:27 UTC (permalink / raw)
  To: lartc

Paul writes:
 > Nooooo SFQ is not like WFQ... WRR is the closest thing to cisco's
 > fair-queue..
 > WRR keeps track of the connections using the ip_conntrack .. that's sort of
 > what
 > cisco's fair-queue does and it checks the bandwidth streams and gives lower
 > priority
 > to the higher streams and larger packets.. it's meant to reduce latency for
 > traffic
 > shaping and it does :)
 > I haven't tried WRR but it looks like the closest thing to it although it
 > doesn't
 > take everything in to account as cisco's flow based WFQ does..

This is not very convincing.  Do you actually know how WFQ
works?  If so, please tell us.  The doc you sent did not describe how
it works but what the effects are, and those are entirely consistent
with what SFQ does. 
High bandwidth flows are limited, low bandwidth flows get lower
latency.  Can you describe some effect that's different?
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [LARTC] RE: Anything out there that is similar to Cisco's WFQ?
  2002-07-10 20:16 [LARTC] RE: Anything out there that is similar to Cisco's WFQ? Paul
  2002-07-10 20:27 ` Don Cohen
@ 2002-07-10 20:54 ` Don Cohen
  2002-07-10 20:55 ` John Bäckstrand
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Don Cohen @ 2002-07-10 20:54 UTC (permalink / raw)
  To: lartc

=?iso-8859-1?Q?John_Bäckstrand?= writes:
 > > This is not very convincing.  Do you actually know
 > how WFQ
 > > works?  If so, please tell us.  The doc you sent did
 > not describe how
 > > it works but what the effects are, and those are
 > entirely consistent
 > > with what SFQ does.
 > > High bandwidth flows are limited, low bandwidth flows
 > get lower
 > > latency.  Can you describe some effect that's
 > different?
 > 
 > I read a bit on WFQ earlier, Im not grasping it totally
 > and I dont know every implementation detail, but I
 > think its basically WRR but taking actual bandwidth
 > usage into account, and not just packet-counts. Well,
 > try this:
 > 
 > http://www.sics.se/~ianm/WFQ/wfq_descrip/node21.html

This sounds just like SFQ except for the weights.
I have a variant of SFQ that does support weights if that's important.
It's easy to add.  (The hard part is the code that allows you to
configure the weights.)
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [LARTC] RE: Anything out there that is similar to Cisco's WFQ?
  2002-07-10 20:16 [LARTC] RE: Anything out there that is similar to Cisco's WFQ? Paul
  2002-07-10 20:27 ` Don Cohen
  2002-07-10 20:54 ` Don Cohen
@ 2002-07-10 20:55 ` John Bäckstrand
  2002-07-10 21:09 ` John Bäckstrand
  2002-07-10 21:14 ` John Bäckstrand
  4 siblings, 0 replies; 6+ messages in thread
From: John Bäckstrand @ 2002-07-10 20:55 UTC (permalink / raw)
  To: lartc

> This is not very convincing.  Do you actually know
how WFQ
> works?  If so, please tell us.  The doc you sent did
not describe how
> it works but what the effects are, and those are
entirely consistent
> with what SFQ does.
> High bandwidth flows are limited, low bandwidth flows
get lower
> latency.  Can you describe some effect that's
different?

I read a bit on WFQ earlier, Im not grasping it totally
and I dont know every implementation detail, but I
think its basically WRR but taking actual bandwidth
usage into account, and not just packet-counts. Well,
try this:

http://www.sics.se/~ianm/WFQ/wfq_descrip/node21.html

Im sure you all can get more out of it than me, a total
newbie to queueing theory and QoS.

---
John Bäckstrand


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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [LARTC] RE: Anything out there that is similar to Cisco's WFQ?
  2002-07-10 20:16 [LARTC] RE: Anything out there that is similar to Cisco's WFQ? Paul
                   ` (2 preceding siblings ...)
  2002-07-10 20:55 ` John Bäckstrand
@ 2002-07-10 21:09 ` John Bäckstrand
  2002-07-10 21:14 ` John Bäckstrand
  4 siblings, 0 replies; 6+ messages in thread
From: John Bäckstrand @ 2002-07-10 21:09 UTC (permalink / raw)
  To: lartc

> =?iso-8859-1?Q?John_Bäckstrand?= writes:
>  > > This is not very convincing.  Do you actually
know
>  > how WFQ
>  > > works?  If so, please tell us.  The doc you sent
did
>  > not describe how
>  > > it works but what the effects are, and those are
>  > entirely consistent
>  > > with what SFQ does.
>  > > High bandwidth flows are limited, low bandwidth
flows
>  > get lower
>  > > latency.  Can you describe some effect that's
>  > different?
>  >
>  > I read a bit on WFQ earlier, Im not grasping it
totally
>  > and I dont know every implementation detail, but I
>  > think its basically WRR but taking actual
bandwidth
>  > usage into account, and not just packet-counts.
Well,
>  > try this:
>  >
>  >
http://www.sics.se/~ianm/WFQ/wfq_descrip/node21.html
>
> This sounds just like SFQ except for the weights.
> I have a variant of SFQ that does support weights if
that's important.
> It's easy to add.  (The hard part is the code that
allows you to
> configure the weights.)

I was under the impression that the weights of WFQ isnt
actually supposed to be set manually, but rather
automatically. This page has a nice picture of WFQ (I
think)

http://www.cisco.com/warp/public/732/Tech/wfq/

It says: "Weight determined by:
*Required QoS (IP Procedure, RSVP)
*Flow throughput inversely proportional
*Frame relay FECN, BECN, DE (for FR Traffic)"

Only think I actually understood was "Flow throughput
inversely proportional" which is a property I am
looking for when trying to find a traffic control
implementation.

---
John Bäckstrand


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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [LARTC] RE: Anything out there that is similar to Cisco's WFQ?
  2002-07-10 20:16 [LARTC] RE: Anything out there that is similar to Cisco's WFQ? Paul
                   ` (3 preceding siblings ...)
  2002-07-10 21:09 ` John Bäckstrand
@ 2002-07-10 21:14 ` John Bäckstrand
  4 siblings, 0 replies; 6+ messages in thread
From: John Bäckstrand @ 2002-07-10 21:14 UTC (permalink / raw)
  To: lartc

Btw, about the original question (havent got the
original email left), there is a WFQ implementation for
ALTQ and FreeBSD, but it seems to not work too well:

http://www.criticalsoftware.com/research/pdf/Paper-PS.p
df

http://corn.eos.nasa.gov/qos/qos_results_summary_july98
.html

---
John Bäckstrand



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

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2002-07-10 21:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-07-10 20:16 [LARTC] RE: Anything out there that is similar to Cisco's WFQ? Paul
2002-07-10 20:27 ` Don Cohen
2002-07-10 20:54 ` Don Cohen
2002-07-10 20:55 ` John Bäckstrand
2002-07-10 21:09 ` John Bäckstrand
2002-07-10 21:14 ` John Bäckstrand

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.