如何使用 elasticsearch ruby 在附件管道中使用文档?
How to consume a document in attachment pipeline using elasticsearch ruby?
我正在尝试在 elasticsearch 管道中附加一个文档,但我没有任何方法。
对于这次通话 -
PUT my_index/my_type/my_id?pipeline=attachment
{
"data": "e1xydGYxXGFuc2kNCkxvcmVtIGlwc3VtIGRvbG9yIHNpdCBhbWV0DQpccGFyIH0="
}
知道的请告诉我
提前致谢。
这应该有效:
client.index index: 'my_index', type: 'my_type', id: 'my_id', pipeline: 'attachment', body: { data: 'e1...H0=' }
我正在尝试在 elasticsearch 管道中附加一个文档,但我没有任何方法。
对于这次通话 -
PUT my_index/my_type/my_id?pipeline=attachment
{
"data": "e1xydGYxXGFuc2kNCkxvcmVtIGlwc3VtIGRvbG9yIHNpdCBhbWV0DQpccGFyIH0="
}
知道的请告诉我
提前致谢。
这应该有效:
client.index index: 'my_index', type: 'my_type', id: 'my_id', pipeline: 'attachment', body: { data: 'e1...H0=' }