On this page本页内容
dataSize¶The dataSize command returns the data size for a set of data within a certain range:
The command takes the following fields:
dataSize |
string | The name of the target collection. |
keyPattern |
document |
The collection must have an index with the corresponding pattern. Otherwise |
min |
document | |
max |
document | |
estimate |
boolean |
Defaults to false. |
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}.
This will return a document that contains the size of all matching documents. Replace database.collection value with database and collection from your deployment.
The amount of time required to return dataSize depends on the amount of data in the collection.