October 28, 2019 ( last updated : October 27, 2019 )
MongoDB Sharded Cluster
MongoDB
https://github.com/gridgentoo/osquery
Sharding is a MongoDB process to store data-set across different machines. It allows you to perform a horizontal scale of data and to partition all data across independent instances. Sharding allows you to add more machines based on data growth to your stack.
Let's make it simple. When you have collections of music, 'Sharding' will save and keep your music collections in different folders on different instances or replica sets while 'Replication' is just syncing your music collections to other instances.
Shard - Used to store all data. And in a production environment, each shard is replica sets. Provides high-availability and data consistency.
Config Server - Used to store cluster metadata, and contains a mapping of cluster data set and shards. This data is used by mongos/query server to deliver operations. It's recommended to use more than 3 instances in production.
Mongos/Query Router Mongos/Query Router - This is just mongo instances running as application interfaces. The application will make requests to the 'mongos' instance, and then 'mongos' will deliver the requests using shard key to the shards replica sets.
In this tutorial, we will disable SELinux. Change SELinux configuration from 'enforcing' to 'disabled'.
Connect to all nodes through OpenSSH.
Disable SELinux by editing the configuration file.
Change SELINUX value to 'disabled'.
Save and exit.
Next, edit the hosts file on each server.
Paste the following hosts configuration:
Save and exit.
Now restart all servers using the reboot command.
We will use the latest MongoDB version (3.4) for all instances. Add new MongoDB repository by executing the following command:
Now install mongodb 3.4 from mongodb repository using the yum command below.
After mongodb is installed, use 'mongo' or 'mongod' command in the following way to check version details.
In the 'prerequisites' section, we've already defined config server with 2 machines 'configsvr1' and 'configsvr2'. And in this step, we will configure it to be a replica set.
If there is a mongod service running on the server, stop it using the systemctl command.
Edit the default mongodb configuration 'mongod.conf' using the Vim editor.
Change the DB storage path to your own directory. We will use '/data/db1' for the first server, and '/data/db2' directory for the second config server.
Change the value of the line 'bindIP' to your internal network addres - 'configsvr1' with IP address 10.0.15.31, and the second server with 10.0.15.32.
On the replication section, set a replication name.
And under sharding section, define a role of the instances. We will use these two instances as 'configsvr'.
Save and exit.
Next, we must create a new directory for MongoDB data, and then change the owner of that directory to 'mongod' user.
After this, start the mongod service with the command below.
You can use the netstat command to check whether or not the mongod service is running on port 27017.
Configsvr1 and Configsvr2 are ready for the replica set. Connect to the 'configsvr1' server and access the mongo shell.
Initiate the replica set name with all configsvr member using the query below.
If you get a results '{ "ok" : 1 }', it means the configsvr is already configured with replica set.
and you will be able to see which node is master and which node is secondary.
The configuration of Config Server Replica Set is done.
In this step, we will configure 4 'centos 7' servers as 'Shard' server with 2 'Replica Set'.
Connect to each server, stop the mongod service (If there is service running), and edit the MongoDB configuration file.
Change the default storage to your specific directory.
On the 'bindIP' line, change the value to use your internal network address.
On the replication section, you can use 'shardreplica01'' for the first and second instances. And use 'shardreplica02' for the third and fourth shard servers.
Next, define the role of the server. We will use all this as shardsvr instances.
Save and exit.
Now, create a new directory for MongoDB data.
Start the mongod service.
Check MongoDB is running using the following command:
You will see MongoDB is running on the local network address.
Next, create a new replica set for these 2 shard instances. Connect to the 'shardsvr1' and access the mongo shell.
Initiate the replica set with the name 'shardreplica01', and the members are 'shardsvr1' and 'shardsvr2'.
If there is no error, you will see results as below.
Results from shardsvr3 and shardsvr4 with replica set name 'shardreplica02'.
Redo this step for shardsvr3 and shardsvr4 servers with different replica set name 'shardreplica02'.
Now we've created 2 replica sets - 'shardreplica01' and 'shardreplica02' - as the shard.
The 'Query Router' or mongos is just instances that run 'mongos'. You can run mongos with the configuration file, or run with just a command line.
Login to the mongos server and stop the MongoDB service.
Run mongos with the command line as shown below.
Use the '--configdb' option to define the config server. If you are on production, use at least 3 config servers.
You should see results similar to the following.
mongos instances are running.
Open another shell from the previous step, connect to the mongos server again, and access the mongo shell.
Add shard server with the sh mongodb query.
For 'shardreplica01' instances:
For 'shardreplica02' instances:
Make sure there is no error and check the shard status.
You will see sharding status similar to the way what the following screenshot shows.
We have 2 shard replica set and 1 mongos instance running on our stack.
To test the setup, access the mongos server mongo shell.
Enable Sharding for a Database
Create a new database and enable sharding for the new database.
Now see the status of the database, it's has been partitioned to the replica set 'shardreplica01'.
Enable Sharding for Collections
Next, add new collections to the database with sharding support. We will add new collection named 'stack' with shard collection 'name', and then see database and collections status.
New collections 'stack' with shard collection 'name' has been added.
Add documents to the collections 'stack'.
Now insert the documents to the collections. When we add documents to the collection on sharded cluster, we must include the 'shard key'.
In the example below, we are using shard key 'name', as we added when enabling sharding for collections.
As shown in the following screenshots, documents have been successfully added to the collection.
If you want to test the database, you can connect to the replica set 'shardreplica01' PRIMARY server and open the mongo shell. I'm logging in to the 'shardsvr2' PRIMARY server.
Check database available on the replica set.
You will see that the database, collections, and documents are available in the replica set.
MongoDB Sharded Cluster on CentOS 7 has been successfully installed and deployed
#############################################################################################Reference
Originally published October 28, 2019
Latest update October 27, 2019
Related posts :