最近在使用java api进行ES入库操做时,报以下错误:java
{"took":150,"errors":true,"items":[{"index":{"_index":"test","_type":"type1","_id":"794719072","status":400,"error":{"type":"mapper_parsing_exception","reason":"failed to parse","caused_by":{"type":"not_x_content_exception","reason":"Compressor detection can only be called on some xcontent bytes or compressed xcontent bytes"}}}}json
通过排查发现,在入库过程当中,java错误的将字符串1 (“1”)进行了入库操做,即将以下格式的数据进行入库:api
{"index":{"_index":"test","_type":"type1"}} "1"
则会报上述错误,入库数据格式有误,mapping没法解析app