question

Raddy-5566 avatar image
0 Votes"
Raddy-5566 asked PramodValavala-MSFT commented

Logic Apps: Messages in Azure Table

I have set up my logic apps to check for new items in Azure Table every second. However, it is checking for every minute. Can't seem to change this. Any way I can achieve this? Thanks

azure-logic-appsazure-table-storage
· 5
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

@Raddy-5566 Could you please post a screenshot of the designer and recurrence?
Although technically feasible, I doubt if polling every second is an effective use of resources and money because you pay for every execution.
If you have a usecase with such high throughput, a dedicated event handler like ServiceBus or EventGrid could be a better choice.
Please elaborate your use case so that we can suggest accordingly.

0 Votes 0 ·
Raddy-5566 avatar image Raddy-5566 KalyanChanumolu-MSFT ·



![90941-screenshot-2021-04-23-at-51637-pm.png][2] [2]: /answers/storage/attachments/90941-screenshot-2021-04-23-at-51637-pm.png

My use case is, I would like to capture the message text in the Table when it is created. The challenge is, the message will disappear after a few seconds (less than 10 seconds).
The challenge is a new message may appear before the next polling. So there were instances where I missed the message due to the per minute polling.
90936-screenshot-2021-04-24-at-21040-pm.png


0 Votes 0 ·

@Raddy-5566 Are you using a custom connector?
You dont have to specify the polling interval. I tried reproducing the issue and I am not able to find that option.
The connector ensures that the trigger is executed whenever there is a message in the queue.

90913-image.png

Also, the messages will be hidden but remain on the queue until the delete action is used.

0 Votes 0 ·
image.png (9.9 KiB)
Show more comments

@Raddy-5566 Based on the screenshot that you've shared, I assume you are pushing a message to the queue when an entry is added. If so, due to the polling nature of queue storage, a 1 second poll is not practical.

Instead, you should leverage Event Grid Custom Events for an immediate trigger.


0 Votes 0 ·

0 Answers