5
Microsoft Azure Training Shawn Ismail [email protected] http://www.cloudranger.net

Microsoft Azure Training - [26] Azure Websites - Part 3 - Azure Webjobs (Exam 70-533)

Embed Size (px)

Citation preview

Page 1: Microsoft Azure Training - [26] Azure Websites - Part 3 - Azure Webjobs  (Exam 70-533)

Microsoft Azure Training

Shawn [email protected]

http://www.cloudranger.net

Page 2: Microsoft Azure Training - [26] Azure Websites - Part 3 - Azure Webjobs  (Exam 70-533)

Shawn Ismail Cloud Architect

@shawnismail [email protected]

https://www.linkedin.com/in/shawnismail

http://www.2tolead.comhttp://www.cloudranger.net

Azure Websites - Part 3 - Azure Webjobs

Page 3: Microsoft Azure Training - [26] Azure Websites - Part 3 - Azure Webjobs  (Exam 70-533)

Azure Websites - Part 3 – Azure Webjobs

Azure Webjobs• Tasks that run in the backend of a Website (associated with a website)• Tasks can be application or scripts• Located on the same VM as the website and can be scaled up and down along with the Website• Jobs can be run as: On-demand, continuous and scheduled (one-time or recurring)• Job script format: .cmd, .bat, .ps1, python, node.js• Can only be created from Management Portal or by using PowerShell• Charged every time the job is run

Page 4: Microsoft Azure Training - [26] Azure Websites - Part 3 - Azure Webjobs  (Exam 70-533)

Azure Websites - Part 3 – Azure Webjobs

New-AzureWebsiteJob -Name "rangerwebsite" -JobName "MyTimerJob" -JobType Triggered -JobFile C:\temp\timer.zip

Start-AzureWebsiteJob -Name “rangerwebsite” -JobName "MyTimerJob" -JobType Triggered

Remove-AzureWebsiteJob -Name “rangerwebsite” -JobName "MyTimerJob" -JobType Triggered

Page 5: Microsoft Azure Training - [26] Azure Websites - Part 3 - Azure Webjobs  (Exam 70-533)

Azure Websites - Part 3 - Azure Webjobs

Training Site: http://www.cloudranger.net/azure-training

YouTube: https://www.youtube.com/c/CloudrangerNetwork

Twitter : @shawnismail

Email : [email protected]

LinkedIn: https://www.linkedin.com/in/shawnismail

http://www.2tolead.comhttp://www.cloudranger.net