This method drops a partition and all data within this partition. Note that the _default
partition cannot be dropped.
new milvusClient(MILUVS_ADDRESS).partitionManager.dropPartition(DropPartitionReq);
Parameter | Description | Type | Required |
---|---|---|---|
collection_name | Name of the collection in which to drop the partition | String | True |
partition_name | Name of the partition to drop | String | True |
new milvusClient(MILUVS_ADDRESS).partitionManager.dropPartition({
collection_name: 'my_collection',
partition_name: 'my_partition',
});
{ error_code: 'Success', reason: '' }