Hi,
The problem is here:
"caused_by": {
"type": "number_format_exception",
"reason": "For input string: "Geosolutions""
}
You try to search for text inside integer mapped fields.
Can you check your mapping, certainly "contentid" field is integer.
There's similar question here that may help you:
Hi,
did you create the new index before running the reindex? Please follow the example below. This worked fine for me on Elasticsearch 2.4.5 (as your talking about "string" I assumed you are on 2.x; in 5.x "string" type has been split into "text" and "keyword").
Let's start fresh and delete all involved indices for this example:
DELETE /old_books
DELETE /new_books
Then create the old index and add a document to it.
PUT /old_books
{
"mappings": {
"author": {
"properties": {…