PUT /huawei
{
"mappings": {
"cloud": {
"properties": {
"name": {
"type": "keyword"
},
"age": {
"type": "float"
}
}
}
}
}
POST /huawei1/cloud
{
"name": 10
}
POST /huawei1/cloud
{
"age": "10"
}
1 个回复
rochy - rochy_he
赞同来自:
你写入的时候其实是设置了 _source 的内容;
只要数据类型转换不报错,不会报异常的。