Distributed

Delete a shard key

POST
Deletes one or more shard keys for a specified collection.

Path parameters

collection_namestringRequired
Name of the collection to create shards for

Query parameters

timeoutintegerOptional
Wait for operation commit timeout in seconds. If timeout is reached - request will return with service error.

Request

This endpoint expects an object.
shard_key
unionRequired

Response

This endpoint returns an object
time
doubleOptional
Time spent to process this request
status
stringOptional
result
booleanOptional
POST
1curl -X POST http://localhost:6333/collections/collection_name/shards/delete \
2 -H "api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "shard_key": "shard_key"
6}'
200Successful
1{
2 "time": 1.1,
3 "status": "status",
4 "result": true
5}