2015-08-15 12:00:55 -04:00
|
|
|
[[analysis-stempel]]
|
|
|
|
=== Stempel Polish Analysis Plugin
|
|
|
|
|
|
|
|
The Stempel Analysis plugin integrates Lucene's Stempel analysis
|
|
|
|
module for Polish into elasticsearch.
|
|
|
|
|
|
|
|
It provides high quality stemming for Polish, based on the
|
|
|
|
http://www.egothor.org/[Egothor project].
|
|
|
|
|
2017-04-20 09:01:37 -04:00
|
|
|
:plugin_name: analysis-stempel
|
|
|
|
include::install_remove.asciidoc[]
|
2015-08-15 12:00:55 -04:00
|
|
|
|
|
|
|
[[analysis-stempel-tokenizer]]
|
|
|
|
[float]
|
2019-06-03 07:22:10 -04:00
|
|
|
==== `stempel` tokenizer and token filters
|
2015-08-15 12:00:55 -04:00
|
|
|
|
2019-06-03 07:22:10 -04:00
|
|
|
The plugin provides the `polish` analyzer and the `polish_stem` and `polish_stop` token filters,
|
2015-08-15 12:00:55 -04:00
|
|
|
which are not configurable.
|
2019-06-03 07:22:10 -04:00
|
|
|
|
|
|
|
==== Reimplementing and extending the analyzers
|
|
|
|
|
|
|
|
The `polish` analyzer could be reimplemented as a `custom` analyzer that can
|
|
|
|
then be extended and configured differently as follows:
|
|
|
|
|
2019-09-09 13:38:14 -04:00
|
|
|
[source,console]
|
2019-06-03 07:22:10 -04:00
|
|
|
----------------------------------------------------
|
|
|
|
PUT /stempel_example
|
|
|
|
{
|
|
|
|
"settings": {
|
|
|
|
"analysis": {
|
|
|
|
"analyzer": {
|
|
|
|
"rebuilt_stempel": {
|
|
|
|
"tokenizer": "standard",
|
|
|
|
"filter": [
|
|
|
|
"lowercase",
|
|
|
|
"polish_stop",
|
|
|
|
"polish_stem"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
----------------------------------------------------
|
|
|
|
// TEST[s/\n$/\nstartyaml\n - compare_analyzers: {index: stempel_example, first: polish, second: rebuilt_stempel}\nendyaml\n/]
|
|
|
|
|
|
|
|
[[analysis-polish-stop]]
|
|
|
|
==== `polish_stop` token filter
|
|
|
|
|
|
|
|
The `polish_stop` token filter filters out Polish stopwords (`_polish_`), and
|
|
|
|
any other custom stopwords specified by the user. This filter only supports
|
|
|
|
the predefined `_polish_` stopwords list. If you want to use a different
|
|
|
|
predefined list, then use the
|
|
|
|
{ref}/analysis-stop-tokenfilter.html[`stop` token filter] instead.
|
|
|
|
|
2019-09-09 13:38:14 -04:00
|
|
|
[source,console]
|
2019-06-03 07:22:10 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
PUT /polish_stop_example
|
|
|
|
{
|
|
|
|
"settings": {
|
|
|
|
"index": {
|
|
|
|
"analysis": {
|
|
|
|
"analyzer": {
|
|
|
|
"analyzer_with_stop": {
|
|
|
|
"tokenizer": "standard",
|
|
|
|
"filter": [
|
|
|
|
"lowercase",
|
|
|
|
"polish_stop"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"filter": {
|
|
|
|
"polish_stop": {
|
|
|
|
"type": "polish_stop",
|
|
|
|
"stopwords": [
|
|
|
|
"_polish_",
|
|
|
|
"jeść"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GET polish_stop_example/_analyze
|
|
|
|
{
|
|
|
|
"analyzer": "analyzer_with_stop",
|
|
|
|
"text": "Gdzie kucharek sześć, tam nie ma co jeść."
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
The above request returns:
|
|
|
|
|
2019-09-06 09:22:08 -04:00
|
|
|
[source,console-result]
|
2019-06-03 07:22:10 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"tokens" : [
|
|
|
|
{
|
|
|
|
"token" : "kucharek",
|
|
|
|
"start_offset" : 6,
|
|
|
|
"end_offset" : 14,
|
|
|
|
"type" : "<ALPHANUM>",
|
|
|
|
"position" : 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"token" : "sześć",
|
|
|
|
"start_offset" : 15,
|
|
|
|
"end_offset" : 20,
|
|
|
|
"type" : "<ALPHANUM>",
|
|
|
|
"position" : 2
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|