Run a Command
Overview
In this guide, you can learn how to run a database command with the C++ driver. You can use database commands to perform a variety of administrative and diagnostic tasks, such as fetching server statistics, initializing a replica set, or running an aggregation pipeline.
Important
Prefer Driver Methods to Database Commands
The driver provides wrapper methods for many database commands. We recommend using driver methods instead of executing database commands when possible.
To perform administrative tasks, use the MongoDB Shell
instead of the C++ driver. Calling the db.runCommand()
method inside the shell is the preferred method to issue database
commands, as it provides a consistent interface between the shell and
drivers.
Execute a Command
To run a database command, call the run_command()
execution method on a mongocxx::database
instance
and pass in a document that specifies the command and any relevant arguments.
The method returns the result of the command as a bsoncxx::document::value
object.
You can use the run_command()
method with any database command.
For a full list of database commands and corresponding parameters, see Database Commands in the MongoDB Server manual.
The following example shows how you can use the run_command()
method to run the hello
command on a database, which returns information about
the current member's role in the replica set:
auto db = client["my_database"]; auto command = make_document(kvp("hello" , 1)); auto result = db.run_command(command.view()); std::cout << bsoncxx::to_json(result) << std::endl;
{ "topologyVersion" : { "processId" : ..., "counter" : ... }, "hosts" : [ ... ], "setName" : ..., "setVersion" : ..., "isWritablePrimary" : ..., "secondary" : ..., "primary" : ..., "tags" : { "region" : ..., "availabilityZone" : ..., "provider" : ..., "workloadType" : ..., "nodeType" : ..., "diskState" : ... }, "me" : ..., "electionId" : ..., "lastWrite" : ..., "lastWriteDate" : ..., "majorityOpTime" : ..., "majorityWriteDate" : ..., "maxBsonObjectSize" : ..., "maxMessageSizeBytes" : ..., "maxWriteBatchSize" : ..., "localTime" : ..., "logicalSessionTimeoutMinutes" : ..., "connectionId" : ..., "minWireVersion" : ..., "maxWireVersion" : ..., "readOnly" : ..., "ok" : ..., "$clusterTime" : ..., "signature" : ... }
Command Options
To customize command execution behavior, you can set options in the command
document that you pass to the run_command()
method. To learn more about
a command and the options that it accepts, locate the command and follow the
corresponding link on the Database Commands page
in the MongoDB Server manual.
For example, you can instruct the connectionStatus
command
to return the full set of privileges that currently-authenticated users possess by setting the showPrivileges
option to true
in the command document:
auto db = client["my_database"]; auto command = make_document(kvp("connectionStatus" , 1), kvp("showPrivileges", true)); auto result = db.run_command(command.view()); std::cout << bsoncxx::to_json(result) << std::endl;
{ "authInfo" : { "authenticatedUsers" : [ { "user" : ..., "db" : ... } ], "authenticatedUserRoles" : [ { "role" : ..., "db" : ... } ], "authenticatedUserPrivileges" : [ { "resource" : { "db" : "", "collection" : "" }, "actions" : [ ... ] }, { "resource" : { "db" : "config", "collection" : "system.sessions" }, "actions" : [ ... ] }, ..., { "resource" : { "db" : "", "collection" : "" }, "actions" : [ ... ] } ] }, "ok" : 1 }
Response
The run_command()
method returns a bsoncxx::document::value
object that contains
the response from the database after the command has been executed. Each
database command performs a different function, so the response content
can vary across commands. However, every response contains documents
with the following fields:
Field | Description |
---|---|
<command result> | Provides fields specific to the database command. For example,
count returns the n field and explain returns the
queryPlanner field. |
ok | Indicates whether the command has succeeded ( 1 )
or failed (0 ). |
operationTime | Indicates the logical time of the operation. MongoDB uses the
logical time to order operations. |
$clusterTime | Provides a document that returns the signed cluster time. Cluster time is a logical time used for ordering of operations. The document contains the following fields:
|
Additional Information
For more information about the concepts in this guide, see the following documentation:
To learn more about the methods or types discussed in this guide, see the following API documentation: