I want to run a function when my azure queue reaches x length or has not been looked at for y minutes. ie: I have a queue myQueue, which a webhook is adding messages to. I want to process the queue if it reaches X messages in length or if it hasn't been processed for Y minutes (this is incase there are less than X messages sat in queue). Am I missing something obvious? I can see queue triggers, but that is for every message that enters queue (I think?) or timer triggers that will do my time part but not a mix. Any ideas?
process azure queue based on timer and on queue length
144 views Asked by Johan Grobler At
1
There are 1 answers
Related Questions in AZURE
- How to update to the latest external Git in Azure Web App?
- I need an azure product that executes my intensive ffmpeg command then dies, and i only get charged for the delta. Any Tips?
- Inject AsyncCollector into a service
- mutual tls authentication between app service and function app
- Azure Application Insights Not Displaying Custom Logs for Azure Functions with .NET 8
- Application settings for production deployment slot in Azure App Services
- Encountered an error (ServiceUnavailable) from host runtime on Azure Function App
- Implementing Incremental consent when using both application and delegated permissions
- Invalid format for email address in WordPress on Azure app service
- Producer Batching Service Bus Vs Kafka
- Integrating Angular External IP with ClusterIP of .NET microservices on AKS
- Difficulty creating a data pipeline with Fabric Datafactory using REST
- Azure Batch for Excel VBA
- How to authenticate only Local and Guest users in Azure AD B2C and add custom claims in token?
- Azure Scale Sets and Parallel Jobs
Related Questions in AZURE-QUEUES
- Azure Queue Functions | Trigger when multiple queue functions executions with a specific message property ends
- Filter Xml messages on element presence in Azure Topic
- Server failed to authenticate the request - Azure Queue Storage REST API (PUT Method)
- Alert on Storage Account queue count
- Azure function binding ignore null values in map on serialization
- QueueTrigger Azure function not processing message and exhibiting bizarre behavior
- Azure: equivalent of a several SQS subscribed to a SNS
- Azure Queue Storage with multiple functions not running any functions NOT in function_app.py
- sp_invoke_external_rest_endpoint to Azure Queue results in poisonous message
- RBAC Role for writing/editing EventGrid System Topic Subscriptions?
- Getting Azure queue messages and handle messages
- Azure Container Queue Function APP Connection String Error
- "Storage account connection string 'AzureWebJobsStorage' does not exist." when starting Azure Function with Queue Trigger and AAD Identity
- Azure functions use-queue trigger with managed identity- Storage Queue Data Contributor Role
- Azure storage queue emits incorrect metric
Related Questions in AZURE-TRIGGERS
- use environment variable for path binding in azure python
- using python v2 azure event grid output binding and keeps complaining about function.json
- After successful completion on the current build , another build is not getting triggered though I have added build under "build compilation" trigger
- Is there any approach in azure that i can call different azure function based on the key present in azure service bus?
- why we get error when we update an enabled trigger in azure data factory
- Azure Function App (Python v2) - blob_trigger function not showing after deployment
- What is the most efficient trigger to use for an Azure Function to poll a container for new blobs every 5 minutes
- How can we determine which column has changed when an Azure SqlTrigger hits
- Delete a sql table row using Azure SQL Trigger
- ADF Tumbling Window Trigger
- Using Azure HTTP trigger to get a list of documents from CosmosDB fails every time
- How to schedule an azure datafactory pipeline to run on every 'n'th business day of a month
- Azure pipeline doesn't triggers after completion of previous pipeline
- Synapse Pipeline Storage Trigger - client does not have authorization to perform action 'Microsoft.EventGrid/eventSubscriptions/write'
- Using peak and lock patter inside Azure Trigger function for service bus topic in java(maven)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The Queue Trigger is to trigger a function whenever a message arrives into a queue. There's no 'batch' queue trigger, so you either work with a time trigger that runs every x seconds and check for the queue length and start processing, or you live with the original queue trigger.