Skip to main content

ReleasePartitions()

This method releases the specified collection.

func (c *Client) ReleasePartitions(ctx context.Context, option ReleasePartitionsOption, callOptions ...grpc.CallOption) error

Request Parameters

Parameter

Description

Type

ctx

Context for the current call to work.

context.Context

option

Optional parameters of the methods.

ReleaseCollectionOption

callOptions

Optional parameters for calling the methods.

grpc.CallOption

ReleaseCollectionOption

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

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

NewReleaseCollectionOption()

The signature of this method is as follows:

func NewReleasePartitionsOptions(collectionName string, partitionNames ...string) *releasePartitionsOption

Parameter

Description

Type

collectionName

Name of the target collection.

string

partitionNames

Names of the target partitions.

...string

Return

Null

Example

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

err = cli.ReleasePartitions(ctx, milvusclient.NewReleasePartitionsOption("custom_quick_setup", "default", "partitionA"))
if err != nil {
// handle error
}