Я пытаюсь зарегестрировать новый pipeline (код этот старый, поэтому я многое по эластику забыл)
$params = [
'id' => 'filesNtd',
'body' => [
'description' => 'Extract attachment information',
'processors' => [
[
'attachment' => [
'field' => 'contentdocs',
'indexed_chars' => -1
]
]
]
],
];
$x = $this->obj->ingest()->putPipeline($params);
print_r($x);
Но мне выдается вот такая ошибка
{"error":{"root_cause":[{"type":"parse_exception","reason":"No processor type exists with name [attachment]","processor_type":"attachment"}],"type":"parse_exception","reason":"No processor type exists with name [attachment]","processor_type":"attachment"},"status":400}
Плагин ingest-attachment установлен.
Подскажите пожалуйста в чем ошибка и как её исправить?