Re: [PERFORM] Slow response of PostgreSQL

2004-02-19 Thread Saleem Burhani Baloch
Hi, Thanks every one for helping me. I have upgraded to 7.4.1 on redhat 8 ( rh 9 require a lot of lib's) and set the configuration sent by Chris. Now the query results in 6.3 sec waooo. I m thinking that why the 7.1 process aggregate slowly. Anyway. I still have to go for 2 sec result and now

Re: [PERFORM] Slow response of PostgreSQL

2004-02-19 Thread Shridhar Daithankar
On Thursday 19 February 2004 14:31, Saleem Burhani Baloch wrote: Hi, Thanks every one for helping me. I have upgraded to 7.4.1 on redhat 8 ( rh 9 require a lot of lib's) and set the configuration sent by Chris. Now the query results in 6.3 sec waooo. I m thinking that why the 7.1 process

Re: [PERFORM] Slow response of PostgreSQL

2004-02-19 Thread Christopher Kings-Lynne
Thanks every one for helping me. I have upgraded to 7.4.1 on redhat 8 ( rh 9 require a lot of lib's) and set the configuration sent by Chris. Now the query results in 6.3 sec waooo. I m thinking that why the 7.1 process aggregate slowly. Anyway. I'm glad we could help you Saleem :) We knew

[PERFORM] Postgresql on SAN

2004-02-19 Thread Anjan Dave
Title: Message Hello, Has anyone designed/implemented postgresql server on storage networks? Are there any design considerations? Are there any benchmarks for storage products (HBAs, Switches, Storage Arrays)? Any recommendation on the design, resources, references, keeping PG in mind?

Re: [PERFORM] Postgresql on SAN

2004-02-19 Thread Josh Berkus
Anjan, Has anyone designed/implemented postgresql server on storage networks? Yes, Zapatec.com runs their stuff this way. Probably others as well. Are there any design considerations? I don't know. Probably. Are there any benchmarks for storage products (HBAs, Switches, Storage

Re: [PERFORM] Postgresql on SAN

2004-02-19 Thread Nick Barr
Josh Berkus wrote: Anjan, Has anyone designed/implemented postgresql server on storage networks? Yes, Zapatec.com runs their stuff this way. Probably others as well. Are there any design considerations? I don't know. Probably. Are there any benchmarks for storage products

Re: [PERFORM] Slow response of PostgreSQL

2004-02-19 Thread Hannu Krosing
Saleem Burhani Baloch kirjutas N, 19.02.2004 kell 11:01: Hi, Thanks every one for helping me. I have upgraded to 7.4.1 on redhat 8 ( rh 9 require a lot of lib's) and set the configuration sent by Chris. Now the query results in 6.3 sec waooo. I m thinking that why the 7.1 process

Re: [PERFORM] Optimizer difference using function index between 7.3 and 7.4

2004-02-19 Thread Simon Riggs
Jeff Boes writes # explain select link_id from links l join clm_tmp_links t on (fn_urlrev(l.path_base) = t.rev_path_base); executes in 59.8 seconds! Now the odd part: if I change the query to this: # explain analyze select link_id from links l join clm_tmp_links t on

Re: [PERFORM] Forcing filter/join order?

2004-02-19 Thread Josh Berkus
Tom, event_date = 'end-date' AND (event_date + duration) = 'start-date' AND event_date = 'start-date' - 'max-duration' Great suggestion! We're down to 160ms, from about 370ms with my subselect workaround. Thanks! -- -Josh Berkus Aglio Database Solutions San Francisco