What is the largest number of tables that can be within a single pgsql database while still retaining good performance, given that pgsql stores 1 file per table on the filesystem and searches the pg_catalog for every query to do query planning?

EG: Can pgsql deal with 1 million tables within a single database? Assume that the filesystem used is ext4 and each table contained very little data, so the overage disk storage size isn't an issue. The issue really comes from (1) impact of having 1 million files on the filesystem and (2) impact of having 1 million entries in pg_catalog.

From this thread (2005), http://postgresql.1045698.n5.nabble.com/GENERAL-Maximum-number-of-tables-per-database-and-slowness-td1853836.html - it is said below (but I do not how much of this is still applicable these days):

Benjamin Arai wrote:

What is the current maximum number of tables per database? Also, does having more tables slow down performance in any way?

For most cases, the answer is no. However, once you get near 6 figure table counts, pg_catalog ends up being pretty massive. The problem is that the query planner must check pg_catalog for every query to see what indexes are available, what the statistics & value distributions are, etc. in order to build the optimal plan. At some point, a really large pg_catalog can begin to bog down your system.

...

William Yu <[hidden email]> writes:

Benjamin Arai wrote:

What is the current maximum number of tables per database? Also, does having more tables slow down performance in any way?

For most cases, the answer is no. However, once you get near 6 figure table counts, pg_catalog ends up being pretty massive.

You also have to think about the performance implications of having tens of thousands of files in your database directory. While some newer filesystems aren't fazed by that particularly, a lot of 'em bog down on lookups when there are more than a few thousand entries in a directory.

link|improve this question

50% accept rate
I don't think anyone can answer this question. – JustBob Oct 23 '11 at 15:11
feedback

2 Answers

You don't have to keep a million files in a single directory. You can use CREATE TABLESPACE to arrange space in a different directory or on a different disk. I don't know anything about pg_catalog internals, but I can imagine how it might narrow the search by tablespace first, which could significantly reduce search time.

But that's different from the possible problems of having a million files in the filesystem in general, or with the actual (not imagined) issues with pg_catalog.

Should be easy to do a simple (and possibly misleading) test. Use your favorite scripting language to create a million tables, each having five or six columns.

link|improve this answer
feedback

This blog and this question including the comments shed some more light on this issue.

To answer your question: It depends on the "while still retaining good performance" part. What do you exactly consider "still good performance"? And with exactly what workload?

Let me rephrase your question: How much toothache can a human endure? Same answer!

But in both cases the real question is: Why would you really care? The better solution in both cases is to take actions to remove the cause and to get into a painless condition ASAP.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.