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.