Skip to content

修复milvus的indexer文档,缺乏”document配置必须搭配fields配置“这一信息,导致容易误用问题 #1331

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ type IndexerConfig struct {
// Default Collection config
// Collection is the collection name in milvus database
// Optional, and the default value is "eino_collection"
// If you want to use this configuration, you must include the Fields configuration
Collection string
// Description is the description for collection
// Optional, and the default value is "the collection for eino"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ type IndexerConfig struct {
// 默认集合配置
// Collection 是 milvus 数据库中的集合名称
// 可选,默认值为 "eino_collection"
// 如果你想使用这个配置,必须加上Field配置,否则无法正常运行
Collection string
// Description 是集合的描述
// 可选,默认值为 "the collection for eino"
Expand Down