Hoping I can get some help. I am trying to setup Elastic with our CMS to index content on our website. Everything is fine except with documents where I cannot seem to create an ingest pipeline. I have been searching like crazy and this does not appear to be complicated, so I am not sure what I am doing wrong. Being our Elastic Admins are pretty green they have not been able to help me either.
Looks like we are using Elastic 6020499, and I am using the following:
PUT _ingest/pipeline/attachment
{
"description" : "Extract attachment information",
"processors" : [
{
"attachment" : {
"field" : "data"
}
}
]
}
I get back a bad request with:
No handler found for uri [/gty-write/_ingest/pipeline/attachment] and method [PUT]
I am told the ingest plugin is installed and they sent me back this command:
elasticsearch/bin/elasticsearch-plugin list
ingest-attachment
However, I have no idea what I am doing wrong or how to debug further. Everything I find online seems to match what I am doing. I have found some slight variations but I those seem to be trying to do something more complicated.
Any help would be appreciated!
Thanks!