0
votes

I have some USQL scripts that will generate files:

@output=
EXTRACT..
OUTPUT @output
TO "/myFirstFunction_{myId}.txt"
USING Outputters.Tsv();

For every generation of one of these files: /myFirstFunction_{myId}.txt I would like to trigger an Azure Function.

How do we trigger an Azure Function from data lake?

1

1 Answers

1
votes

There isn’t a trigger specifically for data lake - so I would recommend using the event grid integration to fire an event to a function to trigger which can then pull the contents or act as needed