Linux Today: Linux News On Internet Time.
Search Linux Today
search.internet.com
Linux News Sections:  Blog -  Developer -  High Performance -  Infrastructure -  IT Management -  Security -  Storage -
Linux Today Navigation
LT Home
Preferences
Contribute
Link to Us
Search
Linux Jobs

Become a Marketplace Partner

internet.commerce
Be a Commerce Partner














The Linux Channel at internet.com
Linux Today
Enterprise Linux Today
Apache Today
JustLinux.com
Linux Planet
PHPBuilder
All Linux Devices
Technology Jobs

JustTechJobs.com

LinuxToday Newsletters
Server Daily
IT Management Daily
Subscribe News
Subscribe PR
Subscribe Security

internet.com
IT
Developer
Internet News
Small Business
Personal Technology

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers

 







Current Newswire:

Oracle Squelches Open Source Spirit

Samsung unveils Android tablet with 3G telephony

Linux machines with no rebooting…? Is this what we want?

SECURITY: Best Practices with sudo on Linux

ArtistX 0.9 Screenshots

Three locks for your SSH door

KDE 4.5: KDE 3.5's Stability + KDE 4.0's Promised Features

Qt and Layouts

Who Contributed The Most During X Server 1.9?

Microsoft Argues That Android Isn't 'Free'




Implementation Engineer Sr – UNIX (TX)
Next Step Systems
US-TX-Houston

Justtechjobs.com Post A Job | Post A Resume
:SPECweb99 Benchmark clarification
SPECweb99 Benchmark clarification
Jul 5, 2000, 23 :23 UTC (38 Talkback[s]) (29346 reads)

(Other stories by Marty Pitts)

By Marty Pitts, Linux Today

There has been a lot of interest in the results of the SPECweb99 benchmark tests that were preformed on two similar Dell PowerEdge 6400/700 servers.

At the end of the article I asked if the seemingly minor differences in the hardware could account for the large difference in the results. In addition to the talkbacks posted, I received several emails with new information about the tests as well as questions about the hardware involved.

One individual asked about the difference in the hard drive controllers. This person noted:

    "The Linux machine was equipped with an Adaptec-7899 controller. This is a dual channel, Ultra160/m controller. The Win2k machine was equipped with a Dell PERC2. This is a quad channel, Ultra2 controller.

    The difference is that the Linux machine had a controller capable of 160MB/sec, while the Win2k machine had a controller capable of 80MB/sec. I do think that could have impacted the results."

As it turns out, I was able to speak with an informed source who has knowledge of the machines involved and tests performed on them. When I relayed the concerns about the hard drive controllers, this person was able to clarify it this way:
    "Yes, but in what direction? The PERC2 had 128MB of memory, and a CPU independent of the system's main processors.

    Anyway, the disk configuration is nearly irrelevant to the W2K results. Look at the result page - the fileset size is about 5GB, and (the machines) had 8GB of RAM. Everything was cached - the only disk activity was logging, which is pretty minimal. All the PERC2 did was get the data to memory quicker on the first access."

The individual who raise the hard drive controller question also asked about the Network Controllers:
    "The Linux machine was equipped with an AceNic 1000SX. This is a Gigabit Fiberoptic network adapter.
    The Win2k machine was equipped with a AceNic PCI. This is a autosensing 10/100/1000Base-T adapter using UTP.

    The difference here is obvious, and you did not state at what speed the Win2k boxes network connection was running at. That card is capable of running either 1Gbit/s, 100Mbit/s, or 10Mbit/s, autosensing. If plugged into the wrong port, or into a slower hub, or with substandard cable, it could have been running at as much as 1/100 the speed of the card in the linux machine."

The person close the the tests responded:
    "Actually his assumption is wrong. The client and network switch setup was identical for both results. (The testers) were just trying to clarify that the fiber NIC was being used. ACEnic PCI (PCI bus) could be either fiber or copper now - in the past there was only fiber, so ACEnic PCI was enough."
One person wrote in with concerns that the Linux machine had an advantage since it was using an in-kernel HTTP cache. This would give the Linux box a definite advantage when serving static pages. While Windows does have a similar technology, doubts were raised about it being used for the tests.

The person close to the test responded:

    "Sun also has similar technology available in Solaris 7 and 8, SNCA (Sun Network Cache Accelerator). Linux also has similar technology in khttpd.

    SNCA, FRCA, SWC and NWSA were used on SPECweb96, which was 100% static content, but none have been used on SPECweb99 with 70% static and 30% dynamic content. Certainly if they could be used, they would be - competition for top SPECweb numbers is intense.

    TUX includes an in-kernel HTTP cache but is also a full- featured http server itself. The others above are only caches. Ingo Molnar at Red Hat did the vast majority of the work on TUX and can answer specific TUX questions."

When asked about Tux 1.0 and the performance difference Ingo Monar of Red Hat responded:

    > SNCA, FRCA, SWC and NWSA were used on SPECweb96, which was 100% static
    > content, but none have been used on SPECweb99 with 70% static and 30%
    > dynamic content. [...]

    Indeed, and I believe the reason is fundamental. I'd like to refer to the following comment as a background on TUX's design:

    This comment should explains some fundamental properties of TUX.

    SNCA, FRCA, SWC and NWSA are standalone static-only web-reply caches.

    TUX is a very different thing, it's a:

    • event-based HTTP protocol stack providing encapsulated HTTP services to user-space code

    • object cache, where objects can be combined with dynamic content freely. You can witness this in the SPECweb99 submission, the SPECweb99 TUX dynamic module (every vendor has to write a SPECweb99 module to serve dynamic content) 'embedds' TUX objects in dynamic replies. The TUX object cache is not a dumb in-memory HTTP-reply cache, it's a complex object cache providing async disk IO capabilities to user-space as well. User-space application code can request objects from the cache and can use them in dynamic (or static) replies.

    • full fledged webserver providing HTTP 1.1 keepalive, CGI, logging, transparent redirection, and many other features.

    So in our opinion TUX is a new and unique class of webserver, there is no prior art implementing such kind of 'HTTP stack' and 'abstract object cache' approach. It's i believe a completely new approach to webserving. Please read this comment too, which (i hope) further explains the in-kernel issue:

    Also, you might want to take a look at the TUX SPECweb99 module source code to see how the TUX HTTP protocol stack works in practice:

    I'd like to point out that I have no affiliation with SPEC, and we (Red Hat) picked the SPECweb99 suite because of it's sophisticated and realistic workload and the independence SPEC guarantees. The SPECweb99 suite is designed to create a complex workload, and such workload defeats in-kernel static webcaches such as SWC. The workload is 'mixed up', ie. the same web objects are requested in static and dynamic requests, and it's forbidden to cache dynamic replies. CGI requests are part of the workload as well.

    I have specifically designed TUX to be integrated into Apache. While the GPL (TUX is under the GPL) and the Apache Software License are incompatible, I do plan to allow licensing the TUX 'user-space glue code' under the ASL as well - further easing the integration of TUX capabilities into Apache 2.0 or 3.0."

Please feel free to post further comments and questions on these tests below.

Related Stories:
Spec.org: Second Quarter 2000 SPECweb99 Results [Linux beats Windows 2000 in benchmark](Jul 05, 2000)


Index Mode   |   Flat Mode   |   Thread Mode   |   Thread Flat  
  Talkback(s) Name  and Date
All that TUX rigamarole is very nice, bu ...   Oh sure, that's nice.   
Dean Pannell (a.k.a. dinotrac)
Jul 5, 2000, 23:54:27
 
Your argument seems to rely on the cache ...   Pity they limited the IIS cache size   
Simon Cooke
Jul 6, 2000, 00:12:42
 
IIS's cache size was set to 2GB not  ...   Re: IIS has inherent limitations   
Ingo Molnar
Jul 6, 2000, 00:37:23
 
Not really.  The Dell results are the be ...   Re: Pity they limited the IIS cache size   
Kevin Forge
Jul 6, 2000, 00:45:16
 
Well, that may make sense for a major we ...   8GB RAM !   
Charles Hixson
Jul 6, 2000, 00:48:38
 
Are you saying that all the performers o ...   RE: Pity they limited the IIS cache size   
Russell C Pavlicek
Jul 6, 2000, 00:50:41
 
If the 8GB monster is too big for you, c ...   Re: 8GB RAM !   
Ingo Molnar
Jul 6, 2000, 00:57:25
 
Well, that may make sense for a major we ...   Re: 8 BG RAM!   
Ted Clark
Jul 6, 2000, 02:46:46
 
> Your argument seems to rely on the cac ...   Re: Pity they limited the IIS cache size   
Ravi Nanavati
Jul 6, 2000, 02:48:15
 
I'd like to see a realistic benchmar ...   Reality Check   
Steven Walker
Jul 6, 2000, 03:26:13
 
The fact that there seems to be no menti ...   Guarantee of accuracy   
Colin Walls
Jul 6, 2000, 07:58:53
 
I agree mostly, but I think any tweaking ...   Re: Reality Check   
Johan
Jul 6, 2000, 11:49:19
 
> I'd like to see a realistic benchm ...   Re: Reality Check   
Ed Wilts
Jul 6, 2000, 13:49:37
 
That means, that a single processor TUX  ...   Re: Re: 8GB RAM !   
Wolfgang Schneider
Jul 6, 2000, 17:10:38
 
Let's see this:

#1. Use the same  ...   Hey! Let's all Cry Wolf, shall we?   
Byron
Jul 6, 2000, 17:13:14
 
Yeah, well the hardware they specified f ...   Re: Re: Reality Check   
Byron
Jul 6, 2000, 17:21:12
 
I've seen Windows 2000 Data Center c ...   Re: Hey! Let's all Cry Wolf, shall we?   
Ted Clark
Jul 6, 2000, 18:48:24
 
Hmm... Everyone focuses on beating Micro ...   Beating a RS/6000 is far more impressive than beat   
David Acklam
Jul 6, 2000, 18:50:51
 
Lets both assume that we are setting up  ...   Don't forget to pay for the licenses   
Jimmy the Geek
Jul 6, 2000, 21:58:42
 
It's seems to me the solution to thi ...   Solution!   
William
Jul 6, 2000, 23:29:48
 
Hmm.. Byron, you said that you saw Windo ...   To Byron: Windows2K DC kill UNIX? What UNIX wa   
David Acklam
Jul 7, 2000, 17:32:08
 
> Let's see this:
> 
> #1. Use the ...   Re: Hey! Let's all Cry Wolf, shall we?   
Kyriakos K. Skafas
Jul 7, 2000, 19:29:07
 
Aahh, see you cannot compare Win2k and L ...   Re: Re: Hey! Let's all Cry Wolf, shall we?   
Andrei
Jul 11, 2000, 18:42:36
 
William,

I have Windows and Linux on  ...   Re: Solution!   
MarNuke
Jul 11, 2000, 19:47:22
 
> Aahh, see you cannot compare Win2k and ...   Re: Re: Re: Hey! Let's all Cry Wolf, shall we   
Lee
Jul 11, 2000, 19:48:41
 
>Yeah, well the hardware they specified  ...   Re: Re: Reality Check - Really   
blabla
Jul 11, 2000, 21:06:30
 
Why not run the tests again, only this t ...   Swap systems and then run tests again   
Geoffrey Atkinson
Jul 11, 2000, 21:15:23
 
IIS File Cache Maximum is 4GB not 8GB.   ...   Re: Re: IIS has inherent limitations   
Matt E
Jul 11, 2000, 21:38:27
 
Maybe the hardware configurations were s ...   Re: Swap systems and then run tests again   
John Booty
Jul 11, 2000, 21:45:50
 
If it were the MemCacheSize value Ravi t ...   Re: Re: Pity they limited the IIS cache size   
Matt E
Jul 11, 2000, 21:50:12
 
> Why not run the tests again, only this ...   Re: Swap systems and then run tests again   
Lee
Jul 12, 2000, 02:49:12
 
Folks, we aren't talking about cars  ...   Hardware concerns   
Bob Smith
Jul 12, 2000, 03:23:28
 
> If it were the MemCacheSize value Ravi ...   Re: Re: Re: Pity they limited the IIS cache size   
thalis
Jul 12, 2000, 08:49:53
 
I hardly belive that any of the files us ...   Re: Re: Re: Pity they limited the IIS cache size   
Anonymous Coward
Jul 12, 2000, 09:03:33
 
> Aahh, see you cannot compare Win2k and ...   Re: Re: Re: Hey! Let's all Cry Wolf, shall we   
Bernard
Jul 15, 2000, 02:14:37
 
The NT system had a better system and st ...   NT Disk Subsystem has the edge!   
Cowering Anonyme
Jul 18, 2000, 00:49:31
 
> Lets both assume that we are setting u ...   Re: Don't forget to pay for the licenses   
Hassan
Jul 18, 2000, 20:22:02
 
Put the httpd code into the kernel, and  ...   is this suprising?   
Bob Lamer
Sep 10, 2000, 17:58:35
 
  Home | Search Talkbacks | Customize View    Top of Page  



Enter your comments below:

* Your Name:

* Your Email Address:

* Subject:

CC: [will also send this talkback to an E-Mail address]

* Comments:

Tags allowed:<I>,<B> and <U>. See our talkback-policy for more about talkback content.

Fields marked with * are required!






..............................




All times are recorded in UTC.
Linux is a trademark of Linus Torvalds.
Powered by Linux, Apache and PHP