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

Elassandra: UDT List Match Query- No Results

我正在使用 Elassandra。在 Cassandra 中,我有一个 UDT:

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

用于table

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

我映射 attributes_test 使用:

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

(从邮递员那里复制)
它 return 映射如下:

{
    "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"
                }
            }
        }
    }
}

这是我在 table:

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

现在的问题是,当我运行下面的查询时,它没有return任何结果。
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 - 描述了在嵌套对象中搜索的方式。 如何在嵌套对象列表中搜索?

我的查询有误。正确的查询是:

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