I have an index setup like so:
{
"dev-events" : {
"settings" : {
"index.number_of_replicas" : "1",
"index.version.created" : "190999",
"index.number_of_shards" : "5",
"index.analysis.filter.sb_synonym.ignore_case" : "true",
"index.analysis.filter.sb_synonym.type" : "synonym",
"index.analysis.filter.sb_synonym.synonyms_path" : "synonyms.txt",
"index.analysis.analyzer.sb_analyzer.type" : "custom",
"index.analysis.analyzer.sb_analyzer.tokenizer" : "standard",
"index.analysis.analyzer.sb_analyzer.filter.0" : "sb_stop",
"index.analysis.analyzer.sb_analyzer.filter.1" : "sb_synonym",
"index.analysis.analyzer.sb_analyzer.filter.2" : "standard",
"index.analysis.analyzer.sb_analyzer.filter.3" : "stop",
"index.analysis.analyzer.sb_analyzer.filter.4" : "snowball",
"index.analysis.analyzer.sb_analyzer.filter.5" : "lowercase",
"index.analysis.analyzer.sb_keyword.type" : "custom",
"index.analysis.analyzer.sb_keyword.filter.0" : "lowercase",
"index.analysis.analyzer.sb_keyword.tokenizer" : "keyword",
"index.analysis.filter.sb_stop.ignore_case" : "true",
"index.analysis.filter.sb_stop.enable_position_increments" : "true",
"index.analysis.filter.sb_stop.type" : "stop"
"index.analysis.filter.sb_stop.stopwords_path" : "stopwords.txt",
}
}
}
And a synonyms file with just this line:
test => Some Thing Here, Another Item
And a query like so:
{
"fields" : [ "name" ],
"query" : {
"query_string" :
{
"query" : "test",
"analyzer" : "sb_analyzer",
"fields" : [ "name" ],
"auto_generate_phrase_queries" : true
}
},
"sort" : [
{
"localDateTime" : { "order" : "asc" }
}
],
}
The problem I'm having is that because the replacements have a different number of words (3 and 2, respectively), it will only return the items that match the longest replacement, "Some Thing Here" in this case, but if I have a synonym like this:
test => Some Thing Here, Another Item There
It will work as I expect, returning items that the terms "Some Thing Here", or "Another Item There". I'm not sure if I'm missing something or if there's some limitation/bug in ElasticSearch regarding synonyms with differing # of words in their replacements.