When upload file more that 200MB to a blog, the blog trigger a Logic App Workflow not get activate

Anonymous
2022-01-14T22:09:47.183+00:00

we create a blog storage that when a file is drop on that its activate a Logic App workflow trigger that process that file. For file around more that 200MB this trigger don't get activate less it work fine.

We need process files almost to 17GB size.

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,553 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 70,941 Reputation points Moderator
    2022-01-17T07:04:55.367+00:00

    @Anonymous Azure blob connector supports a maximum 1 GB file size with chunking enabled as mentioned in the General Limit section. For files greater than 50 MB and less than 1GB you need to follow mentioned here.

    Blob Storage triggers don't support chunking. When requesting file content, triggers select only files that are 50 MB or smaller. To get files larger than 50 MB, follow this pattern:

    Use a Blob Storage trigger that returns file properties, such as When a blob is added or modified (properties only).
    Follow the trigger with the Blob Storage Get blob content action, which reads the complete file and implicitly uses chunking.

    As there is a limitation of 1GB file you can offload the processing of file functionality to azure function by calling the function from the logic app. To handle large messages within logic app you can refer here but please refer to the limit of individual connectors.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.