opensearch-enhancements/opendistro-enhancements 是云搜索服务的一个系统内置插件。
目前支持 ES 7.10.2、OpenSearch 2.9.0 版本。
Enhancements 插件默认未安装,如果需要使用,请提前自行安装。如何安装,请参见安装系统内置插件。
PUT my-index { "mappings": { "properties": { "issue": { "properties": { "labels": { "type": "flat_object" } } } } } }
PUT my-index/_doc/2 { "issue": { "number": 456, "labels": { "author": "Liu", "version": "2.1", "backport": [ "2.0", "1.3" ], "category": { "type": "API", "level": "enhancement" }, "createdDate": "2023-02-01", "comment": [ [ "Mike", "LGTM" ], [ "John", "Approved" ] ], "views": 3333, "priority": 1.5 } } }
match + 带路径查询
POST my-index/_search { "_source": true, "query": { "match": { "issue.labels.version": "2.1" } } }
查询成功时,返回如下类似信息:
{ "took": 5251, "timed_out": false, "_shards": { "total": 1, "successful": 1, "skipped": 0, "failed": 0 }, "hits": { "total": { "value": 1, "relation": "eq" }, "max_score": 0.46223074, "hits": [ { "_index": "my-index", "_id": "2", "_score": 0.46223074, "_source": { "issue": { "number": 456, "labels": { "author": "Liu", "version": "2.1", "backport": [ "2.0", "1.3" ], "category": { "type": "API", "level": "enhancement" }, "createdDate": "2023-02-01", "comment": [ [ "Mike", "LGTM" ], [ "John", "Approved" ] ], "views": 3333, "priority": 1.5 } } } } ] } }
match + 不带路径查询
POST my-index/_search { "_source": true, "query": { "match": { "issue.labels": "2.1" } } }
查询成功时,返回如下类似信息:
{ "took": 117, "timed_out": false, "_shards": { "total": 1, "successful": 1, "skipped": 0, "failed": 0 }, "hits": { "total": { "value": 1, "relation": "eq" }, "max_score": 0.46223074, "hits": [ { "_index": "my-index", "_id": "2", "_score": 0.46223074, "_source": { "issue": { "number": 456, "labels": { "author": "Liu", "version": "2.1", "backport": [ "2.0", "1.3" ], "category": { "type": "API", "level": "enhancement" }, "createdDate": "2023-02-01", "comment": [ [ "Mike", "LGTM" ], [ "John", "Approved" ] ], "views": 3333, "priority": 1.5 } } } } ] } }