关闭webjob时更新存储表

时间:2015-04-17 04:56:57

标签: azure azure-webjobs azure-webjobssdk

我的问题类似于下面的问题。

Notification of when continuous Azure WebJob is stopping for NoAutomaticTrigger type jobs

我使用了Amit's Blog中的想法,但后来遇到了一些障碍

我在webjob中设置了一个文件监视器,如果webjob从门户网站关闭,它将被触发。

我需要在webjob终止之前更新存储表中的一些标志。

问题是我的代码似乎停止在我试图从存储表中检索记录的位置。我在下面的代码周围有异常处理程序,并且在控制台上没有写入异常消息。

以下是我的代码

CloudStorageAccount storageAccount = CloudStorageAccount.Parse("my storage key");
var tableClient = storageAccount.CreateCloudTableClient();
var table = tableClient.GetTableReference("myTable");
TableOperation operation = TableOperation.Retrieve("partKey", "rowKey");
var result = table.Execute(operation); // stucks here
   if (result.Result != null)
     {
        MyEntity entity = (MyEntity)result.Result;
        if (entity != null)
         {
           entity.IsRunning = false; //reset the flag
           TableOperation update = TableOperation.InsertOrReplace(entity);
           table.Execute(update); //update the record
         }
     }

我已将stopping_wait_time中的settings.job增加到300秒,但仍然没有运气。

1 个答案:

答案 0 :(得分:0)

您可以使用Microsoft.Azure.WebJobs.WebJobsShutdownWatcher
这是Amit解决方案的实现:WebJobs Graceful Shutdown

所以我找到了这样做的解决方案:
Program.cs中没有任何修改

class Program
{
    static void Main()
    {
        var host = new JobHost();
        host.Call(typeof(Startup).GetMethod("Start"));
        host.RunAndBlock();
    }
}

正常关机进入你的功能:

public class Startup
{
    [NoAutomaticTrigger]
    public static void Start(TextWriter log)
    {
        var token = new Microsoft.Azure.WebJobs.WebJobsShutdownWatcher().Token;
        //Shut down gracefully
        while (!token.IsCancellationRequested)
        {
            // Do somethings
        }

       // This code will be executed once the webjob is going to shutdown
       Console.Out.WriteLine("Webjob is shuting down")
    }
}

在while循环之后,您还可以停止已启动的任务。