Skip to main content

GetPartitionStats()

This method collects the statistics on the specified partition.

func (c *Client) GetPartitionStats(ctx context.Context, opt GetPartitionStatsOption, callOptions ...grpc.CallOption) (map[string]string, error)

Request Parameters

Parameter

Description

Type

ctx

Context for the current call to work.

context.Context

opt

Optional parameters of the methods.

GetPartitionStatsOption

callOptions

Optional parameters for calling the methods.

grpc.CallOption

GetPartitionStatsOption

This is an interface type. The getPartitionStatsOption struct type implements this interface type.

You can use the NewGetPartitionStatsOption() function to get the concrete implementation.

NewGetCollectionStatsOption

The signature of this method is as follows:

func NewGetPartitionStatsOption(collectionName string, partitionName string) *getPartitionStatsOpt

Parameter

Description

Type

collectionName

Name of the target collection.

string

partitionName

Name of the target partition.

string

Return

map[string]string

Example

import (
"context"
"github.com/milvus-io/milvus/client/v2/milvusclient"
)

stats, err := cli.GetPartitionStats(ctx, milvusclient.NewGetPartitionStatsOption("quick_setup", "partitionA"))
if err != nil {
// handle err
}
fmt.Println(stats)