[ZODB-Dev] Limits for mapping fs files

Jim Fulton jim at zope.com
Tue Oct 27 12:57:56 EDT 2009


On Tue, Oct 27, 2009 at 12:17 PM, tsmiller <tsmiller at gnixterhouse.com> wrote:
>
> Zodb developers,
> When I open my database I am mapping individual files in the following way.

Why?

> I have about 20 fs files mapped in this fashion.  My concern is that I am
> going to hit some kind of limit.  Is accessing these fs files going to slow
> down as the number grows?  Am I going to hit an upper limit - say 256 or
> something like that?

There collection of databases are managed with a Python dictionary, so
you should be able to have many thousands of databases without feeling
pain due to the number. You'll probably run out of file descriptors
first.

Why are you splitting your database up so much (or even at all)?

Jim

-- 
Jim Fulton


More information about the ZODB-Dev mailing list