mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-01 03:18:29 +08:00
c05b9ad539
Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com> Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com>
61 lines
1.8 KiB
Go
61 lines
1.8 KiB
Go
package storage
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/milvus-io/milvus/internal/util/paramtable"
|
|
)
|
|
|
|
type ChunkManagerFactory struct {
|
|
persistentStorage string
|
|
config *config
|
|
}
|
|
|
|
func NewChunkManagerFactoryWithParam(params *paramtable.ComponentParam) *ChunkManagerFactory {
|
|
if params.CommonCfg.StorageType == "local" {
|
|
return NewChunkManagerFactory("local", RootPath(params.LocalStorageCfg.Path.GetValue()))
|
|
}
|
|
return NewChunkManagerFactory("minio",
|
|
RootPath(params.MinioCfg.RootPath.GetValue()),
|
|
Address(params.MinioCfg.Address.GetValue()),
|
|
AccessKeyID(params.MinioCfg.AccessKeyID.GetValue()),
|
|
SecretAccessKeyID(params.MinioCfg.SecretAccessKey.GetValue()),
|
|
UseSSL(params.MinioCfg.UseSSL.GetAsBool()),
|
|
BucketName(params.MinioCfg.BucketName.GetValue()),
|
|
UseIAM(params.MinioCfg.UseIAM.GetAsBool()),
|
|
CloudProvider(params.MinioCfg.CloudProvider.GetValue()),
|
|
IAMEndpoint(params.MinioCfg.IAMEndpoint.GetValue()),
|
|
CreateBucket(true))
|
|
}
|
|
|
|
func NewChunkManagerFactory(persistentStorage string, opts ...Option) *ChunkManagerFactory {
|
|
c := newDefaultConfig()
|
|
for _, opt := range opts {
|
|
opt(c)
|
|
}
|
|
return &ChunkManagerFactory{
|
|
persistentStorage: persistentStorage,
|
|
config: c,
|
|
}
|
|
}
|
|
|
|
func (f *ChunkManagerFactory) newChunkManager(ctx context.Context, engine string) (ChunkManager, error) {
|
|
switch engine {
|
|
case "local":
|
|
return NewLocalChunkManager(RootPath(f.config.rootPath)), nil
|
|
case "minio":
|
|
return newMinioChunkManagerWithConfig(ctx, f.config)
|
|
default:
|
|
return nil, errors.New("no chunk manager implemented with engine: " + engine)
|
|
}
|
|
}
|
|
|
|
func (f *ChunkManagerFactory) NewPersistentStorageChunkManager(ctx context.Context) (ChunkManager, error) {
|
|
return f.newChunkManager(ctx, f.persistentStorage)
|
|
}
|
|
|
|
type Factory interface {
|
|
NewPersistentStorageChunkManager(ctx context.Context) (ChunkManager, error)
|
|
}
|