Why is my database so big? - Mailing list pgsql-general

From Andrew Smith
Subject Why is my database so big?
Date
Msg-id CALr=acF--Rm68ezsyiejW83ESFdW+mbkO_grDWoaynkyJyiSGg@mail.gmail.com
Whole thread Raw
Responses Re: Why is my database so big?
Re: Why is my database so big?
List pgsql-general
Hello,

I am setting up a proof of concept database to store some historical data.  Whilst I've used PostgreSQL a bit in the past this is the first time I've looked into disk usage due to the amount of data that could potentially be stored. I've done a quick test and I'm a little confused as to why it is occupying so much space on disk. Here is my table definition:

CREATE TABLE "TestSize"
(
  "Id" integer NOT NULL,
  "Time" timestamp without time zone NOT NULL,
  "Value" real NOT NULL,
  "Status" smallint NOT NULL,
  PRIMARY KEY ("Id", "Time")
);

CREATE INDEX test_index ON "TestSize" ("Id");

With a completely empty table the database is 7 MB. After I insert 1 million records into the table the database is 121 MB. My understanding is that each of the fields is sized as follows:

integer - 4 bytes
timestamp without time zone - 8 bytes
real - 4 bytes
smallint - 2 bytes

So for 1 million records, it needs at least 18 million bytes, or ~17 MB to store the data. Now I'm sure there is extra space required for managing the primary key fields, the index and other misc overhead involved in getting this data into the internal storage format used by PostgreSQL. But even if I triple the number of bytes stored for each record, I only end up with 51 MB or so. Am I missing something obvious? 

Cheers,

Andrew

pgsql-general by date:

Previous
From: tuanhoanganh
Date:
Subject: Re: [PERFORM] Why Postgres use a little memory on Windows.
Next
From: Venkata Balaji N
Date:
Subject: Re: Why is my database so big?