MongoDB - 在生产中添加新的配置服务器
我一直在使用 mongodb 和分片进行一些测试,在某些时候我尝试向我的 mongos 路由器添加新的配置服务器(当时,我只使用一个配置服务器)。但我找不到任何有关如何执行此操作的信息。
有人尝试过做这样的事情吗?
I've been doing some tests with mongodb and sharding and at some point I tried to add new config servers to my mongos router (at that time, I was playing with just one config server). But I couldn't find any information on how to do this.
Have anybody tried to do such a thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不幸的是,您将需要关闭整个系统。
关闭所有进程(mongod、mongos、配置服务器)。
将数据子目录(dbpath 树)从配置服务器复制到新的配置服务器。
启动配置服务器。
使用新的 --configdb 参数重新启动 mongos 进程。
重新启动 mongod 进程。
来自:http://www.mongodb.org/display/DOCS/Changing+Config+Servers
Unfortunately you will need to shutdown the entire system.
Shutdown all processes (mongod, mongos, config server).
Copy the data subdirectories (dbpath tree) from the config server to the new config servers.
Start the config servers.
Restart mongos processes with the new --configdb parameter.
Restart mongod processes.
From: http://www.mongodb.org/display/DOCS/Changing+Config+Servers
使用 DNS CNAMES
当您在 /etc/mongos.conf 中设置多个配置服务器时,请确保对所有 mongod 和 mongo 配置服务器使用 DNS 条目或至少使用 /etc/hosts 条目-up 副本集和/或分片。
例如,AWS 上的一个常见陷阱是仅使用 EC2 实例的私有 DNS 名称,但这些名称可能会随着时间的推移而发生变化……当发生这种情况时,您将需要关闭整个 mongodb 系统,这可能会非常痛苦如果它正在生产中。
Use DNS CNAMES
make sure to use DNS entries or at least /etc/hosts entries for all mongod and mongo config servers when you set-up multiple config servers in /etc/mongos.conf , when you set-up replica sets and/or sharding.
e.g. a common pitfall on AWS is to use just the private DNS name of EC2 instances, but these can change over time... and when that happens you'll need to shut down your entire mongodb system, which can be extremely painful to do if it's in production.
配置分片和示例配置会话 页面似乎包含您要查找的内容。
您必须有 1 或 3 个配置服务器;其他任何事情都不会按预期工作。
您需要将原始配置服务器中的内容转储并恢复到 2
新的配置服务器,然后将它们添加到 mongos 的 --configdb。
相关部分是:
The Configure Sharding and Sample Configuration Session pages appear to have what you're looking for.
You must have either 1 or 3 config servers; anything else will not work as expected.
You need to dump and restore content from your original config server to 2
new config servers before adding them to mongos's --configdb.
The relevant section is: