mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
1. Enable Milvus to read cipher configs 2. Enable cipher plugin in binlog reader and writer 3. Add a testCipher for unittests 4. Support pooling for datanode 5. Add encryption in storagev2 See also: #40321 Signed-off-by: yangxuan <xuan.yang@zilliz.com> --------- Signed-off-by: yangxuan <xuan.yang@zilliz.com>
154 lines
4.1 KiB
Go
154 lines
4.1 KiB
Go
package segcore
|
|
|
|
/*
|
|
#cgo pkg-config: milvus_core
|
|
|
|
#include "segcore/collection_c.h"
|
|
#include "segcore/segment_c.h"
|
|
#include "storage/storage_c.h"
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"unsafe"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
"go.uber.org/zap"
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
"github.com/milvus-io/milvus/internal/util/hookutil"
|
|
"github.com/milvus-io/milvus/pkg/v2/log"
|
|
"github.com/milvus-io/milvus/pkg/v2/proto/segcorepb"
|
|
"github.com/milvus-io/milvus/pkg/v2/util/merr"
|
|
)
|
|
|
|
// CreateCCollectionRequest is a request to create a CCollection.
|
|
type CreateCCollectionRequest struct {
|
|
CollectionID int64
|
|
Schema *schemapb.CollectionSchema
|
|
IndexMeta *segcorepb.CollectionIndexMeta
|
|
LoadFieldList []int64
|
|
}
|
|
|
|
// CreateCCollection creates a CCollection from a CreateCCollectionRequest.
|
|
func CreateCCollection(req *CreateCCollectionRequest) (*CCollection, error) {
|
|
schemaBlob, err := proto.Marshal(req.Schema)
|
|
if err != nil {
|
|
return nil, errors.New("marshal schema failed")
|
|
}
|
|
var indexMetaBlob []byte
|
|
if req.IndexMeta != nil {
|
|
indexMetaBlob, err = proto.Marshal(req.IndexMeta)
|
|
if err != nil {
|
|
return nil, errors.New("marshal index meta failed")
|
|
}
|
|
}
|
|
var ptr C.CCollection
|
|
status := C.NewCollection(unsafe.Pointer(&schemaBlob[0]), (C.int64_t)(len(schemaBlob)), &ptr)
|
|
if err := ConsumeCStatusIntoError(&status); err != nil {
|
|
return nil, err
|
|
}
|
|
if indexMetaBlob != nil {
|
|
status = C.SetIndexMeta(ptr, unsafe.Pointer(&indexMetaBlob[0]), (C.int64_t)(len(indexMetaBlob)))
|
|
if err := ConsumeCStatusIntoError(&status); err != nil {
|
|
C.DeleteCollection(ptr)
|
|
return nil, err
|
|
}
|
|
}
|
|
if req.LoadFieldList != nil {
|
|
status = C.UpdateLoadFields(ptr, (*C.int64_t)(unsafe.Pointer(&req.LoadFieldList[0])),
|
|
C.int64_t(len(req.LoadFieldList)))
|
|
if err := ConsumeCStatusIntoError(&status); err != nil {
|
|
C.DeleteCollection(ptr)
|
|
return nil, err
|
|
}
|
|
}
|
|
return &CCollection{
|
|
collectionID: req.CollectionID,
|
|
ptr: ptr,
|
|
schema: req.Schema,
|
|
indexMeta: req.IndexMeta,
|
|
}, nil
|
|
}
|
|
|
|
// CCollection is just a wrapper of the underlying C-structure CCollection.
|
|
// Contains some additional immutable properties of collection.
|
|
type CCollection struct {
|
|
ptr C.CCollection
|
|
collectionID int64
|
|
schema *schemapb.CollectionSchema
|
|
indexMeta *segcorepb.CollectionIndexMeta
|
|
}
|
|
|
|
// ID returns the collection ID.
|
|
func (c *CCollection) ID() int64 {
|
|
return c.collectionID
|
|
}
|
|
|
|
// rawPointer returns the underlying C-structure pointer.
|
|
func (c *CCollection) rawPointer() C.CCollection {
|
|
return c.ptr
|
|
}
|
|
|
|
func (c *CCollection) Schema() *schemapb.CollectionSchema {
|
|
return c.schema
|
|
}
|
|
|
|
func (c *CCollection) IndexMeta() *segcorepb.CollectionIndexMeta {
|
|
return c.indexMeta
|
|
}
|
|
|
|
func (c *CCollection) UpdateSchema(sch *schemapb.CollectionSchema, version uint64) error {
|
|
if sch == nil {
|
|
return merr.WrapErrServiceInternal("update collection schema with nil")
|
|
}
|
|
|
|
schemaBlob, err := proto.Marshal(sch)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
status := C.UpdateSchema(c.ptr, unsafe.Pointer(&schemaBlob[0]), (C.int64_t)(len(schemaBlob)), (C.uint64_t)(version))
|
|
return ConsumeCStatusIntoError(&status)
|
|
}
|
|
|
|
// Release releases the underlying collection
|
|
func (c *CCollection) Release() {
|
|
C.DeleteCollection(c.ptr)
|
|
c.ptr = nil
|
|
}
|
|
|
|
func PutOrRefPluginContext(ez *hookutil.EZ, key string) error {
|
|
log.Info("PutOrRefPluginContext",
|
|
zap.Int64("ez_id", ez.EzID),
|
|
zap.Int64("collection_id", ez.CollectionID))
|
|
ckey := C.CString(key)
|
|
defer C.free(unsafe.Pointer(ckey))
|
|
pluginContext := C.CPluginContext{
|
|
ez_id: C.int64_t(ez.EzID),
|
|
collection_id: C.int64_t(ez.CollectionID),
|
|
key: ckey,
|
|
}
|
|
cstatus := C.PutOrRefPluginContext(pluginContext)
|
|
if err := ConsumeCStatusIntoError(&cstatus); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func UnRefPluginContext(ez *hookutil.EZ) error {
|
|
log.Info("UnRefPluginContext",
|
|
zap.Int64("ez_id", ez.EzID),
|
|
zap.Int64("collection_id", ez.CollectionID))
|
|
pluginContext := C.CPluginContext{
|
|
ez_id: C.int64_t(ez.EzID),
|
|
collection_id: C.int64_t(ez.CollectionID),
|
|
}
|
|
cstatus := C.UnRefPluginContext(pluginContext)
|
|
if err := ConsumeCStatusIntoError(&cstatus); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|