如何将 GCS 存储与 Milvus 结合使用?

问题描述 投票:0回答:1

我在 Google Cloud 上运行 Milvus,我想将旧数据存储在 GCS 存储桶上。 我想快速保存新记录。

当行插入到我的集合中时,它们没有显示在我的 gcs 存储桶中。

我在yaml中设置了K8存储。

我希望得到GCS桶用于矢量存储

vector-database milvus
1个回答
0
投票

你必须检查日志并等待数据被刷新。

Milvus 确实可以使用 Google Cloud Storage(GCS)作为外部对象存储来持久保存索引文件和二进制日志等大规模文件。然而,Milvus 没有内置机制来根据年龄或新近度自动在内存和 GCS 之间移动数据。所有数据,包括新记录,都存储在配置的对象存储中。

确保您的 GCS 存储桶已正确创建且可访问。 验证凭证或 IAM 角色是否具有写入存储桶所需的权限。 检查 Milvus 日志中是否有与存储操作相关的错误消息。

https://milvus.io/docs/gcp.md#Use-Google-Cloud-Storage-GCS-as-external-object-storage

https://milvus.io/docs/gcp.md

https://milvus.io/docs/gcs.md

https://milvus.io/docs/object_storage_operator.md

https://milvus.io/docs/deploy_s3.md

© www.soinside.com 2019 - 2024. All rights reserved.