Hi,
I am trying to create multiple pipelines in Data Prepper. I have the below YML file which creates 2 pipelines. But, is there a way to create two separate YML files, each for one pipeline, and run them both?
pipeline-1:
workers: 2
delay: 1000
source:
random:
processor:
- string_converter:
upper_case: true
sink:
- opensearch:
hosts: ["https://opensearch:9200"]
insecure: true
username: admin
password: admin
index: data-prepper-1
pipeline-2:
workers: 2
delay: 1000
source:
random:
sink:
- opensearch:
hosts: ["https://opensearch:9200"]
insecure: true
username: admin
password: admin
index: data-prepper