I created an on-demand webjob. In the management portal there is no option to upload a new zip, to update it.
I can delete the existing webjob and create a new one, but I would like to keep my logs.
Is there any way to re-deploy it, overriding the old version, maintaining the logs?
相关问题
- View Azure WebJob Schedule in Portal?
- WebJob “host is not running”. How to debug?
- Azure WebJob won't run locally in debugger
- How to resolve unable to acquire singleton lock is
- How to publish manually created WebJobs to Azure
相关文章
- When publishing website on azure, webjobs are dele
- Azure functions - How to read form data
- “The function runtime is unable to start”
- Running Azure WebJob without queue
- Update (re-deploy) existing azure webjob
- New Azure WebJob Project - JobHostConfiguration/Ru
- with azure webjobs how do i pass parameter for a s
- Graceful Shutdown of Azure WebJobs
You can connect to the website where the webjob is at via FTP and update the necessary files without erasing your log files.
You can get the credentials to connect via FTP from the Publish Profile.
You can also use your website's debug console at: https://yoursitename.scm.azurewebsites.net/DebugConsole There you get a file explorer in your browser where you can drag/drop files (even zips that will be extracted into your website).
In the file browser go to d:\home\site\wwwroot\App_Data\jobs\triggered\jobname
Some more info about this at: http://blog.amitapple.com/post/74215124623/deploy-azure-webjobs/