Postgres Insider Terminology
crunchydata.com
Postgres Insider Terminology
1–10 of 36 posts
Re: Postgres Insider Terminology
#2Super annoying.
Re: Postgres Insider Terminology
#3Re: Postgres Insider Terminology
#4Anyone know if this is still true?
Re: Postgres Insider Terminology
#5When studying the internals of Postgres years ago, I learned that pages could greatly affect the disk space required to hold a table. If the page size was 8192 bytes (the default) and if the schema defined each row as holding 4097 bytes, then two rows would not fit within a single page. This would cause every row to be within its own page and would waste almost half of the space. Anyone know if this is still true?
* Except, maybe, toast, hot or compressed..
Re: Postgres Insider Terminology
#6When studying the internals of Postgres years ago, I learned that pages could greatly affect the disk space required to hold a table. If the page size was 8192 bytes (the default) and if the schema defined each row as holding 4097 bytes, then two rows would not fit within a single page. This would cause every row to be within its own page and would waste almost half of the space. Anyone know if this is still true?
Afaik, this is still true in most cases.* this is true for almost every database. * Except, maybe, toast, hot or compressed..
...that uses fixed sized pages.
Re: Postgres Insider Terminology
#7Re: Postgres Insider Terminology
#8Re: Postgres Insider Terminology
#9Re: Postgres Insider Terminology
#10Earlier quoted context omitted.
so true for almost every sql database? or not?
MyRocks is MySQL backed by an LSM tree, and so it doesn't have fixed sized pages.
sounds like could be one of those rule-proving exceptions, even if it is a big facebook project