GetCompactionState()
This method compacts segments to improve search efficiency.
func (c *Client) GetCompactionState(ctx context.Context, option GetCompactionStateOption, callOptions ...grpc.CallOption) (entity.CompactionState, error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
GetCompactStateOption
This is an interface type. The getCompactStateOption
struct type implements this interface type.
You can use the NewGetCompactStateOption()
function to get the concrete implementation.
NewGetCompactStateOption()
The signature of this method is as follows:
func NewGetCompactionStateOption(compactionID int64) *getCompactionStateOption
Parameter | Description | Type |
---|---|---|
| ID of a compaction task, which is the value that the |
|
entity.CompactionState
The entity.CompactionState
is a private enum type and has the following possible values.
const (
CompactionStateRunning CompactionState = CompactionState(commonpb.CompactionState_Executing)
CompactionStateCompleted CompactionState = CompactionState(commonpb.CompactionState_Completed)
)
Return
entity.CompactionState
Example
import (
"context"
"github.com/milvus-io/milvus/client/v2/milvusclient"
)
state, err := cli.GetCompactionState(ctx, milvusclient.NewGetCompactionStateOption(compactID))
if err != nil {
// handle err
}
fmt.Println(state)