newnewb
October 19, 2018, 10:04am
1
Is there any reason a newly created index, which is exactly the same as the original one, wouldn't be filtering out stopwords?
Reindexing locally like this:
POST _reindex
{
"source": {"index" : "data-live"},
"dest": {"index": "data-live2"}
}
Followed by:
POST data-live2/_forcemerge
nik9000
(Nik Everett)
October 19, 2018, 6:10pm
2
Reindexing doesn't copy the index settings and mapping. That is usually why things like this happen.
The new index has the same settings and mapping, the only difference being: a new analyzer field was added in the new mapping.
Shouldn't reindexing still include the stopwords filter on the analyzer existing in both indices?
system
(system)
Closed
November 19, 2018, 7:23am
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.