R: R: Query plan on identical tables differs . Why ? - Mailing list pgsql-performance

From Fabio Panizzutti
Subject R: R: Query plan on identical tables differs . Why ?
Date
Msg-id 001101c43995$03e8b830$3c02020a@ufficio
Whole thread Raw
Responses Re: R: R: Query plan on identical tables differs . Why ?
List pgsql-performance

>>>> Index Scan using pk_storico_misure_2 on storico_misure
>>>>(cost=0.00..1984.64 rows=658 width=21) (actual
>>>time=723.441..1858.107
>>>>rows=835 loops=1)
>>>>   Index Cond: ((data_tag > '2004-05-03
>>>00:00:00'::timestamp without
>>>>time zone) AND (data_tag < '2004-05-12 00:00:00'::timestamp without
>>>>time
>>>>zone) AND (tag_id = 37423))
>>>
>>>Either most of the time is spent skipping index tuples in
>>>the data_tag range 2004-05-03 to 2004-05-12 which have
>>>tag_id <> 37423, or getting those 835 rows causes a lot of
>>>disk seeks.
>>>
>>>If the former is true, an index on (tag_id, data_tag) will help.
>>>
Is true , i recreate the indexes making an index on  (tag_id, data_tag)
and works fine .


>>>In your first message you wrote:
>>>>fsync = false
>>>
>>>Do this only if you don't care for your data.
>>>

I set it to false , for performance tests .I've a stored procedure that
make about 2000 insert in 2 tables and 2000 delete in another and with
fsync false perfomrmance are  2.000 -3.000 ms (stable) with fsync 3.000
ms to 15.000 ms . I trust in my hardware an O.S so fsync setting is a
big dubt for my production enviroment .

Thanks a lot

Bye


pgsql-performance by date:

Previous
From: "Fabio Panizzutti"
Date:
Subject: R: R: Query plan on identical tables differs . Why ?
Next
From: Christopher Kings-Lynne
Date:
Subject: Re: R: R: Query plan on identical tables differs . Why ?