Azure Data Factory Copy Data From Blob Storage Only New Added file(s)

Viewed 184

I would like to create a pipeline with Copy Data (mapping JSON source to MySQL columns). At this moment it is working, but the tool is copying all the files from my source container after the 'created' trigger. Is it possible to retrieve only 'new added' files in my container, so I do not have double data in MySQL?

Example current situation:

first copy -> retrieve file 1
(added new file)
second copy -> retrieve file 1 + file 2

Example expected situation:

first copy -> retrieve file 1
(added new file)
second copy -> retrieve file 2
1 Answers
Related