Language analyzer
OpenSearch supports the following language values with the analyzer
option: arabic
, armenian
, basque
, bengali
, brazilian
, bulgarian
, catalan
, czech
, danish
, dutch
, english
, estonian
, finnish
, french
, galician
, german
, greek
, hindi
, hungarian
, indonesian
, irish
, italian
, latvian
, lithuanian
, norwegian
, persian
, portuguese
, romanian
, russian
, sorani
, spanish
, swedish
, turkish
, and thai
.
To use the analyzer when you map an index, specify the value within your query. For example, to map your index with the French language analyzer, specify the french
value for the analyzer field:
"analyzer": "french"
Example request
The following query specifies the french
language analyzer for the index my-index
:
PUT my-index
{
"mappings": {
"properties": {
"text": {
"type": "text",
"fields": {
"french": {
"type": "text",
"analyzer": "french"
}
}
}
}
}
}
当前内容版权归 OpenSearch 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 OpenSearch .