如何使用Azure功能运行运行超过10分钟的应用程序?

时间:2019-08-25 19:35:26

标签: c# azure azure-functions timer-trigger

我运行的某个应用在特定时间每天运行约一个小时,起初我考虑过使用可正常运行的常规应用服务(WebJobs),但在检查了成本之后,我认为它很多,也许是运行该应用程序的另一种方式。

顺便说一句,该应用程序是一个从网站收集数据的抓取器。

我尝试使用azure函数,但是不幸的是,该函数最多运行10分钟作为消耗计划,并更改为应用服务,实际上我回到了第一个解决方案。

host.json文件中的设置:(尝试将最大超时更改为错误)

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
  <body>
    <div class="container my-5 d-flex align-items-center justify-content-center">
      <div class="box border rounded p-5 text-center">
        <div class="box-title">
          Check-in here
        </div>
        <div class="box-description">
          <p>Find your reservation and collect your room keys</p>
        </div>
        <div class="box-action">
          <button>start</button>
        </div>
      </div>
    </div>
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>

应用程序详细信息:

控制台应用程序-输出控制台

Debug \ Release-大小最大为20MB

运行时间-大约一个小时,每天一次。

使用Azure SQL服务器+数据库(500 MB)

如果有人有一个更高效,更便宜的解决方案,我会很高兴吗?

1 个答案:

答案 0 :(得分:0)