Hi Eric, Found the reason and all shard request to go /select flow solves the
problem.
Regarding
<fieldType name="test_text" class="solr.TextField"
synonymQueryStyle="as_distinct_terms" sortMissingLast="true"
positionIncrementGap="100">
In SOLR 7 when relevancy added for the search it is not working (not
expected results) for the above fieldtype but same works fine for /select
because it uses Lucene Parser but our flow uses EDISMAX. But 5.3.1 works
fine both cases.
As soon as we change as below,
<fieldType name="test_text" class="solr.TextField"
synonymQueryStyle="as_same_term" sortMissingLast="true"
positionIncrementGap="100">
synonymQueryStyle="as_same_term" Both cases works in 7.5.0 flow.
Is there any intentional changes for the above scenario in SOLR 7.5.0 where
I can refer ?
--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html