Closed
Description
When creating an index using Nest and the following syntax
client.CreateIndex(indexName, i => i
.Settings(st => st
.Analysis(a => a
.Analyzers(ad => ad
.Snowball("snowball_analyzer", s => s.Language(SnowballLanguage.English))
)
)
)
Generates
"snowball_analyzer": {
"type": "snowball",
"language": "english"
}
This unfortunately is incorrect and causes errors when inserting documents.
Metadata
Metadata
Assignees
Labels
No labels