Re: Big 7.1 open items - Mailing list pgsql-hackers

From JanWieck@t-online.de (Jan Wieck)
Subject Re: Big 7.1 open items
Date
Msg-id 200006180020.CAA07457@hot.jw.home
Whole thread Raw
In response to Re: Big 7.1 open items  (Bruce Momjian <pgman@candle.pha.pa.us>)
List pgsql-hackers
Bruce Momjian wrote:
> >     There are also disadvantages.
> >
> >         You can run out of space even if there  are  plenty  GB's
> >         free  on  your  disks.   You  have  to create tablespaces
> >         explicitly.
> >
> >         If you've choosen inadequate extent size parameters,  you
> >         end  up with high fragmented tables (slowing down) or get
> >         stuck with running against maxextents, where only a reorg
> >         (export/import) helps.
>
> Also, Tom Lane pointed out to me that file system read-ahead does not
> help if your table is spread around in tablespaces.
   Not  with our HEAP concept. With the Oracle EXTENT concept it   does pretty good, because they  have  different
block/extent  sizes.   Usually  an  extent spans multiple blocks, so in the   case of sequential reads they read each
extent of  probably   hundreds  of  K sequential. And in the case of indexed reads,   they know the extent and offset
ofthe tuple  inside  of  the   extent,  so they know the exact location of the record inside   the tablespace to read.
 
   The big problem we allways had (why we need TOAST at all)  is   that  the logical blocksize (extent size) of a table
isbound   to your physical blocksize used in the shared cache. This  is   fixed  so  deeply  in the heap storage
architecture,that I'm   scared about it.
 


Jan

--

#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me.                                  #
#================================================== JanWieck@Yahoo.com #




pgsql-hackers by date:

Previous
From: JanWieck@t-online.de (Jan Wieck)
Date:
Subject: Re: Big 7.1 open items
Next
From: Chris Bitmead
Date:
Subject: Re: OK, OK, Hiroshi's right: use a seperately-generated filename