From 2240fc778c99b1602de23d41ea0f37223670d0fd Mon Sep 17 00:00:00 2001 From: Liu An Date: Fri, 27 Mar 2026 13:06:18 +0800 Subject: [PATCH] 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) --- conf/infinity_mapping.json | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/infinity_mapping.json b/conf/infinity_mapping.json index 83e3d5f982..64356ee8d5 100644 --- a/conf/infinity_mapping.json +++ b/conf/infinity_mapping.json @@ -3,6 +3,7 @@ "doc_id": {"type": "varchar", "default": ""}, "kb_id": {"type": "varchar", "default": "", "index_type": {"type": "secondary", "cardinality": "low"}}, "mom_id": {"type": "varchar", "default": ""}, + "mom": {"type": "varchar", "default": ""}, "create_time": {"type": "varchar", "default": ""}, "create_timestamp_flt": {"type": "float", "default": 0.0}, "img_id": {"type": "varchar", "default": ""},