JiscMail Logo
Email discussion lists for the UK Education and Research communities

Help for DC-GENERAL Archives


DC-GENERAL Archives

DC-GENERAL Archives


DC-GENERAL@JISCMAIL.AC.UK


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

DC-GENERAL Home

DC-GENERAL Home

DC-GENERAL  May 1996

DC-GENERAL May 1996

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

Re: boil and trouble

From:

Martin Hamilton <[log in to unmask]>

Reply-To:

[log in to unmask]

Date:

Sat, 04 May 1996 20:51:36 +0100

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (162 lines)


Daniel LaLiberte writes:

| I comment on some aspects of Martin's draft, and then launch into how I
| think HTTP should deal with metadata.

:-))

| >    This document proposes some experimental mechanisms which may be
| >    deployed within HTTP [1] to provide a local search capability on the
| >    information being made available by an HTTP server, and reduce both
| >    the bandwidth consumed by indexing agents, and the amount of work
| >    done by HTTP servers during the indexing process.
| 
| This is an excellent goal.  Are you perhaps planning (hoping?) to attend
| the distributed searching and indexing workshop?

I'm not real big on workshops and conferences!

| There are a number of other rationales for why the goal is worth seeking
| even if one does not want to actively support more web crawling.  On the
| other hand, I don't know if there is a strong enough case for the
| argument that web crawling is excessively loading the network and
| servers.  Some alternative rationales are the desire for contrained
| replication of indexing services within an intranet, and client directed
| searching of distributed indexes.

It's an interesting one, for sure.  To get a quick snapshot I had a 
look at the usage stats on our main WWW server for the last few months. 
 Most months it looks like this:

%Reqs %Byte  Bytes Sent  Requests   Reversed Subdomain
----- ----- ------------ -------- |--------------------
56.67 35.89    772653477   261273 | uk.ac.lut
12.78 13.23    284833493    58939 | Unresolved
 4.02  0.86     18421219    18550 | uk.co.spice
 1.53  0.47     10035051     7037 | com.lycos.srv
 0.63  0.34      7308669     2924 | net.ja.lut
 0.58  0.41      8734050     2653 | com.mckinley
 0.54  0.74     15900604     2504 | uk.co.demon
 0.49  0.57     12309822     2242 | uk.ac.hensa
 0.38  0.23      5053358     1773 | com.atext
 0.37  0.52     11151840     1726 | com.compuserve

i.e. most web crawlers account for less than 1% of the requests and 
bytes delivered every month.  Those "spice" people seem to be a bit 
more agressive than most ;-)

This might look quite reasonable, but when you add up the known and 
suspected robots' entries we start to head up towards the 10% mark.  I 
don't want my server to spend 10% of its time servicing requests from 
web crawlers, and I don't want to tie up anything like that much 
bandwidth talking to them.

| Another alternative to keep in mind is that some servers might want
| indexing to be done by an associated server, perhaps one they contract
| with for this service.  So a request for indexing info or searching
| services might reasonably be redirected to another server.

Good one!

Perhaps via an HTTP "Location:" header and a redirect response code ?

| This much is great, although I am skeptical of the utility of any
| request having to do with everything on a server.  Frequently there
| are many disjoint collections on one server, so it might make
| more sense to first ask for the list of collections.

Yes, it begs the question of how you discover what collections of info 
the server offers...!

In the context of current web crawler technology, I think "*" is the 
only thing they'll be interested in ?  What's important is not to make 
it hard to introduce other more advanced indexing scenarios in the 
future - e.g. I will only let you index my server if you pay me $$$ 
derived from your advertising revenue

| Just as COLLECT was based on either everything in the server or
| everything in a particular collection, so should SEARCH be.  So the
| Request-URI for a SEARCH request should be either "*" or the URI of a
| collection.  The parameters of the search should be in additional
| header lines specific to the search request, just as the COLLECT request
| used additional header lines to parameterize it.  

Yep!  Arguable whether Request-URI: should actually be used for 
anything ? ...or just there as a filler to make up the HTTP request :-)

| Rewriting your example, I might do it something like this:
| 
| C: SEARCH /vips HTTP/1.1
| C: Accept: application/whois, text/html
| C: Host: www.lut.ac.uk
| C: Protocol: whois++
| C: Query: keywords=venona
| C:
| S: 200 OK search results follow
| S: Content-type: application/whois
| S:
| S: [...etc...]

I think the Protocol attribute wants to include a URI to the spec, and 
mandate that it needs to be supported, in which case the header would 
end up looking something like this ... ?

  Protocol: {ftp://ftp.internic.net/rfc/rfc1835.txt {str req}}

And a PEP aware server's response would use one of the ?2? response 
code series? e.g.

  220 Umm, OK, I think I understand...

Question: with PEP, is there really any point in using separate methods 
?

In any case, for the COLLECT operation at least, it would seem to be 
desirable to have something which could be used straight away with GET 
to retrieve the entire collection of indexing info for a server, or 
with a couple of PEP headers to retrieve a subset of the available info 
- a la Harvest.  Hmm!

This would still have the drawback that server admins would need to run 
something like Robert Thau's site-index.pl to generate the indexing 
info.  With support built into the server, we can make the server 
generate this automagically - and take them out of the loop!

| >    This document has suggested that search requests be presented using a
| >    new HTTP method, primarily so as to avoid confusion when dealing with
| >    servers which do not support searching.  This approach has the
| >    disadvantage that there is a large installed base of clients which
| >    would not understand the new method, a large proportion of which have
| >    no way of supporting new HTTP methods.
| 
| Deployment is an interesting hard problem.

And that's before you get onto choosing between metadata formats... ;-)

| Changes to HTML would not necessarily be needed even to support new
| methods.  In addition to the method name, where are the additional
| parameters of the request?  One solution is to package up the whole
| request, including the method name, the URI, and additional parameters
| into a new URI.  I've been calling this the "call" URI scheme.  The
| above example might appear as:
| 
| call:SEARCH;Protocol='whois++';Query='keywords=venona';http://www.lut.ac.uk/v
| ips

Question: should HTTP clients need fixing up in order to be capable of 
supporting (ableit perhaps not in the most sophisticated way) a common 
search scheme ?

[...]

| That's enough for now.  Comments appreciated, but please try to respond
| before the web conference next week as I plan to present some of this in
| the URC panel.

I was going to say "see you on the MBONE" but I see this isn't one of 
the sessions being multicast.  Awww, shucks!



Top of Message | Previous Page | Permalink

JiscMail Tools


RSS Feeds and Sharing


Advanced Options


Archives

February 2024
May 2022
April 2022
March 2022
March 2020
February 2019
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
January 2018
December 2017
November 2017
October 2017
September 2017
August 2017
July 2017
June 2017
May 2017
April 2017
March 2017
February 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
March 2016
February 2016
January 2016
December 2015
November 2015
October 2015
September 2015
August 2015
July 2015
June 2015
May 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010
August 2010
July 2010
June 2010
May 2010
April 2010
March 2010
February 2010
January 2010
December 2009
November 2009
October 2009
September 2009
August 2009
July 2009
June 2009
May 2009
April 2009
March 2009
February 2009
January 2009
December 2008
November 2008
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
January 2008
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
February 2007
January 2007
December 2006
November 2006
October 2006
September 2006
August 2006
July 2006
June 2006
May 2006
April 2006
March 2006
February 2006
January 2006
December 2005
November 2005
October 2005
September 2005
August 2005
July 2005
June 2005
May 2005
April 2005
March 2005
February 2005
January 2005
December 2004
November 2004
October 2004
September 2004
August 2004
July 2004
June 2004
May 2004
April 2004
March 2004
February 2004
January 2004
December 2003
November 2003
October 2003
September 2003
August 2003
July 2003
June 2003
May 2003
April 2003
March 2003
February 2003
January 2003
December 2002
November 2002
October 2002
September 2002
August 2002
July 2002
June 2002
May 2002
April 2002
March 2002
February 2002
January 2002
December 2001
November 2001
October 2001
September 2001
August 2001
July 2001
June 2001
May 2001
April 2001
March 2001
February 2001
January 2001
December 2000
November 2000
October 2000
September 2000
August 2000
July 2000
June 2000
May 2000
April 2000
March 2000
February 2000
January 2000
December 1999
November 1999
October 1999
September 1999
August 1999
July 1999
June 1999
May 1999
April 1999
March 1999
February 1999
January 1999
December 1998
November 1998
October 1998
September 1998
August 1998
July 1998
June 1998
May 1998
April 1998
March 1998
February 1998
January 1998
December 1997
November 1997
October 1997
September 1997
August 1997
July 1997
June 1997
May 1997
April 1997
March 1997
February 1997
January 1997
December 1996
November 1996
October 1996
September 1996
August 1996
July 1996
June 1996
May 1996
April 1996
March 1996


JiscMail is a Jisc service.

View our service policies at https://www.jiscmail.ac.uk/policyandsecurity/ and Jisc's privacy policy at https://www.jisc.ac.uk/website/privacy-notice

For help and support help@jisc.ac.uk

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager