public inbox for overseers@sourceware.org
 help / color / mirror / Atom feed
* Don't let search bots look at buglist.cgi
@ 2011-05-13 17:14 Ian Lance Taylor
  2011-05-16  9:45 ` Richard Guenther
  0 siblings, 1 reply; 4+ messages in thread
From: Ian Lance Taylor @ 2011-05-13 17:14 UTC (permalink / raw)
  To: overseers, gcc-patches

[-- Attachment #1: Type: text/plain, Size: 570 bytes --]

I noticed that buglist.cgi was taking quite a bit of CPU time.  I looked
at some of the long running instances, and they were coming from
searchbots.  I can't think of a good reason for this, so I have
committed this patch to the gcc.gnu.org robots.txt file to not let
searchbots search through lists of bugs.  I plan to make a similar
change on the sourceware.org and cygwin.com sides.  Please let me know
if this seems like a mistake.

Does anybody have any experience with
http://code.google.com/p/bugzilla-sitemap/ ?  That might be a slightly
better approach.

Ian


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: patch --]
[-- Type: text/x-diff, Size: 393 bytes --]

Index: robots.txt
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/robots.txt,v
retrieving revision 1.9
diff -u -r1.9 robots.txt
--- robots.txt	22 Sep 2009 19:19:30 -0000	1.9
+++ robots.txt	13 May 2011 17:08:33 -0000
@@ -5,4 +5,5 @@
 User-Agent: *
 Disallow: /viewcvs/
 Disallow: /cgi-bin/
+Disallow: /bugzilla/buglist.cgi
 Crawl-Delay: 60

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Don't let search bots look at buglist.cgi
  2011-05-13 17:14 Don't let search bots look at buglist.cgi Ian Lance Taylor
@ 2011-05-16  9:45 ` Richard Guenther
  2011-05-16 20:35   ` Ian Lance Taylor
  0 siblings, 1 reply; 4+ messages in thread
From: Richard Guenther @ 2011-05-16  9:45 UTC (permalink / raw)
  To: Ian Lance Taylor; +Cc: overseers, gcc-patches

On Fri, May 13, 2011 at 7:14 PM, Ian Lance Taylor <iant@google.com> wrote:
> I noticed that buglist.cgi was taking quite a bit of CPU time.  I looked
> at some of the long running instances, and they were coming from
> searchbots.  I can't think of a good reason for this, so I have
> committed this patch to the gcc.gnu.org robots.txt file to not let
> searchbots search through lists of bugs.  I plan to make a similar
> change on the sourceware.org and cygwin.com sides.  Please let me know
> if this seems like a mistake.
>
> Does anybody have any experience with
> http://code.google.com/p/bugzilla-sitemap/ ?  That might be a slightly
> better approach.

Shouldn't we keep searchbots way from bugzilla completely?  Searchbots
can crawl the gcc-bugs mailinglist archives.

Richard.

> Ian
>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Don't let search bots look at buglist.cgi
  2011-05-16  9:45 ` Richard Guenther
@ 2011-05-16 20:35   ` Ian Lance Taylor
  2011-05-16 21:20     ` Joseph S. Myers
  0 siblings, 1 reply; 4+ messages in thread
From: Ian Lance Taylor @ 2011-05-16 20:35 UTC (permalink / raw)
  To: Richard Guenther; +Cc: overseers, gcc-patches

Richard Guenther <richard.guenther@gmail.com> writes:

> On Fri, May 13, 2011 at 7:14 PM, Ian Lance Taylor <iant@google.com> wrote:
>> I noticed that buglist.cgi was taking quite a bit of CPU time.  I looked
>> at some of the long running instances, and they were coming from
>> searchbots.  I can't think of a good reason for this, so I have
>> committed this patch to the gcc.gnu.org robots.txt file to not let
>> searchbots search through lists of bugs.  I plan to make a similar
>> change on the sourceware.org and cygwin.com sides.  Please let me know
>> if this seems like a mistake.
>>
>> Does anybody have any experience with
>> http://code.google.com/p/bugzilla-sitemap/ ?  That might be a slightly
>> better approach.
>
> Shouldn't we keep searchbots way from bugzilla completely?  Searchbots
> can crawl the gcc-bugs mailinglist archives.

I don't see anything wrong with crawling bugzilla, though, and the
resulting links should be better.

Ian

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Don't let search bots look at buglist.cgi
  2011-05-16 20:35   ` Ian Lance Taylor
@ 2011-05-16 21:20     ` Joseph S. Myers
  0 siblings, 0 replies; 4+ messages in thread
From: Joseph S. Myers @ 2011-05-16 21:20 UTC (permalink / raw)
  To: Ian Lance Taylor; +Cc: Richard Guenther, overseers, gcc-patches

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1267 bytes --]

On Mon, 16 May 2011, Ian Lance Taylor wrote:

> Richard Guenther <richard.guenther@gmail.com> writes:
> 
> > On Fri, May 13, 2011 at 7:14 PM, Ian Lance Taylor <iant@google.com> wrote:
> >> I noticed that buglist.cgi was taking quite a bit of CPU time.  I looked
> >> at some of the long running instances, and they were coming from
> >> searchbots.  I can't think of a good reason for this, so I have
> >> committed this patch to the gcc.gnu.org robots.txt file to not let
> >> searchbots search through lists of bugs.  I plan to make a similar
> >> change on the sourceware.org and cygwin.com sides.  Please let me know
> >> if this seems like a mistake.
> >>
> >> Does anybody have any experience with
> >> http://code.google.com/p/bugzilla-sitemap/ ?  That might be a slightly
> >> better approach.
> >
> > Shouldn't we keep searchbots way from bugzilla completely?  Searchbots
> > can crawl the gcc-bugs mailinglist archives.
> 
> I don't see anything wrong with crawling bugzilla, though, and the
> resulting links should be better.

Indeed.  I think the individual bugs, and the GCC-specific help texts 
(such as describekeywords.cgi and describecomponents.cgi), should be 
indexed.

-- 
Joseph S. Myers
joseph@codesourcery.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-05-16 21:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-13 17:14 Don't let search bots look at buglist.cgi Ian Lance Taylor
2011-05-16  9:45 ` Richard Guenther
2011-05-16 20:35   ` Ian Lance Taylor
2011-05-16 21:20     ` Joseph S. Myers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).