I'm upgrading elasticsearch 2.1 to 5.0. I used a document ingestion plugin for 2.1 which works most excellently with a batch ingest.
For 5.0 I've installed the ingest-attachment in 5.0.
I've created a pipeline:
{
"attachment": {
"description": "Attachment ingestion",
"processors": [
{
"attachment": {
"field": "data"
}
}]
}
}
The problem is, with the previous plugin I was ingesting using bulk, but I can't find in the documentation how to do a bulk ingest whilst utilising a pipeline?