RefreshLoad()
This method refreshes the load state of the specified collection.
func (c *Client) RefreshLoad(ctx context.Context, option RefreshLoadOption, 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. |
|
RefreshLoadOption
This is an interface type. The refreshLoadOption
struct type implements this interface type.
You can use the NewRefreshLoadOption()
function to get the concrete implementation.
NewRefreshLoadOption()
The signature of this method is as follows:
func NewRefreshLoadOption(collectionName string) *refreshLoadOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
Return
LoadTask
Example
import (
"context"
"github.com/milvus-io/milvus/client/v2/milvusclient"
)
loadTask, err := cli.RefreshLoad(ctx, milvusclient.NewRefreshLoadOption(collectionName))
if err != nil {
// handle err
}
err = loadTask.Await(ctx)
if err != nil {
// handler err
}