Balancing IIS compression with CPU time? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:25:47Z http://stackoverflow.com/feeds/question/982559 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/982559/balancing-iis-compression-with-cpu-time 1 Balancing IIS compression with CPU time? AngryHacker 2009-06-11T17:41:25Z 2009-06-11T21:12:01Z <p>For instance, with a level of IIS compression set to 9, the web browsing is significantly faster. However, I also have a Web Services application on the box, which transfers significant amounts of data (e.g. 3MB payload is typical), it actually takes 20-30% longer for the data to get to the client, because the CPU on the server takes a while to compress it.</p> <p>Is there a rule of thumb for the level of IIS compression vs amount of data transfered?</p> <p>Anecdotal experience is welcome as well.</p> http://stackoverflow.com/questions/982559/balancing-iis-compression-with-cpu-time/982631#982631 0 Answer by Thorarin for Balancing IIS compression with CPU time? Thorarin 2009-06-11T17:55:44Z 2009-06-11T17:55:44Z <p>Doubtful, because there are so many variables:</p> <ul> <li>client/server connection speed</li> <li>CPU speed and workload</li> <li>Type of data (entropy)</li> <li>...</li> </ul> <p>I expect the connection is fairly speedy in your use case? Compressing 3MB shouldn't take all that long after all.</p> http://stackoverflow.com/questions/982559/balancing-iis-compression-with-cpu-time/983714#983714 0 Answer by AngryHacker for Balancing IIS compression with CPU time? AngryHacker 2009-06-11T21:12:01Z 2009-06-11T21:12:01Z <p>Ok, I ran some benchmarks and no matter how you slice it, <strong>turning off compression results in faster performance</strong> for my use case. Here are the result for a web service call that returns 3.2 megabytes of data (mostly list of things deserialized into byte arrays)</p> <pre><code>Compression Bandwidth Time Level (KB) (seconds) 9 1,174 4.2 8 1,174 2.2 7 1,172 1.625 6 1,174 1.5 5 1,181 1.39 4 1,213 1.344 3 1,441 1.375 2 1,490 1.344 1 1,548 1.312 0 1,554 1.312 No 3,226 1.266 Compression </code></pre> <p>The CPU is pretty pegged at level 9 for the duration of the web service call, not so bad at level 8 and anything beneath that is in single digits utilization.</p>