Compact()
This method compacts segments to improve search efficiency.
func (c *Client) Compact(ctx context.Context, option CompactOption, callOptions ...grpc.CallOption) (int64, error)
📘Notes
Milvus automatically compacts segments at intervals. Unless you have set a clustering key in your collection, you should rely on automatic compactions.
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
CompactOption
This is an interface type. The compactOption
struct type implements this interface type.
You can use the NewCompactOption()
function to get the concrete implementation.
NewCompactOption()
The signature of this method is as follows:
func NewCompactOption(collectionName string) *compactOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
Return
int64
(A compaction ID)
Example
import (
"context"
"github.com/milvus-io/milvus/client/v2/milvusclient"
)
compactID, err := cli.Compact(ctx, milvusclient.NewCompactOption("customized_setup_1"))
if err != nil {
// handle err
}
fmt.Println(compactID)
// or GetCompactState ...