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 |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
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 |
---|---|---|
| Name of the target collection. |
|
| Name of the target partition. |
|
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)