Skip to main content

CreatePartition()

This method creates a partition in a collection.

func (c *Client) CreatePartition(ctx context.Context, opt CreatePartitionOption, callOptions ...grpc.CallOption) error

Request Parameters

Parameter

Description

Type

ctx

Context for the current call to work.

context.Context

opt

Optional parameters of the methods.

CreateAliasOption

callOptions

Optional parameters for calling the methods.

grpc.CallOption

CreatePartitionOption

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

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

NewCreatePartitionOption

The signature of this method is as follows:

func NewCreatePartitionOption(collectionName string, partitionName string) *createPartitionOpt

Parameter

Description

Type

collectionName

Name of the target collection.

string

partitionName

Name of the partition to create

string

Return

Null

Example

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

err = cli.CreatePartition(ctx, milvusclient.NewCreatePartitionOption("quick_setup", "partitionA"))
if err != nil {
// handle error
}