Home Database Mysql Tutorial MongoDB 自动分片 auto sharding

MongoDB 自动分片 auto sharding

Jun 07, 2016 pm 04:47 PM

MongoDB部署实验系列文章,MongoDB做为NoSQL数据库,最近几年持续升温,越来越多的企业都开始尝试用MongoDB代替原有Database做一

MongoDB部署实验系列文章,MongoDB做为NoSQL数据库,最近几年持续升温,越来越多的企业都开始尝试用MongoDB代替原有Database做一些事情。MongoDB也在集群,分片,,复制上也有相当不错的的表现。我通过将做各种MongoDB的部署实验进行介绍。

第三篇 MongoDB 自动分片 auto sharding,分为6个部分
 1.初始化文件目录
 2.启动shard节点
 3.配置shard节点
 4.插入数据分片实验
 5.删除主分片
 6.重置主分片
 
系统环境介绍:
 
Ubuntu 12.04. LTS 64bit Server
 
1. 初始化文件目录
 
创建目录
 config1,config2,config3是配置节点
 shard1,shard2,shard3是分片节点
 

~ pwd
 /home/conan/dbs
 ~ mkdir config1 config2 config3 shard1 shard2 shard3
 conan@u1:~/dbs$ ls -l
 drwxrwxr-x 3 conan conan 4096 May 31 11:27 config1
 drwxrwxr-x 3 conan conan 4096 May 31 11:27 config2
 drwxrwxr-x 3 conan conan 4096 May 31 11:27 config3
 drwxrwxr-x 3 conan conan 4096 May 31 11:28 shard1
 drwxrwxr-x 3 conan conan 4096 May 31 11:29 shard2
 drwxrwxr-x 3 conan conan 4096 May 31 11:29 shard3
 

2. 启动shard节点
 


启动config节点
 
~ mongod --dbpath /home/conan/dbs/config1 --port 20001 --nojournal --fork --logpath /home/conan/dbs/config1.log
 ~ mongod --dbpath /home/conan/dbs/config2 --port 20002 --nojournal --fork --logpath /home/conan/dbs/config2.log
 ~ mongod --dbpath /home/conan/dbs/config3 --port 20003 --nojournal --fork --logpath /home/conan/dbs/config3.log
 
启动mongos节点
 
~ mongos --configdb localhost:20001,localhost:20002,localhost:20003 --port 30001 --fork --logpath /home/conan/dbs/mongos1.log
 ~ mongos --configdb localhost:20001,localhost:20002,localhost:20003 --port 30002 --fork --logpath /home/conan/dbs/mongos2.log
 
启动shard节点
 
~ mongod --dbpath /home/conan/dbs/shard1 --port 10001 --nojournal --fork --logpath /home/conan/dbs/shard1.log
 ~ mongod --dbpath /home/conan/dbs/shard2 --port 10002 --nojournal --fork --logpath /home/conan/dbs/shard2.log
 ~ mongod --dbpath /home/conan/dbs/shard3 --port 10003 --nojournal --fork --logpath /home/conan/dbs/shard3.log
 
查看端口
 
~ netstat -nlt
 Active Internet connections (only servers)
 Proto Recv-Q Send-Q Local Address Foreign Address State
 tcp 0 0 0.0.0.0:21003 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:10001 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:30001 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:10002 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:30002 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:10003 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:11001 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:31001 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:11002 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:31002 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:11003 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:20001 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:20002 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:20003 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:21001 0.0.0.0:* LISTEN
 tcp 0 0 0.0.0.0:21002 0.0.0.0:* LISTEN
 tcp6 0 0 :::22 :::* LISTEN
 

3. 配置shard节点
 
连接mongos1,在mongos中添加分片:
 
~ mongo localhost:30001/admin
 MongoDB shell version: 2.4.3
 connecting to: localhost:30001/admin
 
mongos> db.runCommand({addshard : "localhost:10001", allowLocal : true})
 { "shardAdded" : "shard0000", "ok" : 1 }
 mongos> db.runCommand({addshard : "localhost:10002", allowLocal : true})
 { "shardAdded" : "shard0001", "ok" : 1 }
 mongos> db.runCommand({addshard : "localhost:10003", allowLocal : true})
 { "shardAdded" : "shard0002", "ok" : 1 }
 


错误的语法:(MongoDB2.0.4已经不支持此语法)
 
mongos> db.runCommand({addshard : "shard1/localhost:10001,localhost:10002",name:"s1", allowLocal : true})
 {
 "ok" : 0,
 "errmsg" : "couldn't connect to new shard socket exception [CONNECT_ERROR] for shard1/localhost:10001,localhost:10002"
 }
 

查看分片信息
 
mongos> db.runCommand({listshards:1})
 {
 "shards" : [
 {
 "_id" : "shard0000",
 "host" : "localhost:10001"
 },
 {
 "_id" : "shard0001",
 "host" : "localhost:10002"
 },
 {
 "_id" : "shard0002",
 "host" : "localhost:10003"
 }
 ],
 "ok" : 1
 }
 
启用数据库分片:fensme
 
mongos> db.runCommand({"enablesharding" : "fensme"})
 { "ok" : 1 }
 

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain InnoDB Full-Text Search capabilities. Explain InnoDB Full-Text Search capabilities. Apr 02, 2025 pm 06:09 PM

InnoDB's full-text search capabilities are very powerful, which can significantly improve database query efficiency and ability to process large amounts of text data. 1) InnoDB implements full-text search through inverted indexing, supporting basic and advanced search queries. 2) Use MATCH and AGAINST keywords to search, support Boolean mode and phrase search. 3) Optimization methods include using word segmentation technology, periodic rebuilding of indexes and adjusting cache size to improve performance and accuracy.

How do you alter a table in MySQL using the ALTER TABLE statement? How do you alter a table in MySQL using the ALTER TABLE statement? Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

When might a full table scan be faster than using an index in MySQL? When might a full table scan be faster than using an index in MySQL? Apr 09, 2025 am 12:05 AM

Full table scanning may be faster in MySQL than using indexes. Specific cases include: 1) the data volume is small; 2) when the query returns a large amount of data; 3) when the index column is not highly selective; 4) when the complex query. By analyzing query plans, optimizing indexes, avoiding over-index and regularly maintaining tables, you can make the best choices in practical applications.

Can I install mysql on Windows 7 Can I install mysql on Windows 7 Apr 08, 2025 pm 03:21 PM

Yes, MySQL can be installed on Windows 7, and although Microsoft has stopped supporting Windows 7, MySQL is still compatible with it. However, the following points should be noted during the installation process: Download the MySQL installer for Windows. Select the appropriate version of MySQL (community or enterprise). Select the appropriate installation directory and character set during the installation process. Set the root user password and keep it properly. Connect to the database for testing. Note the compatibility and security issues on Windows 7, and it is recommended to upgrade to a supported operating system.

How do I configure SSL/TLS encryption for MySQL connections? How do I configure SSL/TLS encryption for MySQL connections? Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

Difference between clustered index and non-clustered index (secondary index) in InnoDB. Difference between clustered index and non-clustered index (secondary index) in InnoDB. Apr 02, 2025 pm 06:25 PM

The difference between clustered index and non-clustered index is: 1. Clustered index stores data rows in the index structure, which is suitable for querying by primary key and range. 2. The non-clustered index stores index key values ​​and pointers to data rows, and is suitable for non-primary key column queries.

How do you handle large datasets in MySQL? How do you handle large datasets in MySQL? Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

See all articles