有哪些可能的选项来克服 Azure 中 webjob 的大小限制问题。在上传 webjob(.zip 文件)期间,大小现在限制为 100 MB。而我的压缩文件帐户为 105 MB。所以我无法将我的网络作业上传到该网站。
提前致谢。
有哪些可能的选项来克服 Azure 中 webjob 的大小限制问题。在上传 webjob(.zip 文件)期间,大小现在限制为 100 MB。而我的压缩文件帐户为 105 MB。所以我无法将我的网络作业上传到该网站。
提前致谢。
In general I would recommend deploying your WebJobs as part of your Website, just put each WebJob under wwwroot\App_Data\jobs\{triggered/continuous}\{jobname}
.
That way you don't have a manual step for deploying a WebJob and they can be deployed in any Azure Websites supported deployment option (FTP, WebDeploy, git, dropbox, DebugConsole, mercurial, VS Team Services, ...).
Note: One exception is deploying a scheduled WebJob, currently you can't deploy a schedule in this way.
您可以通过 FTP 进入网站并以这种方式上传文件