Re: [HACKERS] Bitmap Indexes patch (was Re: Bitmap Indexes: request for feedback)

2008-11-03 Thread Vladimir Sitnikov
BTW: is there a framework to test recovery related features? The only idea I could take from the top of my head is to comment out all the page writes and leave only WAL logging. Then crash database at random and verify if the index still performs as expected. Regards, Vladimir Sitnikov

Re: [HACKERS] Buffer pool statistics in Explain Analyze

2008-11-01 Thread Vladimir Sitnikov
the operation fetched 116 pages into shared buffers and 108 of those 116 were buffer hits. Sincerely yours, Vladimir Sitnikov buffer_stats_in_explain_analyze.patch Description: Binary data -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http

Re: [HACKERS] contrib/pg_stat_statements v2

2008-11-01 Thread Vladimir Sitnikov
of that statistics could be server health monitoring: provided there is an interface for ongoing integral statistics, one could create a job that takes snapshots, computes the difference and plots it on a graph. Sincerely, Vladimir Sitnikov

Re: [HACKERS] Windowing Function Patch Review - Performance Comparison.

2008-11-01 Thread Vladimir Sitnikov
)+('dense_rank')::int4)::text'dense_rank')::int4 as position, runnerid, time from big_marathon order by time ) results where position=*2* Best regards, Vladimir Sitnikov

Re: [HACKERS] Windowing Function Patch Review - Performance Comparison.

2008-11-01 Thread Vladimir Sitnikov
order by date ) as t order by used asc nulls last limit *1* Best regards, Vladimir Sitnikov

Re: [HACKERS] contrib/pg_stat_statements

2008-10-17 Thread Vladimir Sitnikov
minutes. It does not look too bad to get the statistics of last 15 minutes lost in case of database crash either. Regards, Vladimir Sitnikov

Re: [HACKERS] 8.3 .4 + Vista + MingW + initdb = ACCESS_DENIED

2008-10-14 Thread Vladimir Sitnikov
to store the SID into some file in working directory, then read it and connect to the shared memory. If that makes sense, I could implement it that way and test it under Vista. Sincerely yours, Vladimir Sitnikov

[HACKERS] Buffer pool statistics in Explain Analyze

2008-10-11 Thread Vladimir Sitnikov
the collected data. I think think this change is going to split page access statistics by each and every execution node (much like 'actual time' is split now). Will this patch ever be accepted? Regards, Vladimir Sitnikov

Re: [HACKERS] Buffer pool statistics in Explain Analyze

2008-10-11 Thread Vladimir Sitnikov
or log_statement_stats is enabled). I am not sure if it could interfere with instrumentation. Regards, Vladimir Sitnikov

<    1   2