Questions tagged [azure-eventgrid]

Reactive, event-driven apps with a fully managed event routing service on Microsoft Azure

Azure Event Grid is a fully-managed intelligent event routing service that allows for uniform event consumption using a publish-subscribe model. Use Azure Event Grid to react to relevant events across both Azure and non-Azure services in near-real time fashion.

586 questions
2
votes
1 answer

How to ensure only one Azure Functions Event Grid Trigger instance is allowed to run at at time?

I have several Event Grid Triggers using Python on the Linux Consumption Plan that are executed when new blobs are created in Azure Storage. It's possible for more than one function instance to run simultaneously if blobs are created at or around…
ddx
  • 469
  • 2
  • 9
  • 27
2
votes
2 answers

Advantages of using event hubs capture

I am rather new to azure and cloud in general. I was looking at this tutorial on how to integrate event hubs, event grid and azure functions to stream data into an SQL warehouse. My question is: What are the advantages of first storing the data in…
2
votes
1 answer

Event Grid-triggered Function Keeps Triggering After Function Successfully Runs?

I have an Azure Function triggered by Event Grid Events. Event Grid Events are created only when a blob is uploaded to a Storage Account. This is now deployed and working well although for some reason, the Function keeps getting triggered by the…
ericOnline
  • 1,586
  • 1
  • 19
  • 54
2
votes
1 answer

Azure EventGrid Subject vs EventType

The Event Grid Schema has two fields subject and eventType that can be used to filter the events that you want to handle using the Event Subscription Schema. Other than eventType is an exact match string and a subject uses beginsWith or endsWith…
MikeF
  • 764
  • 9
  • 26
2
votes
1 answer

No Event Grid events triggering when uploading files to Azure Blob Storage -- why?

I set up a simple scenario in Azure using a Storage Account, a Function App, and an Event Grid System Trigger. Blob uploads into the Storage Account should cause the Event Grid System Trigger to send a BlobCreated event to trigger the Azure…
2
votes
1 answer

Azure Storage V2 blob event - Not triggering ADF

I have an Azure Data Factory V2 (X), with a blob event trigger. The blob event trigger works fine and triggers the Data Facotry (X) when I manually upload a file using the storage explorer. But when I use another data factory (Y) to write the file…
Satya Azure
  • 459
  • 7
  • 22
2
votes
1 answer

How can we pass retry count of event grid into azure function?

I have one azure function subscribed to event grid ,now i have 3 as max retry count,i want to pass retry count every time when my azure function called. For example if in first call i want to pass 1 as retry count then if its fails and retrying my…
Zeeshan
  • 484
  • 1
  • 5
  • 19
2
votes
2 answers

Azure Event Grid Custom Topic Triggering on Insert to Azure SQL table

I am trying to use Event Grid to kick off an Azure Data Factory pipeline when a new record is inserted into an Azure SQL database table. But, I'm lost at the start of things. When creating the new subscription, I think I would choose Custom Input…
AHazel
  • 25
  • 1
  • 5
2
votes
3 answers

Creating an Azure Event Grid Topic Error - "does not have authorization to perform action"

I'm writing a python script that is intended to create Event Grid Topics. I'm following a couple of Microsoft tutorials and Github repos and have written some python code to create topics. Python samples:…
Darren Wainwright
  • 30,247
  • 21
  • 76
  • 127
2
votes
1 answer

Accessing the triggered / parent table name inside a SQLCLR trigger

I'm creating a relatively simple SQL CLR in C#. The job of this CLR is to publish events to an Azure Event Grid Topic. I would like to be able to call this particular CLR from any number of triggers for any number of tables (in actuality there…
Darren Wainwright
  • 30,247
  • 21
  • 76
  • 127
2
votes
2 answers

Creating Eventgrid subscription using ARM on Function endpoint

I'm trying to create an Eventgrid subscription on an Azure Storage Account using an ARM template. Manually creating it in the Portal and going to the advanced settings yielded me the template below. I further added the required template items such…
NotFound
  • 5,005
  • 2
  • 13
  • 33
2
votes
1 answer

Azure Event Grid - logs of unmatched events

Recently we have been updating our Event Grid Subscriptions and because of an error in the migration, some of the subscriptions were not created. Dev errors happen, therefore the problem that I have here in mind is that Event Grid doesn't seem to…
eddyP23
  • 6,420
  • 7
  • 49
  • 87
2
votes
1 answer

Aggregate Eventgrid events

I am using eventgrid,the events are written to the topics and the data is processed and saved in cosmos db. Now we are trying to build a report in power bi where we are planning to use streaming aggregation. Is it possible to aggregate the log and…
Karthikeyan VK
  • 5,310
  • 3
  • 37
  • 50
2
votes
2 answers

Create event grid topic and subscription dynamically without going to azure portal by coding?

I want to create event grid topic dynamically. Whenever my azure function is triggered, it will create new topic based on input it gets. I just want to know if there is any way I can create azure topic without going to azure portal.
Shrirang
  • 1,286
  • 10
  • 23
2
votes
1 answer

Azure Event Grid advance filtering with Cloud Event Schema v1.0

I'm using Event Grid for communicating two different microservices. For this purpose I have created a topic and a subscription: Event Grid Topic with Cloud Event Schema v1.0 Event Grid Subscription with Cloud Event Schema v1.0 Events are sent and…
DavidGSola
  • 697
  • 5
  • 17