azure request time out

Iheb Jandoubi 5 Reputation points
2024-05-09T19:23:03.8666667+00:00

i am uploading a video to azure blob storage through a node js server hoster in azure app service! sometimes i get request time out error 408!

always on is activated in azure app service configuration

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,992 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. brtrach-MSFT 15,351 Reputation points Microsoft Employee
    2024-05-10T02:36:51.77+00:00

    @Iheb Jandoubi I'm going to assume the videos are probably large in size (in terms of MB). If so, this could be taking longer than 1 minute to complete and thus is being cut off and giving you 408 errors (time out). If so, the client may have a slow connection, or the files might be too large to be sent as a single file.

    Can you try to upload a very small video? Maybe 5 seconds long that has a small file size (MB)?

    If this works, then you may need to investigate chunking your data. Let us know the outcome of the above test so we can assist you further.