- Back Up and Restore Deployments >
- Restore MongoDB Deployments >
- Query a Backup Snapshot
Query a Backup Snapshot¶
On this page
Cloud Manager provides queryable backups. This functionality allows you to more quickly query specific backup snapsnots. You can use the queryable backups to:
- Restore a subset of data within the MongoDB deployment.
- Compare previous versions of data against the current data.
- Identify the best point in time to restore a system by comparing data from multiple snapshots.
Considerations¶
Read-Only Instance¶
Cloud Manager provisions these queryable snapshots as read-only MongoDB instances.
Important
These instances are available for up to 24 hours.
Query Restrictions on the Queryable Snapshots¶
You cannot perform the following operations on queryable snapshots:
- Map-reduce operations.
- Queries that require disk usage, such as
running aggregation
with the
allowDiskUse
option to perform large sort operations.
Cannot Query Snapshots on Encrypted Snapshots¶
If you encrypted your snapshots, you cannot query those encrypted snapshots.
Connection Methods¶
Connections to these instances are over TLS/SSL and require x.509 authentication. Cloud Manager provides:
- An executable that creates a tunnel which handles the connection, including the client TLS/SSL and the x.509 authentication.
- x.509 certificates if you want to handle the connection details manually, including the TLS/SSL and the x.509 authentication.
Prerequisites¶
Queryable backups are available for MongoDB 3.2 or later replica sets or MongoDB 3.2 or later sharded clusters with CSRS.
Query Backup (Use Tunnel to Connect)¶
Note
The tunnel handles the security (TLS/SSL and x.509 authentication) for connecting to the instance.
Go to Backup view and click the Overview tab.¶
For the deployment whose backup you want to query, click the ellipsis button under Options column and select Query.
You can also click the deployment to view its snapshots and click the Query button under the Actions column.
Follow the prompts to query a backup snapshot.¶
Select the snapshot to query and click Next.
Start the process to query a snapshot. You will be prompted for 2-factor verification.
Select Backup Tunnel as the connection method to the queryable snapshot.
Select your Platform and download.
Uncompress the downloaded file.
Open a terminal or command prompt and go to the uncompressed <tunnel> directory. Run the executable to start the tunnel.
The default port for the tunnel is
27017
. To change the port, use the--local
flag, as in the following example:Note
If you change the port, you must include the port information when connecting.
For the full list of options you can pass to the tunnel, run the tunnel exectuable with the
-h
option:Use
mongosh
or a MongoDB driver to connect to the backup via the tunnel.- If connecting locally from the same machine as where the tunnel is running, you do not need to specify a connection string or host information. Otherwise, specify a connection string or host information for the machine where the tunnel is running.
- If you have changed the port that the tunnel is listening on, you must specify the port information when connecting.
Tip
Once you have finished querying this snapshot, you can terminate the queryable instance:
- Go to the Restore History and hover over the Status column for the deployment item.
- Click Cancel.
Rotate Master Key after Restoring Snapshots Encrypted with AES256-GCM
If you restore an encrypted snapshot that Cloud Manager encrypted with AES256-GCM, rotate your master key after completing the restore.
Query Backup (Handle TLS Authentication Manually)¶
Note
The X.509 certificates are valid for 24 hours.
Go to Backup view and click the Overview tab.¶
For the deployment whose backup you want to query, click Options column then select Query.
underYou can also click the deployment to view its snapshots and click the Query button under the Actions column.
Follow the prompts to query a backup snapshot.¶
Select the snapshot to query and click Next.
Start the process to query a snapshot. If prompted for your password, enter your password to verify.
Select Connect Manually as the connection method to the queryable snapshot.
Download the X.509 client PEM file.
Download the Certificate Authority PEM file.
Use
mongosh
or a MongoDB driver to connect to the queryable backup host. To connect, you must specify the hostname and port, the TLS option, and the X.509 certificates.Example
If using
mongosh
to connect to the instance:
Tip
Once you have finished querying this snapshot, you can terminate the queryable instance:
- Go to the Restore History and hover over the Status column for the deployment item.
- Click Cancel.
Rotate Master Key after Restoring Snapshots Encrypted with AES256-GCM
If you restore an encrypted snapshot that Cloud Manager encrypted with AES256-GCM, rotate your master key after completing the restore.
Next Steps¶
To restore a database or a collection using the queryable backup MongoDB instance, see Restore a Database or Collection from Queryable Backup.