1.二进制文件类型
可以将图片的Base64编码的字符串保存到索引中。此时不应该使用keyword类型.
keyword类型的字段有最大长度限制,可能无法容纳二进制文件。
应该使用binary 二进制类型。
curl -u elastic:elastic -k -XPUT http://192.168.1.1:9200/test005 -H 'Content-Type: application/json' -d '
{
"mappings":{
"properties":{
"picture":{
"type": "binary"
}
}
}
}'
2.忽略不合法的数据类型。
如果无法预知写入的数据是否合法,某些写入不合法的可能会失败。如果希望忽略掉不合法的数据,
而写入合法的数据。可以使用 ignore_malformed 参数实现这一目的。
--日期不合法的忽略掉。
curl -u elastic:elastic -k -XPUT http://192.168.1.1:9200/test006 -H 'Content-Type: application/json' -d '
{
"mappings":{
"properties":{
"age":{
"type": "integer"
},
"born":{"type":"date","format":"yyyy-MM-dd HH:mm:ss","ignore_malformed":true}
}
}
}'
curl -u elastic:elastic -k -XGET http://192.168.1.1:9200/test006/_mapping
{
"test006":{
"mappings":{
"properties":{
"age":{
"type":"integer"
},
"born":{
"type":"date",
"format":"yyyy-MM-dd HH:mm:ss",
"ignore_malformed":true
}
}
}
}
}
curl -u elastic:elastic -k -XPUT http://192.168.1.1:9200/test006/_doc/1 -H 'Content-Type: application/json' -d '
{
"age":22,
"born":"www"
}'
curl -u elastic:elastic -k -XPUT http://192.168.1.1:9200/test006/_doc/2 -H 'Content-Type: application/json' -d '
{
"age":"test",
"born":"2025-01-01 00:00:00"
}'
curl -u elastic:elastic -k -XPUT http://192.168.1.1:9200/test006/_doc/3 -H 'Content-Type: application/json' -d '
{
"age":35,
"born":"2024-01-01 00:00:00"
}'
--查看数据
curl -u elastic:elastic -k -XGET http://192.168.1.1:9200/test006/_search
{
"took":716,
"timed_out":false,
"_shards":{
"total":1,
"successful":1,
"skipped":0,
"failed":0
},
"hits":{
"total":{
"value":2,
"relation":"eq"
},
"max_score":1,
"hits":[
{
"_index":"test006",
"_type":"_doc",
"_id":"1",
"_score":1,
"_ignored":[
"born" #出现在 ignore中表示写入的数据是非法的。这些非法数据没有写入索引,不能查询。
],
"_source":{
"age":22,
"born":"www" #即使BORN字段非法,但是不影响其他字段的写入。
}
},
{
"_index":"test006",
"_type":"_doc",
"_id":"3",
"_score":1,
"_source":{
"age":35,
"born":"2024-01-01 00:00:00"
}
}
]
}
}
3.为所有字段设置忽略非法数据
--所有字段忽略非法数据
curl -u elastic:elastic -k -XPUT http://192.168.1.1:9200/test007 -H 'Content-Type: application/json' -d '
{
"settings":{"index.mapping.ignore_malformed":true},
"mappings":{
"properties":{
"age":{
"type": "integer"
},
"born":{"type":"date","format":"yyyy-MM-dd HH:mm:ss","ignore_malformed":true}
}
}
}'