简体   繁体   English

Elassandra:UDT 列表匹配查询 - 无结果

[英]Elassandra: UDT List Match Query- No Results

I am using Elassandra.我正在使用 Elassandra。 In Cassandra, I have a UDT:在 Cassandra 中,我有一个 UDT:

CREATE TYPE test.entity_attributes (
    attribute_key text,
    attribute_value text
);

It is used in table它用于表中

CREATE TABLE test.attributes_test (
    id text PRIMARY KEY,
    attr list<frozen<entity_attributes>>
)

I mapped the attributes_test using:我使用以下方法映射了attributes_test

curl --location --request PUT 'localhost:9200/attr_index' \
--header 'Content-Type: application/json' \
--data-raw '{
    "settings": { "keyspace": "test" },
    "mappings": {
        "attributes_test" : {
            "discover":".*"
        }
    }
}'

(copied from postman) (复制自邮递员)
It returns the following as mapping:它返回以下映射:

{
    "attr_index": {
        "aliases": {},
        "mappings": {
            "attributes_test": {
                "properties": {
                    "attr": {
                        "type": "nested",
                        "cql_udt_name": "entity_attributes",
                        "properties": {
                            "attribute_key": {
                                "type": "keyword",
                                "cql_collection": "singleton"
                            },
                            "attribute_value": {
                                "type": "keyword",
                                "cql_collection": "singleton"
                            }
                        }
                    },
                    "id": {
                        "type": "keyword",
                        "cql_collection": "singleton",
                        "cql_partition_key": true,
                        "cql_primary_key_order": 0
                    }
                }
            }
        },
        "settings": {
            "index": {
                "keyspace": "test",
                "number_of_shards": "1",
                "provided_name": "attr_index",
                "creation_date": "1615291749532",
                "number_of_replicas": "0",
                "uuid": "Oua1ACLbRvCATC-kcGPoQg",
                "version": {
                    "created": "6020399"
                }
            }
        }
    }
}

This is what I have in the table:这是我在表中的内容:

 id | attr
----+----------------------------------------------------------------------------------------------
  2 | [{attribute_key: 'abc', attribute_value: '2'}, {attribute_key: 'def', attribute_value: '1'}]
  1 |                                               [{attribute_key: 'abc', attribute_value: '1'}]

The problem now is, when I run the following query, it does not return any result. 现在的问题是,当我运行以下查询时,它没有返回任何结果。
 curl --location --request POST 'localhost:9200/attr_index/_search' \ --header 'Content-Type: application/json' \ --data-raw '{ "query": { "match": { "attr.attribute_key": "abc" } } }'

https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html - describes the way to search in nested objects. https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html - 描述了在嵌套对象中搜索的方式。 How can I search in the list of nested objects?如何在嵌套对象列表中搜索?

It was a mistake in my query.这是我的查询中的一个错误。 The correct query would be:正确的查询是:

{
    "query": {
        "nested": {
            "path": "attr",
            "query": {
                "match": {
                    "attr.attribute_key": "abc"
                }
            }
        }
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM