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
[elasticsearch[Fontanelle][bulk][T#7]] ERROR index.IndexRequestQueue - Failed bulk item: MapperParsingException[object mapping for [es.A] tried to parse as object, but got EOF, has a concrete value been provided to it?]
any suggestion?
The text was updated successfully, but these errors were encountered:
The plugin does not provide native support for Clob object, and I don't know if ElasticSearch itself has a default mapping for this type.
When the type is unknown, it is just parsed and sent to ES as a plain object, which may not work as you expect.
You may have to convert it into a String field using a converter.
import java.sql.Clob
Class A {
String f1
Clob fClob
}
when indexing, got following error:
[elasticsearch[Fontanelle][bulk][T#7]] ERROR index.IndexRequestQueue - Failed bulk item: MapperParsingException[object mapping for [es.A] tried to parse as object, but got EOF, has a concrete value been provided to it?]
any suggestion?
The text was updated successfully, but these errors were encountered: