azure-eventgrid

Orchestrator is not fired in Azure Durable Function

天大地大妈咪最大 提交于 2021-02-11 12:29:09
问题 We have lots of files that get created in blob storage and consequently we are passing these files to the azure functions. However with Azure function and event grid trigger it was timed out after certain no. of files were processed. Hence now I am trying with durable functions. Below is the code I tried. ProcessJob_EventGrid gets triggered. However the ProcessJob_Orchestrator never gets triggered. Is there something that I am missing. I am completely new to the Durable functions concept.

EventGrid-triggered, Python Azure Function keeps triggering after successfully running?

蓝咒 提交于 2021-01-28 18:11:46
问题 There are a couple other topics out there, but none with solutions or none pertaining to Python Functions. Background: EventGrid-triggered, Python Azure Function EventGrid messages created only when a blob is uploaded to a given Storage Account Function receives message, downloads blob from message URL and does "stuff" Function can run for several seconds/minutes (up to 120 seconds for large blobs) Example of issue: 4 files uploaded to blob container in correct Storage Account Function

Send Azure Blob Storage event notifications to Event Hubs on another account

对着背影说爱祢 提交于 2020-06-12 15:33:59
问题 In Azure, I'm trying to send event notifications from a Storage Account in one Active Directory to an Event Hub in another Active Directory. I'm having trouble figuring out how to share/link the resource. In AWS, I was able to accomplish this by creating a role in the receiver account, adding the source account by ID, adding the SQS Writer resource permission, and adding the SQS Queue ARN as the bucket notification destination. I'm guessing something similar is possible in Azure.. At the

Send Azure Blob Storage event notifications to Event Hubs on another account

怎甘沉沦 提交于 2020-06-12 15:26:14
问题 In Azure, I'm trying to send event notifications from a Storage Account in one Active Directory to an Event Hub in another Active Directory. I'm having trouble figuring out how to share/link the resource. In AWS, I was able to accomplish this by creating a role in the receiver account, adding the source account by ID, adding the SQS Writer resource permission, and adding the SQS Queue ARN as the bucket notification destination. I'm guessing something similar is possible in Azure.. At the

Event subscription by ARM template for topic with EndpointType as AzureFunction

自古美人都是妖i 提交于 2020-05-30 09:27:15
问题 I am trying to create an event grid topic subscription with "endpointType": "AzureFunction" . It is giving following error: - "error": { "code": "InvalidRequest", "message": "Invalid event subscription request: Supplied URL is invalid. It cannot be null or empty and should be a proper HTTPS URL like https://www.example.com." } My ARM template is given below: - { "name": "[concat(variables('eventGridTopicName'), '/Microsoft.EventGrid/', variables('myFuncName'))]", "type": "Microsoft.EventGrid

Event subscription by ARM template for topic with EndpointType as AzureFunction

孤街醉人 提交于 2020-05-30 09:23:35
问题 I am trying to create an event grid topic subscription with "endpointType": "AzureFunction" . It is giving following error: - "error": { "code": "InvalidRequest", "message": "Invalid event subscription request: Supplied URL is invalid. It cannot be null or empty and should be a proper HTTPS URL like https://www.example.com." } My ARM template is given below: - { "name": "[concat(variables('eventGridTopicName'), '/Microsoft.EventGrid/', variables('myFuncName'))]", "type": "Microsoft.EventGrid

How to authenticate an Azure EventGrid API Connection using a script?

房东的猫 提交于 2020-05-28 06:12:48
问题 I am creating an EventGrid API Connection using an ARM Template. It gets created successfully, however, i still have to authenticate it by hand via Azure Portal. Here is my ARM Template: "resources": [ { "type": "Microsoft.Web/connections", "apiVersion": "2016-06-01", "name": "[parameters('azureEventGridConnectionAPIName')]", "location": "[resourceGroup().location]", "properties": { "api": { "id": "[concat(subscription().id, '/providers/Microsoft.Web/locations/', resourceGroup().location, '

Azure Logic Apps - Get Blob content from Blob Event

本小妞迷上赌 提交于 2020-04-16 04:37:30
问题 My logic app receives a blob event when a blob is created via http: I use an Event Grid Subscription, which triggers the Logic App via webhook, when a Blob Created event occurs. A typical blob event received by the http trigger looks like: [ { "topic": "/subscriptions/xxxxxxx/resourceGroups/a-resource-group/providers/Microsoft.Storage/storageAccounts/ablobstorageaccount", "subject": "/blobServices/default/containers/testcontainer/blobs/9de2125e-5279-4375-bc60-c9987eb99251", "eventType":

Azure Logic Apps - Get Blob content from Blob Event

情到浓时终转凉″ 提交于 2020-04-16 04:37:17
问题 My logic app receives a blob event when a blob is created via http: I use an Event Grid Subscription, which triggers the Logic App via webhook, when a Blob Created event occurs. A typical blob event received by the http trigger looks like: [ { "topic": "/subscriptions/xxxxxxx/resourceGroups/a-resource-group/providers/Microsoft.Storage/storageAccounts/ablobstorageaccount", "subject": "/blobServices/default/containers/testcontainer/blobs/9de2125e-5279-4375-bc60-c9987eb99251", "eventType":