azure functions
3 TopicsCould a Blob Trigger in a Function "Miss"
I have a function (2.0 written in C#) that has a blob trigger. In this function, whenever a blob is created (to the tune of about 100,000 blobs every 90 minutes) I inspect the blob properties and write some data to a database (SQL Server) table. I am seeing instances where a blob is created, but there is no corresponding row in the table for the blob properties Is it possible that the blobs are being written so quickly that the trigger "misses" and fails to fire?1.5KViews0likes0CommentsAzure function Start-Stop-V2 ignores ResourceGroups
Hello, Microsoft pushes customers to use Start-Stop-V2 for scheduled starting and stopping machines. This new functionality is based on Azure Functions, not based on automation accounts and runbooks. Unfortunately, the Azure Function provided by Microsoft (deployed from marketplace) does not work properly. This function ignores the property ResourceGroups and starts all VMs within a subscription, instead of starting only the machines within the given ResourceGroups. An exact description of the problem can be found here: https://github.com/microsoft/startstopv2-deployments/issues/90 Updating / redeploying the function over github is also broken. Microsoft pushes the customers to a broken function without support. The function should be furthermore supported over Github, but isn't. Did anybody resolve this issue (e.g. by updating the function, but how?) Or has anybody found another solution, except of filtering machine names?702Views0likes0CommentsAzure premium functions - Zero deployment down time
Hello, This is something I am not sure of. Does Azure premium function provide zero downtime deployment by default. In theory there is at least one premium function always up and running, so the new version is deployed as a new instance and the old one is killed after its ongoing request are completed is that even possible. I know we can use deployment slots. I am just wondering if premium functions has this feature by default(not needing to use deployment slot) as there is at least one instance always running. I know we can use deployment slots to achieve this.591Views0likes0Comments