ensuring no more than N instances are scaled out for a specific queue
问题 My function is sending a payload to different sftp servers. Those servers are limited in how many connections they can accept. I need a solution to throttle our connections to those servers. The function is triggered by storage queues, and the first draft of the design is: I then learned that you can only have 1 trigger per function, which led me to sandwhich another aggregating queue: I can set the batchSize/newBatchThreshold on the originating queues, but I'm not certain this will work