即使在代码中我提到“ functionTimeout”:“ 00:10:00”,即10分钟,ADF V2在4分钟7秒后超时的Azure函数活动也是如此?

问题描述 投票:0回答:1

我创建了一个azure函数,并且在hosts.json中将其超时设置为10分钟,但是当我通过ADF V2 azure函数活动触发它时,该活动将在4分钟7秒后终止,任何人都可以指导我在后端,为什么我会出现这种情况?谢谢。

更新:如果我通过ADF或邮递员运行azure函数,则在4分钟7秒后会给我这个错误:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>502 - Web server received an invalid response while acting as a gateway or proxy server.</title>
    <style type="text/css">
        < !-- body {
            margin: 0;
            font-size: .7em;
            font-family: Verdana, Arial, Helvetica, sans-serif;
            background: #EEEEEE;
        }

        fieldset {
            padding: 0 15px 10px 15px;
        }

        h1 {
            font-size: 2.4em;
            margin: 0;
            color: #FFF;
        }

        h2 {
            font-size: 1.7em;
            margin: 0;
            color: #CC0000;
        }

        h3 {
            font-size: 1.2em;
            margin: 10px 0 0 0;
            color: #000000;
        }

        #header {
            width: 96%;
            margin: 0 0 0 0;
            padding: 6px 2% 6px 2%;
            font-family: "trebuchet MS", Verdana, sans-serif;
            color: #FFF;
            background-color: #555555;
        }

        #content {
            margin: 0 0 0 2%;
            position: relative;
        }

        .content-container {
            background: #FFF;
            width: 96%;
            margin-top: 8px;
            padding: 10px;
            position: relative;
        }

        -->
    </style>
</head>

<body>
    <div id="header">
        <h1>Server Error</h1>
    </div>
    <div id="content">
        <div class="content-container">
            <fieldset>
                <h2>502 - Web server received an invalid response while acting as a gateway or proxy server.</h2>
                <h3>There is a problem with the page you are looking for, and it cannot be displayed. When the Web
                    server (while acting as a gateway or proxy) contacted the upstream content server, it received an
                    invalid response from the content server.</h3>
            </fieldset>
        </div>
    </div>
</body>

</html>

并且,如果我进入App功能的App洞察,它将显示10分钟的超时,我认为这是正确的,因为我正在使用消费计划,因此我知道这一点。但是在4分7秒时,发送给客户端的502响应我并不熟悉。请指导。

timeout azure-functions azure-app-service-plans azure-function-app consumption
1个回答
0
投票
由于即使显示502错误,您的函数仍可以按预期运行,所以我认为这与您的Azure函数无关。

据我所知,azure函数活动在数据工厂中仅允许230秒用于请求。您可以参考此documententer image description here

如果要由邮递员提出请求,则可以在邮递员的“设置”中设置“请求超时”。请参考此document

enter image description here

enter image description here

希望有帮助〜

© www.soinside.com 2019 - 2024. All rights reserved.