Error while sending data to amazon_es

i have a config file which is working fine on my localhost but while sending same data to amazon_es i encounter this error
Failed to install template: [400] {"error":{"root_cause":[{"type":"mapper_parsing_exception","reason":"Failed to parse mapping [ default ]: No field type matched on [float], possible values are [object, string, long, double, boolean, date, binary]"}],"type":"mapper_parsing_exception","reason":"Failed to parse mapping [ default ]: No field type matched on [float], possible values are [object, string, long, double, boolean, date, binary]","caused_by":{"type":"illegal_argument_exception","reason":"No field type matched on [float], possible values are [object, string, long, double, boolean, date, binary]"}},"status":400}

does anyone have any idea about this. please help me with this.

It seems to me, that you try to index "new type" of a field into existing type.

You can check it with:
GET /_template/<your_index>

Also, you can delete/update your template, more details here:
https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html

Please, note, i am very newbie with ELK and I may wrong :slight_smile:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.