Schema for information about a database partition.

interface PartitionInformation {
    db_name: string;
    doc_count: number;
    doc_del_count: number;
    partition: string;
    partitioned_indexes?: PartitionInformationIndexes;
    sizes: PartitionInformationSizes;
}

Properties

db_name: string

The name of the database.

doc_count: number

A count of the documents in the specified database partition.

doc_del_count: number

Number of deleted documents.

partition: string

The name of the partition in the database.

partitioned_indexes?: PartitionInformationIndexes

Schema for information about the partition index count and limit in a database.

The size of active and external data, in bytes.

Generated using TypeDoc