Page 1 of 1

Bandwidth Usage

Posted: Mon Aug 05, 2013 11:44 pm
by BloodyAcid
About how intense in bandwidth usage is Zandronum? Is it comparable in size to the .CLD files from recordings? If not, how much more/less would it be?

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 12:18 am
by ibm5155
Hmm it tends to eat more compared to skulltag, but it also depends of how many monsters/scripts/other things are running, and how well/optimized they´re

I only saw the scripts bandwidth, with a server side comand, I could fix some "simple" scripts that were eating 1kb/s of bandwidth D:

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 2:59 am
by Hypnotoad
Use SV_MeasureOutBoundTraffic and then DumpTrafficMeasure to see bandwidth usage.

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 10:36 am
by Cruduxy
It really depends on the wad you play.. Something like chillax is a bandwidth sink and I even saw it consume 3 MB per second.. some wads like WDI take ages to reach 40 mb used etc

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 12:16 pm
by Sicamore
Chillax uses 3mb a second? Are you sending a million actor states every second or something because that is damn crazy.

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 12:54 pm
by Yellowtail
Remember, Chillax has hundreds, maybe thousands, of monsters in the same room all moving at the same time. Add that with any number of players, projectiles, spawning things... you get the picture.

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 1:04 pm
by mr fiat
Yellowtail wrote: Remember, Chillax has hundreds, maybe thousands, of monsters in the same room all moving at the same time. Add that with any number of players, projectiles, spawning things... you get the picture.
i played chillax a few times, i personaly dont find it a very fun wad because it consist of impossible to beat maps that as you said have litterly thousands of monsters in a single room.

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 1:59 pm
by Cruduxy
Chillax is terrible but I admit can be fun IF you get a team of trusty players -lol-.
The fun in it is pretty much map dependent.. some maps like map32 are fun to watch while map13 is a @#$# piece of @##% with infinite monsters and insanely boring to watch -why there always is a troll shutting players off server playing it.. it should never be even in maplist-

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 2:52 pm
by Konar6
In case BloodyAcid was asking for actual bandwidth usage as a client, rather than a whole server usage - type stat nettraffic in console.
The comprehensive list of values shown are: bytes received this tick, bytes received last second, max bytes received per second, bytes sent this tick, bytes sent last second, max bytes sent per second.

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 3:35 pm
by ibm5155
3mb/s or 40mb/s ? I think it too much, like how could someone play a mod like this one if they don´t have enough internet D:
I really think it´s 3 or even 40kb/s.
Well on zombie horder on my own server the max that I saw was 23kb/s D:.
I think 40mb/s would be like stream a blue-ray movie, it´s too much data for such simple things (I think that a simple imp doesn´t even eat 12bytes of data xD)

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 3:53 pm
by Cruduxy
I remember players hosting a holy hell server... all I can say 7 mb connection couldnt even let me connect to server

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 4:25 pm
by Watermelon
Depends on the wad.

Zdoomwars = 1000+ monsters = 1000+ position updates = 35000+ updates per second = huge file.

Duels with 2 players are really small.

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 4:29 pm
by Frits
It's not bandwidth usage that prevents you from connecting. Missing packets happens on localhost too.

I tried testing it once with konar in what version zandro/98e got worse compared to 98d with loads of monsters. But the results were void because my cpu bottlenecked and i noticed it too late.

As a client chillax on maps like 13 only go to 800 kb/s on connecting/just after connecting.

Someone should look into this really.

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 7:39 pm
by Torr Samaho
Frits wrote: I tried testing it once with konar in what version zandro/98e got worse compared to 98d with loads of monsters. But the results were void because my cpu bottlenecked and i noticed it too late.
Well, if Zandronum needs more bandwidth than 98d, then most likely because of bug fixes that make Zandronum send information 98d should have send but didn't.

If any given wad needs too much bandwidth, you could use Zandronum's built in traffic analysis to figure out what's eating the bandwidth. When the culprit is found, we can start thinking about how to optimize the traffic usage.
Frits wrote: As a client chillax on maps like 13 only go to 800 kb/s on connecting/just after connecting.
Sounds as if this is caused by transferring the full update to a newly connecting client.

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 8:22 pm
by ibm5155
chillax: 34kb/s on map16 (with +-2000 monsters ingame, and most of then actived)
zombie horde:10kb/s on almost all maps

I think it´s a nice result :D

EDIT:
*___* my map only eats 6kb/s and max 8kb with 12 players (I thinked the ravishing script would kill the bandwidth but it eated less than 1kb :O), it´s weird to know that my map is one of the one that use less band on zombie horde O_o (At least from what I see...

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 8:35 pm
by Cruduxy
Hmm actually chillax is nothing bandwidth wise compared to some of the later maps in the wad -Don't know the numbers since not on zan pc but I know one that crashes most people once it starts

RE: Bandwidth Usage

Posted: Tue Aug 06, 2013 8:46 pm
by Ænima
Konar6 wrote: In case BloodyAcid was asking for actual bandwidth usage as a client, rather than a whole server usage - type stat nettraffic in console.
The comprehensive list of values shown are: bytes received this tick, bytes received last second, max bytes received per second, bytes sent this tick, bytes sent last second, max bytes sent per second.
I think I'll use this from now on. Thanks.

RE: Bandwidth Usage

Posted: Wed Aug 07, 2013 5:27 am
by BloodyAcid
Konar6 wrote: In case BloodyAcid was asking for actual bandwidth usage as a client, rather than a whole server usage - type stat nettraffic in console.
The comprehensive list of values shown are: bytes received this tick, bytes received last second, max bytes received per second, bytes sent this tick, bytes sent last second, max bytes sent per second.
Cool, that's what I was looking for. Thanks.