Re: Work table

Поиск
Список
Период
Сортировка
От Robert James
Тема Re: Work table
Дата
Msg-id CAGYyBggf2rzyuKhSHe8wZjgiskTn0XP5hRZFn0VRepNuBgqt8Q@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Work table  (Adrian Klaver <adrian.klaver@gmail.com>)
Ответы Re: Work table  (Adrian Klaver <adrian.klaver@gmail.com>)
Список pgsql-general
On 10/27/13, Adrian Klaver <adrian.klaver@gmail.com> wrote:
> On 10/27/2013 02:23 PM, Robert James wrote:
>> On 10/27/13, Thomas Kellerer <spam_eater@gmx.net> wrote:
>>> Robert James wrote on 27.10.2013 20:47:
>>>> I'm using Postgres for data analysis (interactive and batch).  I need
>>>> to focus the analysis on a subset of one table, and, for both
>>>> performance and simplicity, have a function which loads that subset
>>>> into another table (DELETE FROM another_table; INSERT INTO
>>>> another_table SELECT ...).
>>>>
>>>> Oddly enough, although the SELECT itself is very quick (< 1 s), the
>>>> DELETE and INSERT can take over a minute! I can't figure out why.
>>>> another_table is simple: it has only 7 fields.  Two of those fields
>>>> are indexed, using a simple one field standard index.  There are no
>>>> triggers on it.
>>>>
>>>> What is the cause of this behavior? What should I do to make this
>>>> faster? Is there a recommended work around?
>>>>
>>>> (I'm hesitant to drop another_table and recreate it each time, since
>>>> many views depend on it.)
>>>
>>> DELETE can be a quite lengthy thing to do - especially with a large
>>> number
>>> of rows.
>>>
>>> If you use TRUNCATE instead, this will be *much* quicker with the
>>> additional
>>> benefit,
>>> that if you INSERT the rows in the same transaction, the INSERT will
>>> require
>>> much less
>>> I/O because it's not logged.
>>>
>>
>> Changing DELETE to TRUNCATE and putting it all in a transaction
>> brought the time down to 40 seconds.  But this is still awfully slow,
>> when the SELECT is under a second.
>>
>> Is there another problem here? Perhaps something to do with
>> triggerring autovacuum?
>
> Is there a FK relationship involved?
>
> Could we see the schema for another_table?


1. No FK
2. I removed the indexes from the table
TRUNCATE takes only 40 ms, but the INSERT still takes 10s!
3. ALTER TABLE another_table SET (autovacuum_enabled = true,
toast.autovacuum_enabled = true); didn't seem to make a difference

4. Here's the schema:


CREATE TABLE another_table
(
  id serial NOT NULL,
  eventtime timestamp without time zone NOT NULL,
  reporter character varying NOT NULL,
  loc character varying NOT NULL,
  city character varying NOT NULL,
  stanza character varying,
  purdue character varying,
  CONSTRAINT segment_pkey PRIMARY KEY (id)
)


В списке pgsql-general по дате отправления:

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Work table
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Work table