【es】ES数据类型3

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}
    }
}
}'

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值