我在R中创建了一个弹性管道。现在,我想使用该管道为具有附加字段的文档建立索引。我的管道看起来像这样
body <- '{
"description" : "Extract attachment information from arrays",
"processors" : [
{
"foreach": {
"field": "attachments",
"processor": {
"attachment": {
"target_field": "_ingest._value.attachment",
"field": "_ingest._value.data"
}
}
}
}
]
}'
pipeline_create(id = "attachment", body = body)
我的问题是我想索引具有多个附件(电子邮件)的文档。
2个问题:
ES版本6.2
弹性包装的版本:elastic_0.8.4.9410