From: | Ron Mayer <rm_pg(at)cheapcomplexdevices(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Ron Mayer <rm_pg(at)cheapcomplexdevices(dot)com>, jd(at)commandprompt(dot)com, Bruce Momjian <bruce(at)momjian(dot)us>, pgsql-general(at)postgresql(dot)org |
Subject: | Re: Postgres mail list traffic over time |
Date: | 2008-11-21 19:42:40 |
Message-ID: | 49270F30.3020008@cheapcomplexdevices.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Tom Lane wrote:
> Ron Mayer <rm_pg(at)cheapcomplexdevices(dot)com> writes:
>> Joshua D. Drake wrote:
>>> Its because we eliminated the -patches mailing list.
>
>> That's part of it. I've added -patches to the graph at
>> http://0ape.com/postgres_mailinglist_size/ as well as
>> a graph of hackers+patches combined; and it still looks
>> like hackers+patches is quite high in the past 3 months.
>
> One of the reasons we got rid of -patches was the frequency of
> cross-posting to both -hackers and -patches. Are you double-counting
> cross-posted messages?
For the combined graph I just summed the output of:
HEAD http://archives.postgresql.org/pgsql-hackers/mbox/pgsql-hackers.2008-09.gz | grep Content-Length
HEAD http://archives.postgresql.org/pgsql-hackers/mbox/pgsql-patches.2008-09.gz | grep Content-Length
I didn't look to see if the downloadable mboxes had duplicate messages.
If people want the raw data, here's the script I used to get it.
============================================================================
#!/usr/bin/env ruby
%W{rubygems hpricot open-uri gruff}.each{|l| require l}
def chart(url)
h = Hpricot.parse(open(url){|f| f.read})
mboxes = (h / "//a").map{|x| x.attributes['href']}. select{|x| x=~/\.gz/}
mboxes.sort.each{|x|
y = `HEAD #{url}/#{x}` =~ /Content-Length: (\d+)/ && $1
puts "#{x} #{y}"
}
end
patches = chart('http://archives.postgresql.org/pgsql-patches')
general = chart('http://archives.postgresql.org/pgsql-general')
hackers = chart('http://archives.postgresql.org/pgsql-hackers')
============================================================================
Perhaps some of the extra burden on the experienced hackers is
a larger volume of newer people trying to contribute that are needing
more handholding (and thus more re-posted updated patches, etc)?
From | Date | Subject | |
---|---|---|---|
Next Message | Scott Marlowe | 2008-11-21 19:56:20 | Re: Virtualization VMWare ESX and Win2k3 as a Guest OS |
Previous Message | Matthew T. O'Connor | 2008-11-21 19:20:53 | Re: Postgres mail list traffic over time |