In elastic search 2 , I configured string property like below
@Field(type = FieldType.String, analyzer = "synonym_analyzer")
private String transformedTitle ;
After upgrading to elastic search 5 and spring data elastic search 3.0.0.RC2 , I observe that FieldType.String is no longer available .
Should I use FiledType.Auto ?
The
string
field datatype has been replaced by thetext
field for full text analyzed content, and thekeyword
field for not-analyzed exact string values, during the 5.x series.You should be useing
FieldType.text
orFieldType.keyword