绝好的MongoDB学习资料之八. Replication (2)
2. Master/Slave Master/Slave 是一种典型的备份方案,MongoDB 支持 One Master Multi Salver 和 Multi Master One Slave 等多种部署方式。 先从简单的 镜像备份 开始。 $ sudo mkdir -p /var/mongodb/0$ sudo mkdir -p /var/mongodb/1$ sudo ./mongod --for
2. Master/SlaveMaster/Slave 是一种典型的备份方案,MongoDB 支持 "One Master Multi Salver" 和 "Multi Master One Slave" 等多种部署方式。
先从简单的 "镜像备份" 开始。
$ sudo mkdir -p /var/mongodb/0 $ sudo mkdir -p /var/mongodb/1 $ sudo ./mongod --fork --logpath /dev/null --dbpath /var/mongodb/0 --master forked process: 1388 all output going to: /dev/null $ sudo ./mongod --fork --logpath /dev/null --dbpath /var/mongodb/1 --port 27018 --slave --source localhost:27017 --autoresync forked process: 1401 all output going to: /dev/null
autoresync 参数会在系统发生意外情况造成主从数据不同步时,自动启动复制操作 (同步复制 10 分钟内仅执行一次)。除此之外,还可以用 --slavedelay 设定更新频率(秒)。
使用 isMaster、printReplicationInfo、printSlaveReplicationInfo 等命令获取相关状态信息。
$ ./mongo > db.isMaster() { "ismaster" : true, "ok" : 1 } > db.printReplicationInfo() configured oplog size: 990MB log length start to end: 1164secs (0.32hrs) oplog first event time: Mon Aug 23 2010 12:23:54 GMT+0800 (CST) oplog last event time: Mon Aug 23 2010 12:43:18 GMT+0800 (CST) now: Mon Aug 23 2010 12:43:24 GMT+0800 (CST) $ ./mongo localhost:27018 > db.isMaster() { "ismaster" : false, "ok" : 1 } > db.printSlaveReplicationInfo() source: localhost:27017 syncedTo: Mon Aug 23 2010 12:43:58 GMT+0800 (CST) = 10secs ago (0hrs) > show dbs admin local test > use local switched to db local > show collections me pair.sync sources system.indexes > db.sources.find() { "_id" : ObjectId("4c71f8178d806ad3f54dd89a"), "host" : "localhost:27017", "source" : "main", "syncedTo" : { "t" : 1282538738000, "i" : 1 }, "localLogTs" : { "t" : 0, "i" : 0 } }
Slave 的配置信息保存在 local.sources 中。
通常我们会使用主从方案实现读写分离,但需要设置 Slave_OK。
$ ipython IPython 0.10 -- An enhanced Interactive Python. In [1]: from pymongo import * In [2]: m_conn = Connection() In [3]: s_conn = Connection(host="localhost:27018", slave_okay=True) In [4]: m_db = m_conn.test In [5]: s_db = s_conn.test # ----------------------------------------- # In [6]: m_db.users.insert({"name":"user3"}) Out[6]: ObjectId('4c71feb0499b140632000000') In [7]: s_db.users.find_one({"name":"user3"}) # 数据被复制到 Slave Out[7]: {u'_id': ObjectId('4c71feb0499b140632000000'), u'name': u'user3'} In [8]: m_db.users.remove({"name":"user3"}) # 删除 Master 数据 In [9]: for u in m_db.users.find(): print u ....: {u'_id': ObjectId('4c71fa4d5e01e1ba6d62398f'), u'name': u'user1'} In [10]: for u in s_db.users.find(): print u # Slave 记录被同步删除 ....: {u'_id': ObjectId('4c71fa4d5e01e1ba6d62398f'), u'name': u'user1'} # ----------------------------------------- # In [11]: s_db.users.insert({"name":"userx"}) # 在 Slave 插入数据 Out[11]: ObjectId('4c71ff2c499b140632000001') In [12]: for u in m_db.users.find(): print u # Master 上无该数据 ....: {u'_id': ObjectId('4c71fa4d5e01e1ba6d62398f'), u'name': u'user1'} In [13]: for u in s_db.users.find(): print u # Slave 同样没有 ....: {u'_id': ObjectId('4c71fa4d5e01e1ba6d62398f'), u'name': u'user1'}
可见 Slave 读操作正常,但写无效果。
我们还可以部署 "One Slave Two Master" 方案。
$ sudo mkdir -p /var/mongodb/m1 $ sudo mkdir -p /var/mongodb/m2 $ sudo mkdir -p /var/mongodb/s $ sudo ./mongod --fork --dbpath /var/mongodb/m1 --logpath /dev/null --master forked process: 1616 all output going to: /dev/null $ sudo ./mongod --fork --dbpath /var/mongodb/m2 --logpath /dev/null --port 27018 --master forked process: 1627 all output going to: /dev/null $ sudo ./mongod --fork --dbpath /var/mongodb/s --logpath /dev/null --port 27019 --slave forked process: 1638 all output going to: /dev/null
连接 Slave,添加配置。
$ ./mongo localhost:27019 MongoDB shell version: 1.6.1 connecting to: localhost:27019/test > use local switched to db local > db.sources.insert({host:"localhost:27017"}) > db.sources.insert({host:"localhost:27018"}) > db.printSlaveReplicationInfo() source: localhost:27017 syncedTo: Mon Aug 23 2010 13:06:03 GMT+0800 (CST) = 17secs ago (0hrs) source: localhost:27018 doing initial sync
在两台 Master 上添加数据,查看复制效果。
$ ./mongo localhost:27017 MongoDB shell version: 1.6.1 connecting to: localhost:27017/test > use db1 switched to db db1 > db.users.insert({name:"user1"}) > db.users.insert({name:"user2"}) > db.users.find() { "_id" : ObjectId("4c720211ade34e85c5380eab"), "name" : "user1" } { "_id" : ObjectId("4c720214ade34e85c5380eac"), "name" : "user2" } > exit bye
$ ./mongo localhost:27018 MongoDB shell version: 1.6.1 connecting to: localhost:27018/test > use db2 switched to db db2 > db.blogs.insert({title:"aaa"}) > db.blogs.insert({title:"bbb"}) > db.blogs.insert({title:"ccc"}) > db.blogs.find() { "_id" : ObjectId("4c720236f24118cb2f59218d"), "title" : "aaa" } { "_id" : ObjectId("4c720239f24118cb2f59218e"), "title" : "bbb" } { "_id" : ObjectId("4c72023cf24118cb2f59218f"), "title" : "ccc" } > exit bye
$ ./mongo localhost:27019 MongoDB shell version: 1.6.1 connecting to: localhost:27019/test > show dbs admin db1 db2 local > use db1 switched to db db1 > db.users.find() { "_id" : ObjectId("4c720211ade34e85c5380eab"), "name" : "user1" } { "_id" : ObjectId("4c720214ade34e85c5380eac"), "name" : "user2" } > use db2 switched to db db2 > db.blogs.find() { "_id" : ObjectId("4c720236f24118cb2f59218d"), "title" : "aaa" } { "_id" : ObjectId("4c720239f24118cb2f59218e"), "title" : "bbb" } { "_id" : ObjectId("4c72023cf24118cb2f59218f"), "title" : "ccc" } >
一切正常。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

It is recommended to use the latest version of MongoDB (currently 5.0) as it provides the latest features and improvements. When selecting a version, you need to consider functional requirements, compatibility, stability, and community support. For example, the latest version has features such as transactions and aggregation pipeline optimization. Make sure the version is compatible with the application. For production environments, choose the long-term support version. The latest version has more active community support.

Node.js is a server-side JavaScript runtime, while Vue.js is a client-side JavaScript framework for creating interactive user interfaces. Node.js is used for server-side development, such as back-end service API development and data processing, while Vue.js is used for client-side development, such as single-page applications and responsive user interfaces.

With the development of the Internet, people's lives are becoming more and more digital, and the demand for personalization is becoming stronger and stronger. In this era of information explosion, users are often faced with massive amounts of information and have no choice, so the importance of real-time recommendation systems has become increasingly prominent. This article will share the experience of using MongoDB to implement a real-time recommendation system, hoping to provide some inspiration and help to developers. 1. Introduction to MongoDB MongoDB is an open source NoSQL database known for its high performance, easy scalability and flexible data model. Compared to biography

The data of the MongoDB database is stored in the specified data directory, which can be located in the local file system, network file system or cloud storage. The specific location is as follows: Local file system: The default path is Linux/macOS:/data/db, Windows: C:\data\db. Network file system: The path depends on the file system. Cloud Storage: The path is determined by the cloud storage provider.

The MongoDB database is known for its flexibility, scalability, and high performance. Its advantages include: a document data model that allows data to be stored in a flexible and unstructured way. Horizontal scalability to multiple servers via sharding. Query flexibility, supporting complex queries and aggregation operations. Data replication and fault tolerance ensure data redundancy and high availability. JSON support for easy integration with front-end applications. High performance for fast response even when processing large amounts of data. Open source, customizable and free to use.

MongoDB is a document-oriented, distributed database system used to store and manage large amounts of structured and unstructured data. Its core concepts include document storage and distribution, and its main features include dynamic schema, indexing, aggregation, map-reduce and replication. It is widely used in content management systems, e-commerce platforms, social media websites, IoT applications, and mobile application development.

On Linux/macOS: Create the data directory and start the "mongod" service. On Windows: Create the data directory and start the MongoDB service from Service Manager. In Docker: Run the "docker run" command. On other platforms: Please consult the MongoDB documentation. Verification method: Run the "mongo" command to connect and view the server version.

The MongoDB database file is located in the MongoDB data directory, which is /data/db by default, which contains .bson (document data), ns (collection information), journal (write operation records), wiredTiger (data when using the WiredTiger storage engine ) and config (database configuration information) and other files.
