为什么 "snowball" 分析器在 Elasticsearch 5.1 中被移除

Why "snowball" analyser was removed in Elasticsearch 5.1

我有 Elasticsearch 2.4 和许多使用 "snowball" 分析器的索引,但是今天我更新到 5.1 并且这个分析器停止工作,为什么它们被删除以及如何转换我的 "snowball" 5.1 中等效的分析器?

主要是因为snowball分析器在Lucene 5中被移除,取而代之的是english分析器(more info here)

snowball token filter 仍然存在,所以没有什么能阻止您构建自定义分析器来模仿 snowball 分析器:

{
  "settings": {
    "analysis": {
      "analyzer": {
        "my_snowball": {
          "type": "custom",
          "tokenizer": "standard",
          "filter": ["standard", "lowercase", "stop", "snowball"]
        }
      }
    }
  }
}