0
s = Search(index='test-index').using(client)
q = Q('percolate',
            field="query",
            documents=list_of_documents)
s = s.query(q)
p = s.execute()

ドキュメントのリストを使用して、インデックスに対してパーコレーション クエリを実行しようとしていますが、エラーが発生します

RequestError(400, 'search_phase_execution_exception', 'Field [_id] is a metadata field and cannot be added inside a document. Use the index API request parameters.').

これを解決する助けがあれば大歓迎です。

4

1 に答える 1