AW: [HACKERS] Problems with >2GB tables on Linux 2.0

From: Zeugswetter Andreas IZ5 <Andreas(dot)Zeugswetter(at)telecom(dot)at>
To: pgsql-hackers(at)postgreSQL(dot)org
Subject: AW: [HACKERS] Problems with >2GB tables on Linux 2.0
Date: 1999-02-09 09:46:39
Message-ID: 219F68D65015D011A8E000006F8590C60267B2EF@sdexcsrv1.f000.d0188.sd.spardat.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> and solving the data distribution as a separate effort.

I also think, that this issue can not be solved with splitting the table
extents
to different directories. I would leave that issue to a Tablespace
implementation.
What I like though is the idea that all table files have the extent number
in the
filename, starting with tabname.1, and not having tabname (1. extent)
tabname.1
(2. extent).

Asside from that, I think anybody having a (non blob) table of 2-4 Gb and
above
should start thinking of a redesign of his data model. Often the solution is
to have
e.g. one table per year and a union all view, so that clients can access all
data
without even noticing. I think smart rewrite rules can be implemented, so
that updates,
inserts and deletes are routed to the correct table (let's call it
fragment).

Andreas

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Meskes 1999-02-09 09:48:07 Re: [HACKERS] Keywords
Previous Message Zeugswetter Andreas IZ5 1999-02-09 09:14:26 AW: [HACKERS] Embedded SQL question