Skip to content

Commit 2240fc7

Browse files
authored
Fix: add missing "mom" field to infinity_mapping.json for parent-child chunker (#13821)
### What problem does this PR solve? When using Infinity as DOC_ENGINE with parent-child chunker enabled, vector insertion fails because the "mom" field is missing from the index mapping. This fix adds the required field to resolve the issue. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
1 parent cdbbd26 commit 2240fc7

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

conf/infinity_mapping.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"doc_id": {"type": "varchar", "default": ""},
44
"kb_id": {"type": "varchar", "default": "", "index_type": {"type": "secondary", "cardinality": "low"}},
55
"mom_id": {"type": "varchar", "default": ""},
6+
"mom": {"type": "varchar", "default": ""},
67
"create_time": {"type": "varchar", "default": ""},
78
"create_timestamp_flt": {"type": "float", "default": 0.0},
89
"img_id": {"type": "varchar", "default": ""},

0 commit comments

Comments
 (0)