简体   繁体   中英

Can queue trigger in azure send more than one data in one go?

My project flow contains-

  1. a machine learning container instance which receives some data and return a output.
  2. 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.


Queue triggers work when a message adds to the queue. Its process FIFO. if you want to send multiple messages or values into a single request in that case you can create an object and send this object. its holds multiples values as show in blew screenshot. but i can't find any document on send multiple queue data on single go.

在此处输入图像描述

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM