How can we increase job host shutdown timing in azure function ?

Amar Agnihotri 891 Reputation points
2022-10-27T14:26:46.907+00:00

Hi,
I am having a blob trigger which is getting fired but it is not completing its execution. When i checked the logs in Application Insights i found these

254739-image.png

It is showing that my job host started running at 6:56 but started shutting down at 7:30. This might be the reason behind restricting the blob trigger getting completed. Can anyone help me to get a way of getting this done ?

Thanks

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,321 questions
{count} vote

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 68,746 Reputation points
    2022-10-28T05:23:36.507+00:00

    @Amar Agnihotri Thanks for reaching out. As per the application insights screenshot you can see the error Cannot perform the runtime binding on a null reference so it looks like there is binding configuration issue on your function app code. As you are using storage binding, please refer to this document to validate the configuration for different supported languages and validate the same with your function code.

    In case if you still need assistance, please share the sample code along with your binding configuration so I can assist you further.

    1 person found this answer helpful.