Re: Using Postgres to store high volume streams of sensor readings

From: "Scott Marlowe" <scott(dot)marlowe(at)gmail(dot)com>
To: m_lists(at)yahoo(dot)it
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Using Postgres to store high volume streams of sensor readings
Date: 2008-11-23 01:09:45
Message-ID: dcc563d10811221709s38d4e65ex8c821ef65491cf5e@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sat, Nov 22, 2008 at 5:54 PM, Scara Maccai <m_lists(at)yahoo(dot)it> wrote:
> Since you always need the timestamp in your selects, have you tried indexing only the timestamp field?
> Your selects would be slower, but since client and sensor don't have that many distinct values compared to the number of rows you are inserting maybe the difference in selects would not be that huge.

Even better might be partitioning on the timestamp. IF all access is
in a certain timestamp range it's usually a big win, especially
because he can move to a new table every hour / day / week or whatever
and merge the old one into a big "old data" table.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message V S P 2008-11-23 03:04:48 [Q]updating multiple rows with Different values
Previous Message Scara Maccai 2008-11-23 00:54:58 Re: Using Postgres to store high volume streams of sensor readings