0

My contnuous webjob stops after some time. I understand that potential reason for this could be because the WebJob SDK used to create webjob may not be supported by webapp. See details here

I am using Microsoft.Azure.WebJobs (Version: 1.1.0-beta1(Prerelease) nuget package to create my webjob.

Is this SDK supported in WebApp?My WebApp is deployed in a ResourceGroup.

Community
  • 1
  • 1

1 Answers1

0

Yes, the WebJobs SDK is fully supported in the Web Apps - that's the primary hosting scenario for the SDK.

As David mentioned in the other post, there are times when it is expected that your job will restart (site setting changes, file changes, etc.) If the restarts you're seeing aren't expected due to any of those reasons, then you'll want to check error logs to see what errors in your application might be causing this.

mathewc
  • 13,312
  • 2
  • 45
  • 53
  • Unfortunately, there isn't any useful information in logs. In fact, log says that webjob is still running. However, there is no processing. As David suggested , providing the webjob URL - https://amsdevappsvcwebapp.scm.amsdevappsvc.p.azurewebsites.net/api/continuouswebjobs/RegistrationPluginTest . Would appreciate if you could investigate. – Mahesh Kshirsagar Oct 07 '15 at 20:26