| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | Achilleus Mantzios <achill(at)matrix(dot)gatewaynet(dot)com> |
| Cc: | pgsql-general(at)postgresql(dot)org, pgsql-hackers(at)postgresql(dot)org, pgsql-sql(at)postgresql(dot)org |
| Subject: | Re: FreeBSD, Linux: select, select count(*) performance |
| Date: | 2002-11-27 16:15:58 |
| Message-ID: | 17919.1038413758@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general pgsql-hackers pgsql-sql |
Achilleus Mantzios <achill(at)matrix(dot)gatewaynet(dot)com> writes:
> Linux q1
> ========
> dynacom=# EXPLAIN ANALYZE SELECT count(*) from noon;
> NOTICE: QUERY PLAN:
> Aggregate (cost=20508.19..20508.19 rows=1 width=0) (actual
> time=338.17..338.17
> rows=1 loops=1)
> -> Seq Scan on noon (cost=0.00..20237.95 rows=108095 width=0) (actual
> time=0.01..225.73 rows=108095 loops=1)
> Total runtime: 338.25 msec
> Linux q2
> ========
> dynacom=# EXPLAIN ANALYZE SELECT * from noon;
> NOTICE: QUERY PLAN:
> Seq Scan on noon (cost=0.00..20237.95 rows=108095 width=1960) (actual
> time=1.22..67909.31 rows=108095 loops=1)
> Total runtime: 68005.96 msec
You didn't say what was *in* the table, exactly ... but I'm betting
there are a lot of toasted columns, and that the extra runtime
represents the time to fetch (and perhaps decompress) the TOAST entries.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2002-11-27 16:18:57 | Re: Server v7.3RC2 Dies |
| Previous Message | Scott Lamb | 2002-11-27 16:08:38 | Re: escape single quote in INSERT command |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | David Wheeler | 2002-11-27 16:17:12 | Re: Interface update for 7.3 |
| Previous Message | Jason E. Stewart | 2002-11-27 16:09:42 | Re: Interface update for 7.3 |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Oleg Bartunov | 2002-11-27 16:29:43 | Re: [GENERAL] FreeBSD, Linux: select, select count(*) performance |
| Previous Message | Richard Huxton | 2002-11-27 15:35:15 | Re: Function and insert |