MongoDB - 在生产中添加新的配置服务器

发布于 2024-11-29 02:20:59 字数 122 浏览 2 评论 0原文

我一直在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

人间不值得 2024-12-06 02:20:59

不幸的是,您将需要关闭整个系统。

关闭所有进程(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

梦醒灬来后我 2024-12-06 02:20:59

使用 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.

请止步禁区 2024-12-06 02:20:59

配置分片示例配置会话 页面似乎包含您要查找的内容。

您必须有 1 或 3 个配置服务器;其他任何事情都不会按预期工作。

您需要将原始配置服务器中的内容转储并恢复到 2
新的配置服务器,然后将它们添加到 mongos 的 --configdb。

相关部分是:

现在您需要一个配置服务器和 mongos:

`$ mkdir /data/db/config

$ ./mongod --configsvr --dbpath /data/db/config --port 20000 > /tmp/configdb.log &

$ cat /tmp/configdb.log

$ ./mongos --configdb localhost:20000 > /tmp/mongos.log &

$ cat /tmp/mongos.log `

mongos 不需要数据目录,它从配置服务器获取信息。

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:

Now you need a configuration server and mongos:

`$ mkdir /data/db/config

$ ./mongod --configsvr --dbpath /data/db/config --port 20000 > /tmp/configdb.log &

$ cat /tmp/configdb.log

$ ./mongos --configdb localhost:20000 > /tmp/mongos.log &

$ cat /tmp/mongos.log `

mongos does not require a data directory, it gets its information from the config server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文