跳到主要内容
版本:v2.6.x

getLoadState()

This operation displays whether a specified collection or partition is loaded or not.

Java
public Boolean getLoadState(GetLoadStateReq request)

Request Syntax

Java
getLoadState(GetLoadStateReq.builder()
.databaseName(String databaseName)
.collectionName(String collectionName)
.partitionName(String partitionName)
.build()
)

BUILDER METHODS:

  • databaseName(String databaseName)

    The name of the database to which the target collection belongs.

  • collectionName(String collectionName)

    The name of a collection.

  • partitionName(String partitionName)

    The name of a partition.

RETURN TYPE:

Boolean

RETURNS:

A Boolean value that indicates the status of the specified collection or partition.

A collection is in the loaded state if any or all of its partitions are loaded.

EXCEPTIONS:

  • MilvusException

    This exception will be raised when any error occurs during this operation.

Example

Java
import io.milvus.v2.client.ConnectConfig;
import io.milvus.v2.client.MilvusClientV2;
import io.milvus.v2.service.collection.request.GetLoadStateReq;

// 1. Set up a client
ConnectConfig connectConfig = ConnectConfig.builder()
.uri("http://localhost:19530")
.token("root:Milvus")
.build();

MilvusClientV2 client = new MilvusClientV2(connectConfig);

// 2. Get load state for collection "test"
GetLoadStateReq getLoadStateReq = GetLoadStateReq.builder()
.collectionName("test")
.build();
Boolean resp = client.getLoadState(getLoadStateReq);