@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.