WWW.DBVERSITY.COM
WWW.DBVERSITY.COM
Menu
  • Home
  • About us
  • Discussions
  • Login / Register
Welcome to the world of Database Technologies
Browse: Home » dbversity » Page 15

Messing with MongoDB Shard Tags ?!! best practices

January 6, 2016 · by dbversity · in MongoDB

Question)   What will be the expected behavior when we do following 4 cases. We know we should avoid this usage, but still wanted to know what if a user created it mistakenly and wanted to estimate the impact.  …

MongoDB WiredTiger File structure & WiredTiger.turtle

January 6, 2016 · by dbversity · in MongoDB

The WiredTiger.turtle file contains crucial information required by WiredTiger to understand the other data files. Unfortunately, there is no automated process to recreate this file if you delete it mistakenly, so be very careful with this file. MongoDB WiredTiger Files…

How to get the compression type of a MongoDB collection ?!

January 5, 2016 · by dbversity · in MongoDB

To specify compression for specific collections, you’ll need to override the defaults by passing the appropriate options in the db.createCollection() command. For example, to create a collection called “myNewCol” using the zlib compression library: db.createCollection( “myNewCol”, { storageEngine: { wiredTiger:…

MongoDB 3.x WiredTiger with gridFs ? Is it recommendable ?!

January 5, 2016 · by dbversity · in MongoDB

If you’re using GridFS to store large documents such as images and videos, MongoDB automatically breaks the large files into many smaller “chunks” and reassembles them when requested. The implementation of GridFS maintains two collections: fs.files, which contains the metadata for…

How to know existing shard tags and their ranges ?!

January 5, 2016 · by dbversity · in MongoDB

mongos> sh.status() — Sharding Status — sharding version: { “_id” : 1, “minCompatibleVersion” : 5, “currentVersion” : 6, “clusterId” : ObjectId(“568bbc90f165cf6ce558ef40”) } shards: { “_id” : “rs1”, “host” : “rs1/srinivas-HP-G62-Notebook-PC:27010,srinivas-HP-G62-Notebook-PC:27011”, “tags” : [ ] } { “_id” : “rs2”, “host”…

Shard Tagging with overlapping/Same ranges ?!!

January 5, 2016 · by dbversity · in MongoDB

  What will happen when you create a Shard Tagging with overlapping ranges ?!! See below. Any given shard key range may only have one assigned tag. You cannot overlap defined ranges, or tag the same range more than once –…

How to know current storage engine in MongoDB ?

January 4, 2016 · by dbversity · in MongoDB

  Ideally, db.serverStatus() gives the all the server related information including storage engine details, however below command will specifically tell you the storage engine details. Connect to the respective Replica set member and execute below command. rs1:PRIMARY> db.serverStatus().storageEngine.name wiredTiger OR…

Distributed consensus in MongoDB’s replication system

January 4, 2016 · by dbversity · in MongoDB

    Distributed Consensus in MongoDB’s Replication System Hi MongoDB User, Take an hour to see how changes to MongoDB’s election protocal will lead to faster elections, more robust systems, and lay the groundwork for new replication features going forward….

MongoDB 3.2 Shard creation script

December 30, 2015 · by dbversity · in MongoDB

Below shell script will be useful to create a MongoDB’s sharded environment on a single sever/multiple servers depending on your requirement. Things to remember to execute below automated script. 1) We should have required privileges to the user on your…

MongoDB query to get the stats of all collections in all databases

December 28, 2015 · by dbversity · in MongoDB

To collect the stats of all the collections in all databases from a mongo shell, you can run below query.  db.getMongo().getDBNames().forEach(function (d) { print(“Database: ” + d ); var curr_db = db.getSiblingDB(d); printjson( curr_db.stats() ); curr_db.getCollectionNames().forEach(function(coll) { print(“.. collection: ”…

← Previous 1 … 14 15 16 … 49 Next →

Categories

Categories

Copyright © 2025 WWW.DBVERSITY.COM

Powered by WordPress and Origin