AlterDatabaseProperties()
This method changes the specified properties of a database.
func (c *Client) AlterDatabaseProperies(ctx context.Context, option AlterDatabasePropertiesOption, 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. |
|
AlterDatabasePropertiesOption
This is an interface type. The alterDatabasePropertiesOption
struct type implements this interface type.
You can use the NewAlterDatabasePropertiesOption()
function to get the concrete implementation.
NewAlterDatabasePropertiesOption
The signature of this method is as follows:
func NewAlterDatabasePropertiesOption(dbName string) *alterDatabasePropertiesOption
Parameter | Description | Type |
---|---|---|
| Name of the target database. |
|
Return
Null
Example
dbName := `test_db`
err = cli.AlterDatabaseProperties(ctx, milvusclient.NewAlterDatabasePropertiesOption(dbName).WithProperty("database.replica.number", 2))
if err != nil {
// handle err
}