我們是否可以在Microsoft Azure的單個Web作業中有多個計劃? 我們有一定的功能,特別的時間內一個單一的作業 即多個計劃,所以我們已經通過定時器試圖發生,但我需要知道的是有你Azure WebJobs計劃程序
0
A
回答
0
可以使用TimerTriggerAttribute:請參閱https://github.com/Azure/azure-webjobs-sdk-extensions#timertrigger
// Triggered every hours
public static void HourlyTimerJob([TimerTrigger("00:01:00")] TimerInfo timerInfo, TextWriter log)
{
log.WriteLine("Your first scheduled job!");
}
// Triggered every 15 minutes
public static void MinutelyTimerJob([TimerTrigger("00:00:15")] TimerInfo timerInfo, TextWriter log)
{
log.WriteLine("Your second scheduled job!");
}
+0
是的,我已經使用了定時器觸發屬性及其工作感謝您的建議。但如果可能的話,單個webjob或其他選項上的多個時間表上的任何信息。 – Inayat
0
您可以隨時使用cron表達式爲網絡的任何其他option.Thank工作,例如讓它在特定時間運行。你可以參考這個official doc。
相關問題
- 1. Windows Azure HPC計劃程序
- 2. Azure webjobs計劃基於何時關閉主機?
- 3. Azure WebJobs和線程安全
- 4. Azure WebJobs睡眠
- 5. Azure Webjobs歷史
- 6. Azure WebJobs SDK ErrorTrigger
- 7. Azure WebJobs vs DataFactory
- 8. Azure WebJobs和Azure SQL Server?
- 9. .NET核心Azure的WebJobs不從Azure應用程序設置
- 10. 計劃程序
- 11. Azure Web App計劃
- 12. Azure服務計劃計費
- 13. Azure WebJobs TimerTrigger不觸發
- 14. azure-webjobs-sdk-extensions vs triggered Webjob
- 15. 如何擴展Azure Webjobs
- 16. Azure WebJobs中的錯誤
- 17. ASP.NET 5中的Azure WebJobs
- 18. Azure Webjobs和Bitbucket部署
- 19. Azure WebJobs和部署槽
- 20. Azure網站上的Azure WebJobs中的PHP
- 21. 麻煩在Azure上使用API應用程序發佈WebJobs
- 22. 從Django/python web應用程序創建Azure webjobs
- 23. Microsoft Azure服務計劃
- 24. Windows Azure |足跡計劃
- 25. Azure應用服務計劃
- 26. Azure網站 - 計劃任務
- 27. Azure應用程序服務計劃硬件故障
- 28. 微軟Azure Web應用程序部署計劃
- 29. 從計劃程序中填充Azure移動服務
- 30. Azure應用程序服務計劃(基本小)限制?
我擔心的是,我們可以有一個單一的網絡工作sir.The以上建議多個計劃是有幫助。 – Inayat