最新要闻

广告

手机

iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?

iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?

警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案

警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案

家电

环球即时:手把手教你搭建mongodb分片集群

来源:博客园

本章用的自己的电脑win10 系统 因为工作上的环境也是win的 就没在虚拟机上玩 (ps: 其实上面环境都大同小异)

在MongoDB(版本 6.xx)中,分片是指将collection分散存储到不同的Server中,每个Server只存储collection的一部分,服务分片的所有服务器组成分片集群。分片集群(Sharded Clustered)的服务器分为三中类型:Router(mongos),Config Server 和 Shard(Replica Set 或 Standalone mongod)。使用分片集群,不需要使用强大的计算机,就能存储更多的数据,处理更大的负载。分布式数据库系统的设计目的是:水平分片,将负载分配到多台Server,减少单机查询的负载。


(资料图)

一,配置服务器

config server 存储分片的元数据,元数据包括每个分片的块(chunk)列表和每个chunk包含数据的范围。路由服务区(Router)从config server上获取分片的元数据,使用元数据将读写操作路由到正确的分片上。

The metadata includes the list of chunks on every shard and the ranges that define the chunks. The mongos instances cache this data and use it to route read and write operations to the correct shards.

config server的读写操作是非常少的,config server将分片的元数据存储在config 数据库中,只有当分片的元数据变化时,比如 chunk migration,chunk split,才会修改config server中的数据。只有在mongos 第一次启动或重启时,或者分片的元数据变化时,mongos才会读取config server中的数据。mongos在读取分片的元数据之后,会缓存在本地。

Config servers store the cluster’s metadata in the config database. The mongos instances cache this data and use it to route reads and writes to shards. MongoDB only writes data to the config servers when the metadata changes, such as

  • after a chunk migration, or
  • after a chunk split.

MongoDB reads data from the config server in the following cases:

  • A new mongos starts for the first time, or an existing mongos restarts.
  • After change in the cluster metadata, such as after a chunk migration.

实际上,config server是mongod,只不过设置 --configsvr 选项。

--configsvr 指定mongod作为一个config server

二,mongos 路由服务器

mongos 为MongoDB提供路由服务,处理从application layer发送的查询请求,定位数据所在的分片,对分片上的查询结果进行combine,以完成分布式数据查询。从Application来看,mongos担当的角色是一个MongoDB Instance,隐藏了从分片上query和combine数据的复杂过程。

mongos 的重要参数

--config , -f 指定mongos 运行的参数

--configdb 指定config server列表,格式是:config-svr:port,config-svr:port

--chunkSize 指定data block的大小,单位是MB,默认值是64

--port 指定mongos 监听的TCP的端口号,默认值是27017

--logpath 指定mongos 记录日志的路径,默认情况下,MongoDB将现存的日志文件重命名,而不是重写。By default, MongoDB will move any existing log file rather than overwrite it. To instead append to the log file, set the --logappend option.

搭建mongodb分片集群前提:

1 能够知道mongodb基本的使用

2 知道mongodb的副本集,并且能够搭建

3 知道一些基本的参数

(不清楚的上一篇中有一些说明,或者mongodb 官网上充电)

下面就开始了

1 提前准备好文件夹(我分的层级比较细,也可以不用和我一样的)

mongodb的分片集我本次就用的2个分片

分片服务器:

Shard1: (一主二从)

Shard2:(一主二从)

路由服务器:

router: 单个(这个也是可以搭多个的)

配置服务器:

service: (一主二从)

这些log文件要提前创建好

c1文件夹下创建一个文件以.conf

bind_ip=0.0.0.0port=28017dbpath=D:\mongoDB\zone\config\c1logpath=D:\mongoDB\zone\config\log\config28017.loglogappend=truereplSet=configconfigsvr=trueoplogSize=1024

c2文件夹下创建一个文件以.conf

bind_ip=0.0.0.0port=28018dbpath=D:\mongoDB\zone\config\c2logpath=D:\mongoDB\zone\config\log\config28018.loglogappend=truereplSet=configconfigsvr=trueoplogSize=1024

c3文件夹下创建一个文件以.conf

bind_ip=0.0.0.0port=28019dbpath=D:\mongoDB\zone\config\c3logpath=D:\mongoDB\zone\config\log\config28019.loglogappend=truereplSet=configconfigsvr=trueoplogSize=1024

Shard1:

(log文件要提前创建好)

在data0-1data0-2 data0-3中新建 .conf 文件

data0-1

#mongodb端口port=27018

#绑定ip,只有这个ip才可以访问上mongodbbind_ip=0.0.0.0

# 日志文件的路径logpath=D:\mongoDB\zone\ser1\log\mongodb27018.log

# 数据文件的目录dbpath=D:\mongoDB\zone\ser1\data0-1

#日志以追加的方式存在logappend=true

# fork=true linux以后台方式启动,在window上没有用# 此参数较大比较好,单位是 MB,默认是磁盘可用空间的 5%oplogSize=1024# 复制集的名称,同一个复制集的名称必须要相同replSet=myreplace1

data0-2

#mongodb端口port=27019

#绑定ip,只有这个ip才可以访问上mongodbbind_ip=0.0.0.0

# 日志文件的路径logpath=D:\mongoDB\zone\ser1\log\mongodb27019.log

# 数据文件的目录dbpath=D:\mongoDB\zone\ser1\data0-2

#日志以追加的方式存在logappend=true

# fork=true linux以后台方式启动,在window上没有用# 此参数较大比较好,单位是 MB,默认是磁盘可用空间的 5%oplogSize=1024# 复制集的名称,同一个复制集的名称必须要相同replSet=myreplace1

data0-3

#mongodb端口port=27020

#绑定ip,只有这个ip才可以访问上mongodbbind_ip=0.0.0.0

# 日志文件的路径logpath=D:\mongoDB\zone\ser1\log\mongodb27020.log

# 数据文件的目录dbpath=D:\mongoDB\zone\ser1\data0-3

#日志以追加的方式存在logappend=true

# fork=true linux以后台方式启动,在window上没有用# 此参数较大比较好,单位是 MB,默认是磁盘可用空间的 5%oplogSize=1024# 复制集的名称,同一个复制集的名称必须要相同replSet=myreplace1

Shard2:

这个分片也按照Shard1 做就新了 区分好端口 和日志文件replSet=myreplace1 这个是分片的名称 要区分开来

#mongodb端口port=27021

#绑定ip,只有这个ip才可以访问上mongodbbind_ip=0.0.0.0

# 日志文件的路径logpath=D:\mongoDB\zone\ser2\log\mongodb27021.log

# 数据文件的目录dbpath=D:\mongoDB\zone\ser2\data1-1

#日志以追加的方式存在logappend=true

# fork=true linux以后台方式启动,在window上没有用# 此参数较大比较好,单位是 MB,默认是磁盘可用空间的 5%oplogSize=1024# 复制集的名称,同一个复制集的名称必须要相同replSet=myreplace2

其他的省略。。。

router 没什么好说的同样需要配置文件和日志文件

bind_ip=0.0.0.0port=27017

#mongos.log 需要提前在 los 中建好logpath=D:\mongoDB\zone\router\los\mongos.loglogappend=trueconfigdb=config/127.0.0.1:28017,127.0.0.1:28018,127.0.0.1:28019

到这里准备工作就完成了,下面就是准备启动了(其实可以用批处理文件启动 我就不用了)

我这边是按照自己目录来的

Shard1

mongod.exe --shardsvr --config "D:\mongoDB\zone\ser1\data0-1\27018.conf"mongod.exe --shardsvr --config "D:\mongoDB\zone\ser1\data0-2\27019.conf"mongod.exe --shardsvr --config "D:\mongoDB\zone\ser1\data0-3\27020.conf"

Shard2

mongod.exe --shardsvr --config "D:\mongoDB\zone\ser2\data1-1\27021.conf"mongod.exe --shardsvr --config "D:\mongoDB\zone\ser2\data1-2\27022.conf"mongod.exe --shardsvr --config "D:\mongoDB\zone\ser2\data1-3\27023.conf"

config:

mongod.exe --config "D:\mongoDB\zone\config\c1\28017.conf"mongod.exe --config "D:\mongoDB\zone\config\c2\28018.conf"mongod.exe --config "D:\mongoDB\zone\config\c3\28019.conf"

mongosh.exe --port 27018 连接到Shard1分片的任意服务器初始化

use admin

rs.initiate({ _id : "myreplace1", members : [ {_id : 0,host : "192.168.12.1:27018","priority":10}, {_id : 1,host : "192.168.12.1:27019"}, {_id : 2,host : "192.168.12.1:27020"}]});

mongosh.exe --port 27021 连接到Shard2分片的任意服务器初始化

rs.initiate({ _id : "myreplace2", members : [ {_id : 0,host : "192.168.12.1:27021","priority":10}, {_id : 1,host : "192.168.12.1:27022"}, {_id : 2,host : "192.168.12.1:27023"}]});

mongosh.exe --port 28017 连接到config分片的任意服务器 初始化

rs.initiate({ _id : "config", members : [ {_id : 0,host : "192.168.12.1:28017","priority":10}, {_id : 1,host : "192.168.12.1:28018"}, {_id : 2,host : "192.168.12.1:28019"}]});

启动router 服务

mongos.exe --config "D:\mongoDB\zone\router\27017.conf"

连接到mongos

mongosh.exe --port 27017

use admin

-- 创建需要分片的库

sh.enableSharding("test9527")

usetest9527

db.createCollection("user");

-- 创建mongodb的索引 以哈希散列db.user.createIndex({_id:"hashed"})

use admin

sh.shardCollection("test9527.user",{_id:"hashed"})

usetest9527

-- 向 user文档中插入多条数据db.user.insert({name:"xxs",age:21});

插入了15条数据

切换到Shard1分片

切换到Shard2分片

加起来刚刚好15条 ,打完收工!!!

关键词: 后台方式 数据文件