如何在arangodb中使用Sharding?

我对arangodb的分片特性很陌生,我学到了与此相关的各种文档,但仍然找不到configuration它的方式。 任何人请提供一步一步的程序来设置分割或对我有用的任何参考 。 我在linux mint上使用了node.js和angularJS的arangodb。
我经常访问https://docs.arangodb.com ,这些都没有用
https://docs.arangodb.com/2.5/Installing/Cluster.html以及如何在ArangoDB中设置集群和分片?

分片只有在ArangoDB集群时才可用。 除了configuration分发集合的分片数量,它对您的AQL查询完全透明 – ArangoDB协调器实例将为您完成所有繁重的工作。 这就是为什么碎片在这里不会以更详细的方式出现的原因。

设置ArangoDB集群的最简单的方法是使用Mesosphere DCOS – 点击ArangoDB并select部署集群的环境。

有关设置集群的更详细的手册可以在这里find: https : //docs.amazona.info/3.0/Manual/Deployment/index.html还具有其他安装方法。 我们将尽力解释集群中的分片。

端口8529在netstat -nltp中不可见。

  • 阿朗戈3.1.11失败!
  • 阿朗戈3.1.13失败!

arangod –server.endpoint tcp://0.0.0.0:5001 –server.authentication false –agency.size 3 –agency.supervision true / dbdata / agency1&arangod –server.endpoint tcp://0.0。 0.0:5002 –server.authentication false –agency.size 3 –agency.supervision true / dbdata / agency2&arangod –server.endpoint tcp://0.0.0.0:5003 –server.authentication false –agency .size 3 –agency.endpoint tcp://127.0.0.1:5001 –agency.endpoint tcp://127.0.0.1:5002 –agency.endpoint tcp://127.0.0.1:5003 –agency.supervision true / dbdata / agency3&

arangod –server.authentication = false –server.endpoint tcp://0.0.0.0:8529 –cluster.my-address tcp://127.0.0.1:8529 –cluster.my-local-info db1 – cluster.my-role PRIMARY –cluster.agency-endpoint tcp://127.0.0.1:5001 –cluster.agency-endpoint tcp://127.0.0.1:5002 –cluster.agency-endpoint tcp://127.0 .0.1:5003 primary1&arangod –server.authentication = false –server.endpoint tcp://0.0.0.0:8530 –cluster.my-address tcp://127.0.0.1:8530 –cluster.my- local-info db2 –cluster.my-role PRIMARY –cluster.agency-endpoint tcp://127.0.0.1:5001 –cluster.agency-endpoint tcp://127.0.0.1:5002 –cluster.agency- endpoint tcp://127.0.0.1:5003 primary2&arangod –server.authentication = false –server.endpoint tcp://0.0.0.0:8531 –cluster.my-address tcp://127.0.0.1:8531 –cluster.my-local-info coord1 –cluster.my-role COORDINATOR –cluster.agency-endpoint tcp://127.0.0.1:5001 –cluster.agency-endpoint tcp://127.0.0.1:5002 –cluster.agency-endpoint tcp://127.0.0.1:5003 coordinator&