Skip to main content

LoadPartitions()

This method loads one or multiple specified partitions.

func (c *Client) LoadPartitions(ctx context.Context, option LoadPartitionsOption, callOptions ...grpc.CallOption) (LoadTask, error)

Request Parameters

Parameter

Description

Type

ctx

Context for the current call to work.

context.Context

option

Optional parameters of the methods.

LoadPartitionsOption

callOptions

Optional parameters for calling the methods.

grpc.CallOption

LoadPartitionsOption

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

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

NewLoadPartitionsOption()

The signature of this method is as follows:

func NewLoadPartitionsOption(collectionName string, partitionsNames ...string) *loadPartitionsOption

Parameter

Description

Type

collectionName

Name of the target collection.

string

partitionsNames

Names of the partitions to load.

...string

Return

LoadTask

Example

task, err := cli.LoadPartitions(ctx, milvusclient.NewLoadPartitionsOption("custom_quick_setup", "default", "partitionA"))
if err != nil {
// handle error
}

task.Await(ctx)