Re: Guidance Requested - Bulk Inserting + Queries

From: Leonardo Francalanci <m_lists(at)yahoo(dot)it>
To: "benjamin(dot)johnson(at)getcarbonblack(dot)com" <benjamin(dot)johnson(at)getcarbonblack(dot)com>
Cc: "pgsql-performance(at)postgresql(dot)org" <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Guidance Requested - Bulk Inserting + Queries
Date: 2011-11-30 16:17:33
Message-ID: 1322669853.10239.YahooMailNeo@web29003.mail.ird.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

> We now found (thanks Andres and Snow-Man in #postgresql) that in our
> tests, after the indexes get too large performance drops signficantly
> and our system limps forward due to  disk reads (presumably for the
> indexes).  If we remove the indexes, performance for our entire sample
> test is great and everything is written to postgresql very quickly. 
It's usually the fact that the data you index is "random" as opposed to,
say, an always incremented value (could be a timestamp, or a sequence)
that leads to insert problems with btrees. 
> My question is, what possible routes can I take where we can have both
> fast inserts (with indexes removed until the end of the day), but still
> allow a user to query against today's data? Is this even possible?  One
> idea would be possibly have hourly tables for today and as soon as we
> can try to re-add indexes. 
Yep, that's the only way I've found: use smaller partitions. That leads
to slower reads (due to the fact that you have to visit more indexes to
read the same amount of data). But you'll get faster writes. 

> Another possible solution might be to stream
> the data to another "reader" postgres instance that has indexes,
> although I'm not very versed in replication. 
I don't think you can do that. 
Another option that you have is to use ssd instead of HD for the indexes
only (that is, having the indexes in a separate tablespace of ssds). The
problem is that your disks usually can't keep up with the number of
random writes it takes to update N "random values" btrees; ssd might help. 
Can you post some numbers, such as # of indexes, # of rows you're trying
to insert per hour etc etc? 

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Robert Haas 2011-11-30 20:50:47 Re: Query planner suggestion, for indexes with similar but not exact ordering.
Previous Message Benjamin Johnson 2011-11-30 15:27:35 Guidance Requested - Bulk Inserting + Queries