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 adding documents to the index that are represented by Map<String, Object>, and the documents contain instances of java.math.BigDecimal or java.math.BigInteger, they are serialized as strings, and are subsequently mapped by Elasticsearch to string fields.
Although java.math.BigDecimal and java.math.BigInteger are supported by Jackson, XContentBuilder.writeValue() defaults to represent these data types as strings.
The text was updated successfully, but these errors were encountered:
When adding documents to the index that are represented by
Map<String, Object>
, and the documents contain instances ofjava.math.BigDecimal
orjava.math.BigInteger
, they are serialized as strings, and are subsequently mapped by Elasticsearch to string fields.Although
java.math.BigDecimal
andjava.math.BigInteger
are supported by Jackson,XContentBuilder.writeValue()
defaults to represent these data types as strings.The text was updated successfully, but these errors were encountered: