I have an blob triggered function which processes the file by parsing the file and inserting/updating the contents into a DB Table. This works perfectly fine until there are more than is one blob in the container and the function tries to process them concurrently. I end up getting Primary Key constraints (as I should), duplicates etc.
The question is, given there may be more than one blobs in the container at any one time, how can I ensure that each of them is processed sequentially?
thanks