Deploying Azure webjobsScheduled Azure WebJob deployed via Git results in On Demand JobVSO not deploying Azure website with WebJobAzure WebJobs publishing errorDoes Azure WebJob look at the app.config once deployedHow can we restart webjobs after deployment?Azure WebJob deployment keeps failingInvoking a Continuously Running Webjob via Kudu APIAzure WebJob - Create Directory failsdotnet core Azure webjobs not being TriggeredAccess WCF service deployed as WebJob on Azure from whithin WebApp Sandbox

How many chess players are over 2500 Elo?

How could Catholicism have incorporated witchcraft into its dogma?

NL - iterating all edges of a graph in log space

I think I may have violated academic integrity last year - what should I do?

Can non-English-speaking characters use wordplay specific to English?

The qvolume of an integer

Is this story about US tax office reasonable?

Can a Beholder use rays in melee range?

How is character development a major role in the plot of a story

Why did this prime-sequence puzzle not work?

How do Thomists prove that: "Everything that exists must exist by something."?

Modern approach to radio buttons

What was this black-and-white film set in the Arctic or Antarctic where the monster/alien gets fried in the end?

What does "tea juice" mean in this context?

What does it mean when you think without speaking?

Crossword gone overboard

Is floating in space similar to falling under gravity?

Is there an explanation for Austria's Freedom Party virtually retaining its vote share despite recent scandal?

The Passive Wisdom (Perception) score of my character on D&D Beyond seems too high

How to capture more stars?

Why would Lupin kill Pettigrew?

What are the problems in teaching guitar via Skype?

How can I prevent interns from being expendable?

Is CD audio quality good enough for the final delivery of music?



Deploying Azure webjobs


Scheduled Azure WebJob deployed via Git results in On Demand JobVSO not deploying Azure website with WebJobAzure WebJobs publishing errorDoes Azure WebJob look at the app.config once deployedHow can we restart webjobs after deployment?Azure WebJob deployment keeps failingInvoking a Continuously Running Webjob via Kudu APIAzure WebJob - Create Directory failsdotnet core Azure webjobs not being TriggeredAccess WCF service deployed as WebJob on Azure from whithin WebApp Sandbox






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















When using VS.NET to deploy an Azure WebJob I see it gets copied to:



/site/wwwroot/App_Data/jobs/continuous/[nameofjob]



So this seems to sit inside the webapp we have there, which I think is not correct, since it might not even be related to this webapp.



But I also see there's another folder on the root folder here:



/site/jobs/Continuous



So I guess I'd like to deploy here and not inside the webapp.
I've been looking around in VS.NET but can't find where this can be setup.
I've seen some references to what I'm trying to do here for example:
https://github.com/projectkudu/kudu/wiki/WebJobs



so my question is wheter this is possible to be done from within VS.NET "Publish as Azure WebJob" or it needs to be done manually.
And if manually, is it just a matter of copy files over this folder?










share|improve this question




























    0















    When using VS.NET to deploy an Azure WebJob I see it gets copied to:



    /site/wwwroot/App_Data/jobs/continuous/[nameofjob]



    So this seems to sit inside the webapp we have there, which I think is not correct, since it might not even be related to this webapp.



    But I also see there's another folder on the root folder here:



    /site/jobs/Continuous



    So I guess I'd like to deploy here and not inside the webapp.
    I've been looking around in VS.NET but can't find where this can be setup.
    I've seen some references to what I'm trying to do here for example:
    https://github.com/projectkudu/kudu/wiki/WebJobs



    so my question is wheter this is possible to be done from within VS.NET "Publish as Azure WebJob" or it needs to be done manually.
    And if manually, is it just a matter of copy files over this folder?










    share|improve this question
























      0












      0








      0








      When using VS.NET to deploy an Azure WebJob I see it gets copied to:



      /site/wwwroot/App_Data/jobs/continuous/[nameofjob]



      So this seems to sit inside the webapp we have there, which I think is not correct, since it might not even be related to this webapp.



      But I also see there's another folder on the root folder here:



      /site/jobs/Continuous



      So I guess I'd like to deploy here and not inside the webapp.
      I've been looking around in VS.NET but can't find where this can be setup.
      I've seen some references to what I'm trying to do here for example:
      https://github.com/projectkudu/kudu/wiki/WebJobs



      so my question is wheter this is possible to be done from within VS.NET "Publish as Azure WebJob" or it needs to be done manually.
      And if manually, is it just a matter of copy files over this folder?










      share|improve this question














      When using VS.NET to deploy an Azure WebJob I see it gets copied to:



      /site/wwwroot/App_Data/jobs/continuous/[nameofjob]



      So this seems to sit inside the webapp we have there, which I think is not correct, since it might not even be related to this webapp.



      But I also see there's another folder on the root folder here:



      /site/jobs/Continuous



      So I guess I'd like to deploy here and not inside the webapp.
      I've been looking around in VS.NET but can't find where this can be setup.
      I've seen some references to what I'm trying to do here for example:
      https://github.com/projectkudu/kudu/wiki/WebJobs



      so my question is wheter this is possible to be done from within VS.NET "Publish as Azure WebJob" or it needs to be done manually.
      And if manually, is it just a matter of copy files over this folder?







      azure azure-webjobs






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 24 at 8:56









      vmasanasvmasanas

      1561212




      1561212






















          1 Answer
          1






          active

          oldest

          votes


















          1














          If you want to use different folder to deploy WebJobs. Yes, you could set the WEBJOBS_ROOT_PATH environment in the Application Setting.



          Actually the WEBJOBS_ROOT_PATH value it's not must be d:homesitejobs, it's just a folder to deploy WebJobs, the default WebJob worling directory %TEMP%jobsjob typejob namerandom name. So you could also set the value like D:homesiterepository(you still could set it with d:homesitejobs).



          enter image description here



          Save the settings. Then you could deploy the zip file from portal, if you deploy continuous webjob it will create the continuous folder.



          enter image description here



          enter image description here




          wheter this is possible to be done from within VS.NET "Publish as
          Azure WebJob"




          The answer is no, from the wiki you post you could know this's useful when using Run-From-Zip. So for now you have to deploy the zip file, you could do it on the portal. And if you have set the WEBJOBS_ROOT_PATH value, the deployment folder is still d:homesitewwwrootapp_datajobs, then you couldn't find it on the portal WebJob page.






          share|improve this answer























          • @vmasanas, if this works, please mark it as the answer. Thanks.

            – George Chen
            Mar 25 at 7:46











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55322131%2fdeploying-azure-webjobs%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          If you want to use different folder to deploy WebJobs. Yes, you could set the WEBJOBS_ROOT_PATH environment in the Application Setting.



          Actually the WEBJOBS_ROOT_PATH value it's not must be d:homesitejobs, it's just a folder to deploy WebJobs, the default WebJob worling directory %TEMP%jobsjob typejob namerandom name. So you could also set the value like D:homesiterepository(you still could set it with d:homesitejobs).



          enter image description here



          Save the settings. Then you could deploy the zip file from portal, if you deploy continuous webjob it will create the continuous folder.



          enter image description here



          enter image description here




          wheter this is possible to be done from within VS.NET "Publish as
          Azure WebJob"




          The answer is no, from the wiki you post you could know this's useful when using Run-From-Zip. So for now you have to deploy the zip file, you could do it on the portal. And if you have set the WEBJOBS_ROOT_PATH value, the deployment folder is still d:homesitewwwrootapp_datajobs, then you couldn't find it on the portal WebJob page.






          share|improve this answer























          • @vmasanas, if this works, please mark it as the answer. Thanks.

            – George Chen
            Mar 25 at 7:46















          1














          If you want to use different folder to deploy WebJobs. Yes, you could set the WEBJOBS_ROOT_PATH environment in the Application Setting.



          Actually the WEBJOBS_ROOT_PATH value it's not must be d:homesitejobs, it's just a folder to deploy WebJobs, the default WebJob worling directory %TEMP%jobsjob typejob namerandom name. So you could also set the value like D:homesiterepository(you still could set it with d:homesitejobs).



          enter image description here



          Save the settings. Then you could deploy the zip file from portal, if you deploy continuous webjob it will create the continuous folder.



          enter image description here



          enter image description here




          wheter this is possible to be done from within VS.NET "Publish as
          Azure WebJob"




          The answer is no, from the wiki you post you could know this's useful when using Run-From-Zip. So for now you have to deploy the zip file, you could do it on the portal. And if you have set the WEBJOBS_ROOT_PATH value, the deployment folder is still d:homesitewwwrootapp_datajobs, then you couldn't find it on the portal WebJob page.






          share|improve this answer























          • @vmasanas, if this works, please mark it as the answer. Thanks.

            – George Chen
            Mar 25 at 7:46













          1












          1








          1







          If you want to use different folder to deploy WebJobs. Yes, you could set the WEBJOBS_ROOT_PATH environment in the Application Setting.



          Actually the WEBJOBS_ROOT_PATH value it's not must be d:homesitejobs, it's just a folder to deploy WebJobs, the default WebJob worling directory %TEMP%jobsjob typejob namerandom name. So you could also set the value like D:homesiterepository(you still could set it with d:homesitejobs).



          enter image description here



          Save the settings. Then you could deploy the zip file from portal, if you deploy continuous webjob it will create the continuous folder.



          enter image description here



          enter image description here




          wheter this is possible to be done from within VS.NET "Publish as
          Azure WebJob"




          The answer is no, from the wiki you post you could know this's useful when using Run-From-Zip. So for now you have to deploy the zip file, you could do it on the portal. And if you have set the WEBJOBS_ROOT_PATH value, the deployment folder is still d:homesitewwwrootapp_datajobs, then you couldn't find it on the portal WebJob page.






          share|improve this answer













          If you want to use different folder to deploy WebJobs. Yes, you could set the WEBJOBS_ROOT_PATH environment in the Application Setting.



          Actually the WEBJOBS_ROOT_PATH value it's not must be d:homesitejobs, it's just a folder to deploy WebJobs, the default WebJob worling directory %TEMP%jobsjob typejob namerandom name. So you could also set the value like D:homesiterepository(you still could set it with d:homesitejobs).



          enter image description here



          Save the settings. Then you could deploy the zip file from portal, if you deploy continuous webjob it will create the continuous folder.



          enter image description here



          enter image description here




          wheter this is possible to be done from within VS.NET "Publish as
          Azure WebJob"




          The answer is no, from the wiki you post you could know this's useful when using Run-From-Zip. So for now you have to deploy the zip file, you could do it on the portal. And if you have set the WEBJOBS_ROOT_PATH value, the deployment folder is still d:homesitewwwrootapp_datajobs, then you couldn't find it on the portal WebJob page.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 25 at 5:41









          George ChenGeorge Chen

          2,3441110




          2,3441110












          • @vmasanas, if this works, please mark it as the answer. Thanks.

            – George Chen
            Mar 25 at 7:46

















          • @vmasanas, if this works, please mark it as the answer. Thanks.

            – George Chen
            Mar 25 at 7:46
















          @vmasanas, if this works, please mark it as the answer. Thanks.

          – George Chen
          Mar 25 at 7:46





          @vmasanas, if this works, please mark it as the answer. Thanks.

          – George Chen
          Mar 25 at 7:46



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55322131%2fdeploying-azure-webjobs%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript