Flush()
This method flushes data into storage.
func (c *Client) Flush(ctx context.Context, option FlushOption, callOptions ...grpc.CallOption) (*FlushTask, error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
FlushOption
This is an interface type. The flushOption
struct types implement this interface type.
You can use the NewFlushOption
function to get the concrete implementation.
NewFlushOption
The signature of this method is as follows:
func NewFlushOption(collName string) *flushOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
FlushTask
The is a struct type. It provides the following methods.
Await
This method awaits the current flush task to complete. The signature is as follows:
func (t *FlushTask) Await(ctx context.Context) error
This method does not take any input parameters.
GetFlushStats
This method returns the statistics on the current flush tasks. The signature is as follows:
func (t *FlushTask) GetFlushStats() (segIDs []int64, flushSegIDs []int64, flushTs uint64, channelCheckpoints map[string]*msgpb.MsgPosition)
This method does not take any input parameters. The following table lists the values that return.
Parameter | Description | Type |
---|---|---|
| List of segment IDs. |
|
| List of flush segment IDs. |
|
| Flush timestamp. |
|
| Channel check points |
|
Return
*FlushTask
Example
collectionName := `customized_setup_1`
task, err := cli.Flush(ctx, milvusclient.NewFlushOption(collectionName))
if err != nil {
// handle err
}
// wait flush done, you could choose to ignore this task to do async flush
err = task.Await(ctx)
if err != nil {
// handle err
}