Re: PostgreSQL to host e-mail?

From: Matthew Schumacher <matt(dot)s(at)aptalaska(dot)net>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: PostgreSQL to host e-mail?
Date: 2007-01-04 18:42:40
Message-ID: 459D4AA0.2090607@aptalaska.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Frank Wiles wrote:
> On Thu, 4 Jan 2007 15:00:05 -0300
> "Charles A. Landemaine" <landemaine(at)gmail(dot)com> wrote:
>
>> I'm building an e-mail service that has two requirements: It should
>> index messages on the fly to have lightening search results, and it
>> should be able to handle large amounts of space. The server is going
>> to be dedicated only for e-mail with 250GB of storage in Raid-5. I'd
>> like to know how PostgreSQL could handle such a large amount of data.
>> How much RAM would I need? I expect my users to have a 10GB quota per
>> e-mail account.
>

I wouldn't do it this way, I would use cyrus. It stores the messages in
plain text each in it's own file (like maildir) but then it also indexes
the headers in bdb format and also can index the search database in bdb
format. The result is a very simple mail store that can perform
searches very fast. The only problem is that the search index in only
updated periodically.

If you need more information then look at the cyrus-users list as this
is WAY off topic.

schu

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Dave Dutcher 2007-01-04 23:31:43 Slow Query on Postgres 8.2
Previous Message Joshua D. Drake 2007-01-04 18:11:45 Re: PostgreSQL to host e-mail?