Skip to main content

AlterAlias()

This method changes the alias associated with the specified collection.

func (c *Client) AlterAlias(ctx context.Context, option AlterAliasOption, callOptions ...grpc.CallOption) error

Request Parameters

Parameter

Description

Type

ctx

Context for the current call to work.

context.Context

option

Optional parameters of the methods.

AlterAliasOption

callOpts

Optional parameters for calling the methods.

grpc.CallOption

AlterAliasOption

This is an interface type. The alterAliasOption struct type implements this interface type.

You can use the NewAlterAliasOption() function to get the concrete implementation.

NewAlterAliasOption

The signature of this method is as follows:

func NewAlterAliasOption(alias, collectionName string) *alterAliasOption

Parameter

Description

Type

alias

Alias to be assigned to the collection.

string

collectionName

Name of the target collection.

string

Return

Null

Example

err = cli.AlterAlias(ctx, milvusclient.NewAlterAliasOption("alice", "customized_setup_1"))
if err != nil {
// handle error
}

aliases, err := cli.ListAliases(ctx, milvusclient.NewListAliasesOption("customized_setup_1"))
if err != nil {
// handle error
}
fmt.Println(aliases)

aliases, err = cli.ListAliases(ctx, milvusclient.NewListAliasesOption("customized_setup_2"))
if err != nil {
// handle error
}
fmt.Println(aliases)