This topic describes how to drop a partition in a specified collection.
You have to release the partition before you drop it.
Dropping a partition irreversibly deletes all data within it.
When interacting with Milvus using Python code, you have the flexibility to choose between PyMilvus and MilvusClient (new). For more information, refer to Python SDK .
from pymilvus import Collection
collection.drop_partition ("novel" )
await milvusClient.dropPartition ({
collection_name : "book" ,
partition_name : "novel" ,
});
err := milvusClient.DropPartition(
context.Background(),
"book" ,
"novel" ,
)
if err != nil {
log.Fatal("fail to drop partition:" , err.Error())
}
milvusClient.dropPartition (
DropPartitionParam .newBuilder ()
.withCollectionName ("book" )
.withPartitionName ("novel" )
.build ()
);
delete partition -c book -p novel
curl -X 'DELETE' \
'http://localhost:9091/api/v1/partition' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"collection_name": "book",
"partition_name": "novel"
}'
Parameter
Description
partition_name
Name of the partition to drop.
Parameter
Description
collection_name
Name of the collection to drop partition from.
partition_name
Name of the partition to drop.
Parameter
Description
ctx
Context to control API invocation process.
CollectionName
Name of the collection to drop a partition in.
partitionName
Name of the partition to drop.
Parameter
Description
CollectionName
Name of the collection to drop a partition in.
PartitionName
Name of the partition to drop.
Option
Description
-c
Name of the collection to drop partition from.
-p
Name of the partition to drop.
Parameter
Description
collection_name
Name of the collection to drop partition from.
partition_name
Name of the partition to drop.
Learn more basic operations of Milvus: