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 |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
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 |
---|---|---|
| Name of the target collection. |
|
| Names of the partitions to load. |
|
Return
LoadTask
Example
task, err := cli.LoadPartitions(ctx, milvusclient.NewLoadPartitionsOption("custom_quick_setup", "default", "partitionA"))
if err != nil {
// handle error
}
task.Await(ctx)