这是我的输入数据:
"INC_Cancelled_Date_Time": "2017-05-19 07:26:34"
这是我的映射:
"INC_Cancelled_Date_Time":{
"type":"date",
"format":"yyyy-MM-dd HH:mm:ss"
}
这是我的错误:
{
"error" : {
"root_cause" : [
{
"type" : "mapper_parsing_exception",
"reason" : "failed to parse [INC_Cancelled_Date_Time]"
}
],
"type" : "mapper_parsing_exception",
"reason" : "failed to parse [INC_Cancelled_Date_Time]",
"caused_by" : {
"type" : "illegal_argument_exception",
"reason" : "Invalid format: \"19-05-2017 07:26:34\" is malformed at \"17 07:26:34\""
}
},
"status" : 400
}
我已将格式更改为dd-MM-yyyy HH:mm:ss并且没有 - 在哪里。摆弄了很多。有谁知道如何解决这个问题?