# Creating an Ingest Pipeline

**URL:** https://discuss.elastic.co/t/creating-an-ingest-pipeline/142784
**Category:** Elasticsearch
**Created:** [August 2, 2018, 3:21pm UTC](https://discuss.elastic.co/t/creating-an-ingest-pipeline/142784 "2018-08-02T15:21:31Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Umbrae\_Soulsbane](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/umbrae_soulsbane/32/34023_2.png) [@Umbrae\_Soulsbane](https://discuss.elastic.co/u/Umbrae_Soulsbane)
#### Post date: [August 2, 2018, 3:21pm UTC](https://discuss.elastic.co/t/creating-an-ingest-pipeline/142784/1 "2018-08-02T15:21:31Z")

</div>

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!

---

<div class="post-metadata">

### Author: ![dadoonet](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/dadoonet/32/137187_2.png) [@dadoonet](https://discuss.elastic.co/u/dadoonet)
#### Post date: [August 2, 2018, 3:44pm UTC](https://discuss.elastic.co/t/creating-an-ingest-pipeline/142784/2 "2018-08-02T15:44:23Z")

</div>

You did not call:

```
PUT _ingest/pipeline/attachment

```

But

```
PUT gty-write/_ingest/pipeline/attachment
```

---

<div class="post-metadata">

### Author: ![Umbrae\_Soulsbane](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/umbrae_soulsbane/32/34023_2.png) [@Umbrae\_Soulsbane](https://discuss.elastic.co/u/Umbrae_Soulsbane)
#### Post date: [August 2, 2018, 4:00pm UTC](https://discuss.elastic.co/t/creating-an-ingest-pipeline/142784/3 "2018-08-02T16:00:55Z")

</div>

The URL that is being called via the put is:

[http://server](http://server):port/gty-write/\_ingest/pipeline/attachment

The general command does not include the full URL sent through the application, but I believe that is correct.

Are you saying I should be calling this instead?

[http://server](http://server):port/\_ingest/pipeline/attachment

If so I am guessing this means it would be global, so what would the affect be to other indexes?

Thanks!

---

<div class="post-metadata">

### Author: ![dadoonet](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/dadoonet/32/137187_2.png) [@dadoonet](https://discuss.elastic.co/u/dadoonet)
#### Post date: [August 2, 2018, 6:00pm UTC](https://discuss.elastic.co/t/creating-an-ingest-pipeline/142784/4 "2018-08-02T18:00:54Z")

</div>

Yes.

---

<div class="post-metadata">

### Author: ![Umbrae\_Soulsbane](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/umbrae_soulsbane/32/34023_2.png) [@Umbrae\_Soulsbane](https://discuss.elastic.co/u/Umbrae_Soulsbane)
#### Post date: [August 2, 2018, 6:12pm UTC](https://discuss.elastic.co/t/creating-an-ingest-pipeline/142784/5 "2018-08-02T18:12:11Z")

</div>

Thanks! I appreciate the help!

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [August 30, 2018, 6:12pm UTC](https://discuss.elastic.co/t/creating-an-ingest-pipeline/142784/6 "2018-08-30T18:12:15Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
