EstimateDocumentCount
Quickly estimate the number of documents in a collection in Astra DB using a fast, approximate counting method to support efficient data management.
Instructions
Estimate the number of documents in a collection using a fast, approximate count method
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionName | Yes | Name of the collection to estimate document count for |
Input Schema (JSON Schema)
{
"properties": {
"collectionName": {
"description": "Name of the collection to estimate document count for",
"type": "string"
}
},
"required": [
"collectionName"
],
"type": "object"
}