You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating an index, spring data ES only allows to create not analyzed fields at first level.
It would be great to allow nested not analyzed fields.
Example :
@Document(indexName = "myindex", type="myindex")
publicclassMyClass {
@Field(type = FieldType.Nested)
privateFoobar;
}
publicclassFoo {
// This field should be in not_analyzed@Field(index = FieldIndex.not_analyzed, type = FieldType.String)
privateStringdata;
}