My project flow contains-
- a machine learning container instance which receives some data and return a output.
- function app for queue trigger.
from queues, data goes to container instance and returns output,then output is stored in a different queue. Now this data flow is happening with FIFO. It is sending one data at a time. It is making my process very slow. Is there any chance I can send whole queue data in just one go to container instance? You can provide alternative solution as well.