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