简体   繁体   English

arangodb中的最大数据库数

[英]Maximum number of databases in arangodb

I am a new user of Arango DB and I am currently evaluating it for my project. 我是Arango DB的新用户,目前正在我的项目中对其进行评估。 Can someone please tell me, what the maximum number of databases you can create in Arango DB is? 有人可以告诉我,您可以在Arango DB中创建的最大数据库数量是多少?

Thanks. 谢谢。

As far as I know, there are virtually no limits to the number of databases in ArangoDB. 据我所知,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/ 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/ 关于期刊的大小和性能,您还应该查看以下内容: https : //www.arangodb.com/2012/09/performance-different-journal-sizes/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM