例としてこれらのデータがあります
{
"_index": "tags",
"_type": "tag",
"_id": "AVhDUH51AIyDmaqCQz3I",
"_score": 1,
"_source": {
"tagname": "tag1",
"tagnameFr": "tag1fr",
"description": "Some description",
"descriptionFr": "Some description fr",
"contests": [
{
"id": 22
},
{
"id": 33
},
{
"id": 44
}
],
"deal": null,
"category": null
}
}
ネストされたドキュメントを更新するためにこれを行いましたが、うまく機能します
// $column = 'contests'; $data = ['contest' => array('id' => 1, 'name' => 'test')];
$this->params['body'] = array(
'script' => array(
"inline" => "ctx._source." . $column . ".add(params." . $column . ")",
"lang" => "painless",
"params" => $data
)
);
しかし、このように削除しようとすると
// $list = 'contests'; and $value = array('id' => 1, 'name' => 'test');
$this->params['body'] = array(
"script" => "ctx._source." . $list . ".remove(params.item)",
"lang" => "painless",
"params" => array(
'item' => $value
)
);
上記のコードを実行すると、次のメッセージが表示されます /
Connection.php 行 681 の BadRequest400Exception: {"error":{"root_cause":[{"type":"remote_transport_exception","reason":"[56NCJVE][127.0.0.1:9300][indices:data/write/ update[s]]"}],"type":"illegal_argument_exception","reason":"スクリプトの実行に失敗しました","caused_by":{"type":"script_exception","reason":"実行時エラー", "caused_by":{"type":"null_pointer_exception","reason":null},"script_stack":["ctx._source.contest.remove(params.item)"," ^---- HERE"], "script":"ctx._source.contest.remove(params.item)","lang":"無痛"}},"status":400}
コードでこのスクリプトを実行しようとしましたが、上記と同じエラーが発生します。
{
"script": "item_to_remove = nil; foreach (item : ctx._source.list) { if (item['tweet_id'] == tweet_id) { item_to_remove=item; } } if (item_to_remove != nil) ctx._source.list.remove(item_to_remove);",
"params": {"tweet_id": "123"}
}
そして、私が実行している両方のスクリプトupdate
$this->client->update($this->params);