Re: 4G row table? - Mailing list pgsql-performance

From Manfred Koizar
Subject Re: 4G row table?
Date
Msg-id ut440vk3rhsdrg3i4e2ihs5jjes7f7d550@4ax.com
Whole thread Raw
In response to 4G row table?  (george young <gry@ll.mit.edu>)
List pgsql-performance
On Thu, 19 Dec 2002 14:10:58 -0500, george young <gry@ll.mit.edu>
wrote:
>with 4 billion(4e9) rows.  I would guess to make wafer, die_row, etc. be of
>type "char", probably testtype a char too with a separate testtype lookup table.
>Even so, this will be a huge table.

Don't know if you can store 0-127 in a "char" column ... Anyway, it
doesn't matter, if it does not cause the tuple size to cross a 4 byte
boundary, because the tuple size will be rounded up to a multiple of
4.

>Questions: How much overhead will there be in the table in addition to the
>9 bytes of data I see?

There is a page header (ca. 20 bytes) per page (8K by default).  Then
you have a tuple header and 4 bytes ItemIdData per tuple.

PG 7.2: Without NULLs a tuple header is 32 bytes, add 4 bytes for each
tuple containing at least one NULL column.

PG 7.3: 24 bytes tuple header (with and without NULLs, because you
have only 8 columns).

>How big will the primary index on the first seven columns be?

Don't know offhand.  No time now to dig it out.  Will answer tomorrow,
if nobody else jumps in ...

Servus
 Manfred

pgsql-performance by date:

Previous
From: Josh Berkus
Date:
Subject: Re: EXISTS vs IN vs OUTER JOINS
Next
From: Josh Berkus
Date:
Subject: Re: 4G row table?