Hi, We are monitoring whole file in index. As file is in huge in size. which indexed all the content of files. But we require only specific part of files to be indexed. SAMPLE DATA: {"quiz": { "sport": { "q1": { "question": "Which one is correct team name in NBA?", "options": [ "New York Bulls", "Los Angeles Kings", "Golden State Warriros", "Huston Rocket" ], "answer": "Huston Rocket" } }, "maths": { "q1": { "question": "5 + 7 = ?", "options": [ "10", "11", "12", "13" ], "answer": "12" }, "q2": { "question": "12 - 8 = ?", "options": [ "1", "2", "3", "4" ], "answer": "4" } } } } Sample SPL: index="test" "answer"|<further spl> How to indexed partial data of file for answer string, Not to be indexed whole file. Thank you in advance for your help!
... View more