You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Greg Ames <gr...@apache.org> on 2002/05/28 17:05:25 UTC

httpd 2.0.37-dev is live on daedalus

...since Saturday, 25-May-2002 18:46:07 PDT.  This is HEAD from around 11 AM
Friday.  There were two specific problems I was hoping we'd solve:

* the intermittent sendfile_it_all asserts when the file shrinks in the middle
of a request, and
* the bogus 416's (bad Range:)

It's too early to tell if the first problem is gone forever.  

There are lots of 416's in the logs this morning, more than I remember seeing
before:

[gregames@daedalus httpd-2.0.37dev]$ grep " 416 " /logs/www/weblog | wc -l
   12792

...but the vast majority of them are Win98 browsers trying to download zip files
from dist/httpd.

[gregames@daedalus gregames]$ grep " 416 " /logs/www/weblog | grep
"dist/httpd.*zip.*Windows 98" | wc -l
   11883

Any ideas why these might be problematic today?  I don't remember seeing such a
lopsided proportion of Win98 416's before.

Greg

Re: httpd 2.0.37-dev is live on daedalus

Posted by Justin Erenkrantz <je...@apache.org>.
On Tue, May 28, 2002 at 11:05:25AM -0400, Greg Ames wrote:
> [gregames@daedalus gregames]$ grep " 416 " /logs/www/weblog | grep
> "dist/httpd.*zip.*Windows 98" | wc -l
>    11883
> 
> Any ideas why these might be problematic today?  I don't remember seeing such a
> lopsided proportion of Win98 416's before.

Hmm.  Can we get a trace (either just headers or network)?  Or, can
someone reproduce this?

I tried to test the byterange logic here when I rewrote the filter,
and it seemed to work.  Maybe there is a browser bug.  -- justin

Re: httpd 2.0.37-dev is live on daedalus

Posted by Greg Ames <gr...@apache.org>.
Marc Slemko wrote:
> 
> On Tue, 28 May 2002, Greg Ames wrote:
> 
> > There are lots of 416's in the logs this morning, more than I remember seeing
> > before:

> ie. most of the hits come from one group of web caches that is either
> just messed up or has stupid clients behind it.

Thanks, Marc.  I'm not going to worry about it then.

Greg

Re: httpd 2.0.37-dev is live on daedalus

Posted by Marc Slemko <ma...@znep.com>.
On Tue, 28 May 2002, Greg Ames wrote:

> There are lots of 416's in the logs this morning, more than I remember seeing
> before:
> 
> [gregames@daedalus httpd-2.0.37dev]$ grep " 416 " /logs/www/weblog | wc -l
>    12792
> 
> ...but the vast majority of them are Win98 browsers trying to download zip files
> from dist/httpd.
> 
> [gregames@daedalus gregames]$ grep " 416 " /logs/www/weblog | grep
> "dist/httpd.*zip.*Windows 98" | wc -l
>    11883

A more useful tally shows:

marc@daedalus:/x1/home/marc$ grep " 416 " /logs/www/weblog | grep "dist/httpd.*zip.*Windows 98" | awk '{print $2}' | sort | uniq -c | sort -n | tail
  41 195.75.14.50
  83 211.91.252.200
 100 63.101.129.250
 101 195.175.210.168
 101 61.185.171.150
 665 217.70.108.6
2200 217.70.107.198
2366 195.92.168.169
3040 195.92.168.163
3368 195.92.168.165

ie. most of the hits come from one group of web caches that is either 
just messed up or has stupid clients behind it.