Closed vchalmel closed 8 years ago
Facing same issue. Some notes based on my analysis:
A. In Elasticsearch 1.x.x, you can specify the field as: type.field.
http://localhost:9200/myindex/_analyze?field=mytype.field1
B. In Elasticsearch 2.x.x, specifying the type doesn't work.
Doesn't work: http://localhost:9200/myindex/_analyze?field=mytype.field1
Works: http://localhost:9200/myindex/_analyze?field=field1
hey all,
I guess what might be happening is that you are using ES 2.X with an older version of kopf. Try updating to the most recent version and things should work fine :)
I will close this for now, but if you still have an issue after upgrading kopf, please reopen it or create a new one.
Hi,
I have had this strange bug since a few weeks where I can't test analyzers field by field anymore. The "analyze by analyzer" block works fine, but if I choose a field in "Analyze by field type" it seems to only have a space tokenization (no stemming, no ellision, no stopwords deletion, nothing...)