Reputation: 53
I am a new user of Arango DB and I am currently evaluating it for my project. Can someone please tell me, what the maximum number of databases you can create in Arango DB is?
Thanks.
Upvotes: 2
Views: 1487
Reputation: 778
As far as I know, there are virtually no limits to the number of databases in ArangoDB. The only thing you have to keep in mind, are the resources that are needed for databases and their collections.
Some of those resources, for each Database / Collection, are:
Files on disk: space and file descriptors needed.
Memory: each Database / Collection will take up space on the disk (and also in memory when loaded.)
For a collection, the number of file descriptors needed at any time is dependent of the journal size defined for it. If the journal size is big, less files are needed, ergo less file descriptors (and their associated resources) are needed.
There is also a nice blog post on disk space usage, here. It is a bit older, and might not be accurate now, but it should give you a general idea.
https://www.arangodb.com/2012/07/collection-disk-usage-arangodb/
Regarding journal-sizes and performance, you should also look at this: https://www.arangodb.com/2012/09/performance-different-journal-sizes/
Upvotes: 5