loadPartitions()
This operation releases the partitions in a specified collection from memory.
public void loadPartitions(LoadPartitionsReq request)
Request Syntax
loadPartitions(LoadPartitionsReq.builder()
.collectionName(String collectionName)
.partitionNames(List<String> partitionNames)
.build()
)
BUILDER METHODS:
collectionName(String collectionName)
The name of an existing collection.
partitionNames(List<String> partitionNames)
A list of the names of the partitions to load.
RETURNS:
void
EXCEPTIONS:
MilvusClientExceptions
This exception will be raised when any error occurs during this operation.
Example
// load partition in collection
LoadPartitionsReq loadPartitionsReq = LoadPartitionsReq.builder()
.collectionName("test")
.partitionNames(Collections.singletonList("test_partition"))
.build();
client.loadPartitions(loadPartitionsReq);