栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

Elasticsearch:有没有一种方法可以将对象字段的所有(可能是动态的)子字段声明为字符串?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Elasticsearch:有没有一种方法可以将对象字段的所有(可能是动态的)子字段声明为字符串?

您快到了。

首先,动态映射的路径必须位于

clearances.*
,并且必须是a
path_match
而不是plain
match

这是一个可运行的示例:https :
//www.found.no/play/gist/df030f005da71827ca96

export ELASTICSEARCH_ENDPOINT="http://localhost:9200"# Create indexescurl -XPUT "$ELASTICSEARCH_ENDPOINT/play" -d '{    "settings": {},    "mappings": {        "test": { "dynamic_templates": [     {         "clearances_as_string": {  "path_match": "clearances.*",  "mapping": {      "type": "string",      "index": "not_analyzed"  }         }     } ]        }    }}'# Index documentscurl -XPOST "$ELASTICSEARCH_ENDPOINT/_bulk?refresh=true" -d '{"index":{"_index":"play","_type":"test"}}{"clearances":{"glamis":1234,"cawdor":5678}}{"index":{"_index":"play","_type":"test"}}{"clearances":{"glamis":"aa2862jsgd","cawdor":"some string"}}'# Do searchescurl -XPOST "$ELASTICSEARCH_ENDPOINT/_search?pretty" -d '{    "facets": {        "cawdor": { "terms": {     "field": "clearances.cawdor" }        }    }}'


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/388216.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号