Running 3 queries in logstash

HI ,

I want to use below sql queries :slight_smile:

  1. select id form table 1 (it will give millions id)
  2. select id, name from table 2
  3. select id , location from table 3
    My doc should look like below :
    {
    id :1
    name : abc
    location : xxx
    }
    {
    id : 2
    name : def
    location : yyy
    }

previously i was using jdbc,in file { jdbc streaming and aggregate ) to bind 2 queris.. but for 3 queries its not running..

What does the pipeline configuration look like? And what do you mean by "not running"? Is the pipeline not executing or is it executing and resulting in events with the wrong data?