Docs HomeMongoDB Manual

dataSize

On this page本页内容

Definition

dataSize

The dataSize command returns the size in bytes for the specified data.

Syntax

The command has the following syntax:

db.runCommand(
{
dataSize: <string>,
keyPattern: <document>,
min: <document>,
max: <document>,
estimate: <boolean>
}
)

Command Fields

The command takes the following fields:

FieldTypeDescription
dataSizestringThe name of the target collection.
keyPatterndocumentOptional. The collection's key pattern to examine.
The collection must have an index with the corresponding pattern. Otherwise dataSize returns an error message.
mindocumentOptional. The lower bound of the key range to be examined.
maxdocumentOptional. The upper bound of the key range to be examined.
estimatebooleanOptional. When true, dataSize estimates the data size by assuming that all documents in the specified range are uniformly sized as per the collection's average object size. The collection's average object size is obtained from the avgObjSize field in the output of the collStats command.
Defaults to false.

Example

The following operation runs the dataSize command on the database.collection collection, specifying a key pattern of {field: 1} with the lower bound of the range of keys to be examined being {field: 10} and the upper bound of the key to be examined being {field: 100}.

db.runCommand({ dataSize: "database.collection", keyPattern: { field: 1 }, min: { field: 10 }, max: { field: 100 } })

This returns a document with the size in bytes for all matching documents. Replace database.collection with the database and collection from your deployment.

The amount of time required to return dataSize depends on the amount of data in the collection.