I have 2 indexes that I want to multi_match fields
each indexes has different fields (schema)
for instance, idx1 has "subject" and "html_body" and idex2 has "subject" and "detail".
I also tried with 3 fields that are using same analyzer and shows the similar result - only one index is using blended
it lists all the fields on each index (understandable) and one shows blended and 2nd index doesn't. Could you help me explain why idx2 is not using blended?
Thank you for your reply!
Yes, well I realized that subject wasn't so I picked 3 fields that has same analyzer.
The fields name are: html_body , sanitized_body, and detail.
Here is the result of inspecting fields:
Index: idx1
Text Fields: ['detail[text,html_strip]', 'subject[text,None]']
Index: idx2
Text Fields: ['html_body[text,html_strip]', 'sanitized_body[text,html_strip]', 'text_body[text,None]', 'to_email[text,None]']
the result looks correct to me, can you tell me what you expected? sanitized_body:universe in index 1 will result in no matches since the field is not mapped so you can just ignore this?
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.