About MongoDB read-write separation and log switching

Source: Internet
Author: User
Tags readable command access

MongoDB read-write separation using replica sets to achieve

The secondary node in the replica set is not readable by default. In applications where there is less write-read, the replica sets is used to achieve read-write separation. By specifying Slaveok at the time of connection, or by specifying the secondary in the main library, the pressure of reading is shared by the primary and only the write operation is assumed.

If you access MONGO through the shell, you want to query in secondary. The following error will appear:
Imageset:secondary> Db.fs.files.find ()
Error: {"$err": "Not Master and Slaveok=false", "Code": 13435}
There are two ways to implement a query from a machine:
The first method: Db.getmongo (). Setslaveok ();
The second method: Rs.slaveok ();

The above two lines of command are for the replica to be readable.


But this way has a disadvantage is that the next time through MONGO into the instance, the query will still error, for this can be done by the following ways
VI ~/.mongorc.js
Add a line of Rs.slaveok ();
Each subsequent through the MONGO command access can be queried.

For the operation of switching logs,

>use Admin

> Db.runcommand ({logrotate:1})

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.