mongoDB副本集和分片

MongoDB的副本集是一组维护相同数据集的MongoDB服务器。副本集有一个主节点(primary)和多个从节点(secondary),从节点可以自动提升为新的主节点。分片是将数据分散到不同服务器的过程,用于支持非常大的数据集和高吞吐量的操作。

副本集配置示例(假设有三个服务器,地址分别为mongodb1.example.net, mongodb2.example.net, mongodb3.example.net):

  1. 在每个服务器上启动mongod实例,指定--replSet参数。



mongod --port 27017 --dbpath /srv/mongodb/db0 --replSet rs0
mongod --port 27017 --dbpath /srv/mongodb/db1 --replSet rs0
mongod --port 27017 --dbpath /srv/mongodb/db2 --replSet rs0
  1. 连接到其中一个服务器,初始化副本集。



rs.initiate()
  1. 添加副本集成员。



rs.add("mongodb2.example.net:27017")
rs.add("mongodb3.example.net:27017")

分片配置示例(假设有三个分片服务器,地址分别为shard1.example.net, shard2.example.net, shard3.example.net):

  1. 配置分片服务器。



mongod --shardsvr --port 27017 --dbpath /srv/mongodb/db0 --replSet shard0
mongod --shardsvr --port 27017 --dbpath /srv/mongodb/db1 --replSet shard1
mongod --shardsvr --port 27017 --dbpath /srv/mongodb/db2 --replSet shard2
  1. 启动配置服务器。



mongod --configsvr --port 27017 --dbpath /srv/mongodb/configdb
  1. 启动路由服务器。



mongos --port 27017 --configdb shard1.example.net:27017
  1. 将分片服务器添加到副本集。



rs.initiate()
rs.add("shard2.example.net:27017")
  1. 通过mongos将分片添加到集群。



sh.addShard("shard1/shard1.example.net:27017")
sh.addShard("shard2/shard2.example.net:27017")
  1. 对集合启用分片。



sh.enableSharding("database_name")
  1. 为集合指定分片键。



sh.shardCollection("database_name.collection_name", {"shard_key": 1})

这些命令只是配置副本集和分片的基本步骤,实际配置可能需要考虑更多的配置选项,如安全性、网络配置等。

最后修改于:2024年08月29日 18:07

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日