mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 17:48:29 +08:00
Cherry pick from master pr: #40268 #40284 #40328 #40373 #40381 ------------------------------------------ #### fix: [GoSDK] Pass base64 passwd content instead of raw data (#40268) Related to #40261 Also add some options for create collection options and refine some behavior ------------------------------------------ #### fix: [GoSDK] Return role without grants (#40284) Related to #40274 Previousy DescribeRole returns only roles with grants, this PR add select role action to check role existence. Also added database properties related option ----------------------------------------- #### fix: [GoSDK] Pass only valid data for nullable column (#40328) Related to #40327 ----------------------------------------- #### enhance: [GoSDK] Add DescribeReplica API & sync rbac v2 (#40373) Related to #31293 #37031 This PR: - Add DescribeReplica API - Add unified RBAC v2 API names(AddPrivilegesToGroup, RemovePrivilegesFromGroup, GrantPrivilegeV2, RevokePrivilegeV2) - Mark old ones deprecated ----------------------------------------- #### enhance: [GoSDK] support update ts caching policy(#40381) Related to #39093 This PR add update timestamp check and retry policy according to the design of the related issue ----------------------------------------- --------- Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
189 lines
6.2 KiB
Go
189 lines
6.2 KiB
Go
// Licensed to the LF AI & Data foundation under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package milvusclient
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/milvuspb"
|
|
"github.com/milvus-io/milvus/client/v2/entity"
|
|
"github.com/milvus-io/milvus/pkg/v2/util/merr"
|
|
)
|
|
|
|
// CreateCollection is the API for create a collection in Milvus.
|
|
func (c *Client) CreateCollection(ctx context.Context, option CreateCollectionOption, callOptions ...grpc.CallOption) error {
|
|
req := option.Request()
|
|
|
|
err := c.callService(func(milvusService milvuspb.MilvusServiceClient) error {
|
|
resp, err := milvusService.CreateCollection(ctx, req, callOptions...)
|
|
return merr.CheckRPCCall(resp, err)
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
indexes := option.Indexes()
|
|
for _, indexOption := range indexes {
|
|
task, err := c.CreateIndex(ctx, indexOption, callOptions...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = task.Await(ctx)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
if option.IsFast() {
|
|
task, err := c.LoadCollection(ctx, NewLoadCollectionOption(req.GetCollectionName()))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return task.Await(ctx)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *Client) ListCollections(ctx context.Context, option ListCollectionOption, callOptions ...grpc.CallOption) (collectionNames []string, err error) {
|
|
req := option.Request()
|
|
err = c.callService(func(milvusService milvuspb.MilvusServiceClient) error {
|
|
resp, err := milvusService.ShowCollections(ctx, req, callOptions...)
|
|
err = merr.CheckRPCCall(resp, err)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
collectionNames = resp.GetCollectionNames()
|
|
return nil
|
|
})
|
|
|
|
return collectionNames, err
|
|
}
|
|
|
|
func (c *Client) DescribeCollection(ctx context.Context, option DescribeCollectionOption, callOptions ...grpc.CallOption) (collection *entity.Collection, err error) {
|
|
req := option.Request()
|
|
err = c.callService(func(milvusService milvuspb.MilvusServiceClient) error {
|
|
resp, err := milvusService.DescribeCollection(ctx, req, callOptions...)
|
|
err = merr.CheckRPCCall(resp, err)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
collection = &entity.Collection{
|
|
ID: resp.GetCollectionID(),
|
|
Schema: entity.NewSchema().ReadProto(resp.GetSchema()),
|
|
PhysicalChannels: resp.GetPhysicalChannelNames(),
|
|
VirtualChannels: resp.GetVirtualChannelNames(),
|
|
ConsistencyLevel: entity.ConsistencyLevel(resp.ConsistencyLevel),
|
|
ShardNum: resp.GetShardsNum(),
|
|
Properties: entity.KvPairsMap(resp.GetProperties()),
|
|
UpdateTimestamp: resp.GetUpdateTimestamp(),
|
|
}
|
|
collection.Name = collection.Schema.CollectionName
|
|
return nil
|
|
})
|
|
|
|
return collection, err
|
|
}
|
|
|
|
func (c *Client) HasCollection(ctx context.Context, option HasCollectionOption, callOptions ...grpc.CallOption) (has bool, err error) {
|
|
req := option.Request()
|
|
err = c.callService(func(milvusService milvuspb.MilvusServiceClient) error {
|
|
resp, err := milvusService.DescribeCollection(ctx, req, callOptions...)
|
|
err = merr.CheckRPCCall(resp, err)
|
|
if err != nil {
|
|
// ErrCollectionNotFound for collection not exist
|
|
if errors.Is(err, merr.ErrCollectionNotFound) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
has = true
|
|
return nil
|
|
})
|
|
return has, err
|
|
}
|
|
|
|
func (c *Client) DropCollection(ctx context.Context, option DropCollectionOption, callOptions ...grpc.CallOption) error {
|
|
req := option.Request()
|
|
err := c.callService(func(milvusService milvuspb.MilvusServiceClient) error {
|
|
resp, err := milvusService.DropCollection(ctx, req, callOptions...)
|
|
return merr.CheckRPCCall(resp, err)
|
|
})
|
|
return err
|
|
}
|
|
|
|
func (c *Client) RenameCollection(ctx context.Context, option RenameCollectionOption, callOptions ...grpc.CallOption) error {
|
|
req := option.Request()
|
|
|
|
return c.callService(func(milvusService milvuspb.MilvusServiceClient) error {
|
|
resp, err := milvusService.RenameCollection(ctx, req, callOptions...)
|
|
return merr.CheckRPCCall(resp, err)
|
|
})
|
|
}
|
|
|
|
func (c *Client) AlterCollectionProperties(ctx context.Context, option AlterCollectionPropertiesOption, callOptions ...grpc.CallOption) error {
|
|
req := option.Request()
|
|
|
|
return c.callService(func(milvusService milvuspb.MilvusServiceClient) error {
|
|
resp, err := milvusService.AlterCollection(ctx, req, callOptions...)
|
|
return merr.CheckRPCCall(resp, err)
|
|
})
|
|
}
|
|
|
|
func (c *Client) DropCollectionProperties(ctx context.Context, option DropCollectionPropertiesOption, callOptions ...grpc.CallOption) error {
|
|
req := option.Request()
|
|
|
|
return c.callService(func(milvusService milvuspb.MilvusServiceClient) error {
|
|
resp, err := milvusService.AlterCollection(ctx, req, callOptions...)
|
|
return merr.CheckRPCCall(resp, err)
|
|
})
|
|
}
|
|
|
|
func (c *Client) AlterCollectionFieldProperty(ctx context.Context, option AlterCollectionFieldPropertiesOption, callOptions ...grpc.CallOption) error {
|
|
req := option.Request()
|
|
|
|
return c.callService(func(milvusService milvuspb.MilvusServiceClient) error {
|
|
resp, err := milvusService.AlterCollectionField(ctx, req, callOptions...)
|
|
return merr.CheckRPCCall(resp, err)
|
|
})
|
|
}
|
|
|
|
type GetCollectionOption interface {
|
|
Request() *milvuspb.GetCollectionStatisticsRequest
|
|
}
|
|
|
|
func (c *Client) GetCollectionStats(ctx context.Context, opt GetCollectionOption) (map[string]string, error) {
|
|
var stats map[string]string
|
|
err := c.callService(func(milvusService milvuspb.MilvusServiceClient) error {
|
|
resp, err := milvusService.GetCollectionStatistics(ctx, opt.Request())
|
|
if err = merr.CheckRPCCall(resp, err); err != nil {
|
|
return err
|
|
}
|
|
stats = entity.KvPairsMap(resp.GetStats())
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return stats, nil
|
|
}
|