HI, I got about 15 pipelines, getting data from a DB, and I was thinking to point all those pipelines to another pipeline that will filter and index the data and various questions arise in my mind:
1-Will this create a performance issue (bottleneck)?
2-the pipelines in pipelines.yml are executed in parallel or in order?
3-if they are in order, then it matters where I put my filter pipeline, must be placed after my other pipelines?
- pipeline.id: db_one
path.config: "/etc/logstash/conf.d/database/db_one.conf"
- pipeline.id: db_two
path.config: "/etc/logstash/conf.d/database/db_two.conf"
....
- pipeline.id: db_fifteen
path.config: "/etc/logstash/conf.d/database/db_fifteen.conf"
- pipeline.id: dbfilter
path.config: "/etc/logstash/conf.d/database/filter.conf"