milvus-logo
LFAI
< Docs
  • Java

getLoadState()

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

public Boolean getLoadState(GetLoadStateReq request)

Request Syntax

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

BUILDER METHODS:

  • 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.

notes

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

// get load state for collection "test"
GetLoadStateReq getLoadStateReq = GetLoadStateReq.builder()
        .collectionName("test")
        .build();
Boolean resp = client.getLoadState(getLoadStateReq);
// return true or false
Feedback

Was this page helpful?