Can I set up pipeline processor on index level

Is there a way to set up pipeline to be always used on an index when new document is indexed?
I know I can specify it with each document, but it feels there should be way to just set it up once, since this anyway does pre-processing before indexing.

So, I know I can do this:
PUT my_index/my_type/1?pipeline=test
{.....}

But I want every document to go through clean up that I set up in test pipeline.

This feature is coming in 6.5:

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