5

Elastic Search(ES)では、アイテムとスロットの2種類のドキュメントを処理します。ここで、アイテムはスロットドキュメントの親です。次のコマンドでインデックスを定義します。

curl -XPOST 'localhost:9200/items' -d @itemsdef.json

ここでitemsdef.json、次の定義があります

{
"mappings" : {
    "item" : {
        "properties" : {
            "id" : {"type" : "long" },
            "name" : {
                "type" : "string",
                "_analyzer" : "textIndexAnalyzer"   
            },
            "location" : {"type" : "geo_point" },
        }
    }
},
"settings" : {
    "analysis" : {
        "analyzer" : {

                "activityIndexAnalyzer" : {
                    "alias" : ["activityQueryAnalyzer"],
                    "type" : "custom",
                    "tokenizer" : "whitespace",
                    "filter" : ["trim", "lowercase", "asciifolding", "spanish_stop", "spanish_synonym"]
                },
                "textIndexAnalyzer" : {
                    "type" : "custom",
                    "tokenizer" : "whitespace",
                    "filter" : ["word_delimiter_impl", "trim", "lowercase", "asciifolding", "spanish_stop", "spanish_synonym"]
                },
                "textQueryAnalyzer" : {
                    "type" : "custom",
                    "tokenizer" : "whitespace",
                    "filter" : ["trim", "lowercase", "asciifolding", "spanish_stop"]
                }       
        },
        "filter" : {        
                "spanish_stop" : {
                    "type" : "stop",
                    "ignore_case" : true,
                    "enable_position_increments" : true,
                    "stopwords_path" : "analysis/spanish-stopwords.txt"
                },
                "spanish_synonym" : {
                    "type" : "synonym",
                    "synonyms_path" : "analysis/spanish-synonyms.txt"
                },
                "word_delimiter_impl" : {
                    "type" : "word_delimiter",
                    "generate_word_parts" : true,
                    "generate_number_parts" : true,
                    "catenate_words" : true,
                    "catenate_numbers" : true,
                    "split_on_case_change" : false                  
                }               
        }
    }
}
}

次に、次のコマンドを使用して子ドキュメント定義を追加します。

curl -XPOST 'localhost:9200/items/slot/_mapping' -d @slotsdef.json

slotsdef.json次の定義はどこにありますか。

{
"slot" : {
    "_parent" : {"type" : "item"},
    "_routing" : {
        "required" : true,
        "path" : "parent_id"
    },
    "properties": {
        "id" : { "type" : "long" },
        "parent_id" : { "type" : "long" },
        "activity" : {
            "type" : "string",
            "_analyzer" : "activityIndexAnalyzer"
        },
        "day" : { "type" : "integer" },
        "start" : { "type" : "integer" },
        "end" :  { "type" : "integer" }
    }
}   
}

最後に、次のコマンドを使用してバルクインデックスを実行します。

curl -XPOST 'localhost:9200/items/_bulk' --data-binary @testbulk.json

testbulk.jsonが次のデータを保持している場合:

{"index":{"_type": "item", "_id":35}}
{"location":[40.4,-3.6],"id":35,"name":"A Name"}
{"index":{"_type":"slot","_id":126,"_parent":35}}
{"id":126,"start":1330,"day":1,"end":1730,"activity":"An Activity","parent_id":35}

ES Headプラグインを通して、定義は問題ないように見えることがわかります。アナライザーをテストして、アナライザーがロードされ、機能することを確認します。両方のドキュメントがESヘッドブラウザビューに一覧表示されます。しかし、APIを使用して子アイテムを取得しようとすると、ESはそれが存在しないと応答します。

$ curl -XGET 'localhost:9200/items/slot/126'
{"_index":"items","_type":"slot","_id":"126","exists":false}

50個のドキュメントをインポートすると、すべての親ドキュメントをAPIを介して取得できますが、子要素に対するリクエストの一部のみが正常に応答します。

私の推測では、ドキュメントがシャード全体にどのように格納されているか、およびルーティングに関係している可能性があります...これがどのように機能するかは確かにわかりません。

個々の子ドキュメントを取得する方法についての手がかりはありますか?ESヘッドは、それらが保存されていることを示していますが、localhost:9200 / items / slot /XXXへのHTTPGETは、「exists」:falseでランダムに応答します。

4

1 に答える 1

10

子ドキュメントは、ルーティングに親のIDを使用しています。したがって、子ドキュメントを取得するには、クエリのルーティングパラメータで親IDを指定する必要があります。

curl "localhost:9200/items/slot/126?routing=35"

親IDが利用できない場合は、子ドキュメントを検索する必要があります。

curl "localhost:9200/items/slot/_search?q=id:126"

または、単一のシャードを持つインデックスに切り替えます。

于 2012-11-25T01:25:40.103 に答える