Robin89
Robin89

Reputation: 1

ADF pipeline not triggered on 'appendblob' event type in ADLS Gen2

I have set up an ADF pipeline to trigger whenenver a new file lands in the ADLS Gen2(source). The pipeline should copy the json file from ADlS(Gen2) and sink in Azure SQL db.

In ADF, I am using event based trigger: Type: BlobEventTrigger , Event : Blob Created

Here is the problem, I am facing

I need to know:

Tried both event types:

Upvotes: 0

Views: 158

Answers (1)

Pratik Lad
Pratik Lad

Reputation: 8301

How to create an event based trigger in ADF, when a append blob event occurs in ADLS

you are appending the blob means you are updating/modifying the blob.

In ADF storage event triggers It will trigger the pipeline in two scenarios whenever the new blob is getting created and when the existing blob is getting updated.

I created a trigger to run pipeline when blob is created or updated in specific container. settings as below:

enter image description here

check the blob updated time and pipeline triggered time.

enter image description here enter image description here

Upvotes: 0

Related Questions