2021-01-16 02:12:14 +00:00
|
|
|
package querynode
|
2020-09-17 17:53:18 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
#cgo CFLAGS: -I../core/output/include
|
2020-09-17 17:53:18 +00:00
|
|
|
|
2020-10-31 07:11:47 +00:00
|
|
|
#cgo LDFLAGS: -L../core/output/lib -lmilvus_segcore -Wl,-rpath=../core/output/lib
|
2020-09-17 17:53:18 +00:00
|
|
|
|
2020-11-25 02:31:51 +00:00
|
|
|
#include "segcore/collection_c.h"
|
|
|
|
#include "segcore/segment_c.h"
|
2020-09-17 17:53:18 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
import (
|
2020-10-24 10:04:57 +00:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
2020-09-17 17:53:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type IndexConfig struct{}
|
|
|
|
|
2020-11-03 04:42:13 +00:00
|
|
|
func (s *Segment) buildIndex(collection *Collection) commonpb.Status {
|
2020-09-21 10:16:06 +00:00
|
|
|
/*
|
2020-11-03 04:42:13 +00:00
|
|
|
int
|
|
|
|
BuildIndex(CCollection c_collection, CSegmentBase c_segment);
|
2020-09-17 17:53:18 +00:00
|
|
|
*/
|
2020-11-09 08:27:11 +00:00
|
|
|
var status = C.BuildIndex(collection.collectionPtr, s.segmentPtr)
|
2020-09-17 17:53:18 +00:00
|
|
|
if status != 0 {
|
2021-03-09 05:55:35 +00:00
|
|
|
return commonpb.Status{ErrorCode: commonpb.ErrorCode_ERROR_CODE_BUILD_INDEX_ERROR}
|
2020-09-17 17:53:18 +00:00
|
|
|
}
|
2021-03-09 05:55:35 +00:00
|
|
|
return commonpb.Status{ErrorCode: commonpb.ErrorCode_ERROR_CODE_SUCCESS}
|
2020-09-17 17:53:18 +00:00
|
|
|
}
|
|
|
|
|
2021-02-03 03:52:19 +00:00
|
|
|
func (s *Segment) dropIndex(fieldID int64) commonpb.Status {
|
2020-09-17 17:53:18 +00:00
|
|
|
// WARN: Not support yet
|
|
|
|
|
2021-03-09 05:55:35 +00:00
|
|
|
return commonpb.Status{ErrorCode: commonpb.ErrorCode_ERROR_CODE_SUCCESS}
|
2020-09-17 17:53:18 +00:00
|
|
|
}
|