I have created one ASA job and also created one input(eventhub) and 6 output(2 cosmos and 4 service bus queue) and Queries are like below. SA allows to write more than 5 query but giving error in activity logs.Because of which I am getting watermark delay also.
1: Select
*
INTO
CosmosOutput
FROM
eventhubinput ;
2: Select
id,long,lat,timestamp
INTO
CosmosOutput1
FROM
eventhubinput ;
3: Select
*
INTO
SB1
FROM
eventhubinput
Where <condition>;
4: Select
*
INTO
SB2
FROM
eventhubinput
Where <condition>;
5: Select
*
INTO
SB3
FROM
eventhubinput
Where <condition1>;
6: Select
*
INTO
SB4
FROM
eventhubinput
Where <condition1>;
Question:
How do I write more than 5 query in efficient way? Thanks in advance!