

InterviewSolution
Saved Bookmarks
1. |
_________ is used to remove tags from a particular shard.(a) sh.removeTag()(b) sh.removeShard()(c) sh.removeShardTag()(d) all of the mentionedI got this question at a job interview.My query is from Troubleshooting Sharded Cluster in portion Sharding Concepts, Mechanics and Sharded Cluster of MongoDB |
Answer» CORRECT answer is (c) sh.removeShardTag() Best explanation: You MAY REMOVE TAGS from a particular shard using the sh.removeShardTag() METHOD when connected to a mongos instance. |
|