Skip to content

BUCKET.DELETE

Deletes documents from a bucket that match a filter expression.

BUCKET.DELETE <bucket> <query> [LIMIT <n>] [COLLATION <json-spec>]
ParameterTypeRequiredDescription
bucketstringYesName of the bucket to delete from.
queryJSON or BSONYesFilter expression to match documents. Use {} to match all documents.
LIMITintegerNoMaximum number of documents to delete per batch. Must be non-negative.
COLLATIONJSONNoQuery-level collation spec for locale-aware string comparison. Overrides index collation for this query.

Note: SORTBY is not supported for delete operations.

The command returns a cursor ID and an array of ObjectIds for deleted documents. The format depends on the protocol version.

An ObjectId is a 12-byte unique identifier. The encoding format of returned ObjectIds depends on the session’s object_id_format setting:

FormatResponse TypeDescription
hexString24-character hex-encoded string (default)
bytesBinaryRaw 12-byte array

To change the format:

SESSION.ATTRIBUTE SET object_id_format hex
SESSION.ATTRIBUTE SET object_id_format bytes

RESP3 (map format):

1# "cursor_id" => (integer) <cursor-id>
2# "object_ids" => 1) "6835a1c0e4b0f72a3c000001"
2) "6835a1c0e4b0f72a3c000002"
...

RESP2 (array format):

1) (integer) <cursor-id>
2) 1) "6835a1c0e4b0f72a3c000001"
2) "6835a1c0e4b0f72a3c000002"
...

When no documents match the filter, the object_ids array is empty.

Auto-commit mode (default):

The delete operation is committed immediately. Deleted documents cannot be recovered.

Transaction mode (within BEGIN/COMMIT):

The delete operation is not committed until COMMIT is called. Use ROLLBACK to cancel the delete operation.

When using LIMIT, use the cursor ID with BUCKET.ADVANCE to delete more matching documents:

BUCKET.ADVANCE DELETE <cursor-id>

Each call deletes the next batch of documents up to the limit.

BUCKET.DELETE is a metadata operation and can be executed from any node. The exception is a bucket with a vector index. A vector-indexed bucket is pinned to a single shard, and deleting a document must also remove its vector from the local graph, so the command must be sent to the node that owns that shard. When the shard is hosted on another node, the server rejects the request with a redirect to that node.

Error CodeDescription
REJECTOnly when the bucket has a vector index: the bucket’s shard is hosted on another node. The error includes the target address: REJECT <shardId> <host>:<port>.
BUCKETBEINGREMOVEDThe bucket is being removed.
NOSUCHBUCKETThe bucket does not exist.
NOSUCHNAMESPACEThe namespace does not exist.
NAMESPACEBEINGREMOVEDThe namespace is being removed.
VECTORINDEXNOTREADYA vector index on the bucket is still bootstrapping. Retry after a short delay.
ERRSORTBY is an unsupported argument.

Delete all documents:

BUCKET.DELETE users '{}'

Delete with filter:

BUCKET.DELETE users '{"status": "inactive"}'

Delete with limit:

BUCKET.DELETE users '{"age": {"$gt": 30}}' LIMIT 50

Delete with collation:

BUCKET.DELETE users '{"name": "alice"}' COLLATION '{"locale": "en", "strength": 2}'

Deletes documents where name matches "alice" using case-insensitive English collation.

Batch delete with pagination:

> BUCKET.DELETE users '{"status": "inactive"}' LIMIT 100
1# "cursor_id" => (integer) 1
2# "object_ids" =>... (first 100 deleted)
> BUCKET.ADVANCE DELETE 1
1# "cursor_id" => (integer) 1
2# "object_ids" => ... (next 100 deleted)

Delete within a transaction:

BEGIN
BUCKET.DELETE users '{"status": "inactive"}'
COMMIT