mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
Related to #39095 https://go.dev/doc/modules/version-numbers Update pkg version according to golang dep version convention --------- Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
22 lines
668 B
Go
22 lines
668 B
Go
package metautil
|
|
|
|
import (
|
|
"path"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v2/common"
|
|
)
|
|
|
|
func BuildSegmentIndexFilePath(rootPath string, buildID, indexVersion, partID, segID int64, fileKey string) string {
|
|
k := JoinIDPath(buildID, indexVersion, partID, segID)
|
|
return path.Join(rootPath, common.SegmentIndexPath, k, fileKey)
|
|
}
|
|
|
|
func BuildSegmentIndexFilePaths(rootPath string, buildID, indexVersion, partID, segID int64, fileKeys []string) []string {
|
|
paths := make([]string, 0, len(fileKeys))
|
|
for _, fileKey := range fileKeys {
|
|
path := BuildSegmentIndexFilePath(rootPath, buildID, indexVersion, partID, segID, fileKey)
|
|
paths = append(paths, path)
|
|
}
|
|
return paths
|
|
}
|