AlterCollectionProperties()
This method changes the specified properties of a collection.
func (c *Client) AlterCollectionProperties(ctx context.Context, option AlterCollectionPropertiesOption, callOptions ...grpc.CallOption) error
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
AlterCollectionPropertiesOption
This is an interface type. The alterCollectionPropertiesOption
struct type implements this interface type.
You can use the NewAlterCollectionPropertiesOption()
function to get the concrete implementation.
NewAlterCollectionPropertiesOption
The signature of this method is as follows:
func NewAlterCollectionPropertiesOption(collection string) *alterCollectionPropertiesOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
Return
Null
Example
err = cli.AlterCollectionProperties(ctx, milvusclient.NewAlterCollectionPropertiesOption("my_collection").WithProperty(common.CollectionTTLConfigKey, 60))
if err != nil {
// handle error
}