您的位置:首页 > 其它

关于source-store实验结果

2016-07-22 00:00 302 查看
分别建立,两类索引,用来开启和关闭_source
浏览链接:http://172.16.71.241:9200/_plugin/head/
1. 开启_source字段
curl -XPUT localhost:9200/test -d '{
"settings" : {
"number_of_shards" : 3
},
"mappings":{
"source":{
"_all":{"enabled":false},
"_ttl":{"enabled":true},
"_source":{"enabled":true},
"properties":{
"id":{"type":"long","store":false,"doc_values":true},
"name":{"type":"string","store":false,"index":"not_analyzed"},
"alis":{"type":"string","store":true,"index":"not_analyzed"},
"runTime":{"type":"string","store":false,"index":"not_analyzed"},
"number":{"type":"string","store":false,"index":"not_analyzed"}
}}}
}'
实验结果:都可以搜索

2. 关闭_source字段
curl -XPUT localhost:9200/store -d '{
"settings" : {
"number_of_shards" : 3
},
"mappings":{
"test":{
"_all":{"enabled":false},
"_ttl":{"enabled":true},
"_source":{"enabled":false},
"properties":{
"id":{"type":"long","store":false,"doc_values":true},
"name":{"type":"string","store":true,"index":"not_analyzed"},
"alis":{"type":"string","store":false,"index":"not_analyzed"},
"runTime":{"type":"string","store":true,"index":"not_analyzed"},
"number":{"type":"string","store":true,"index":"not_analyzed"}
}}}
}'
实验结果:有待验证
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: