You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This article explains how to deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload an executable or script. WebJobs is a feature of [Azure App Service](index.yml) that allows you to run a program or script in the same instance as a web app. All app service plans support WebJobs. There's no extra cost to use WebJobs.
21
21
22
-
You can use the [Azure WebJobs SDK](https://github.com/Azure/azure-webjobs-sdk/wiki) with WebJobs to simplify many programming tasks.
23
-
24
22
> [!NOTE]
25
23
> WebJobs for *Windows container*, *Linux code*, and *Linux container* is in preview. WebJobs for Windows code is generally available and not in preview.
26
24
@@ -119,7 +117,7 @@ when making changes in one don't forget the other two.
|**Name**| myContinuousWebJob | A name that's unique within an App Service app. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`. |
120
+
|**Name**| myContinuousWebJob | A unique WebJob name. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`. |
123
121
|**File Upload**| ConsoleApp.zip | A *.zip* file that contains your executable or script file and any supporting files needed to run the program or script. The supported executable or script file types are listed in the [Supported file types](#acceptablefiles) section. |
124
122
|**Type**| Continuous | The [WebJob types](#webjob-types) are described earlier in this article. |
125
123
|**Scale**| Multi Instance | Available only for Continuous WebJobs. Determines whether the program or script runs on all instances or one instance. The option to run on multiple instances doesn't apply to the Free or Shared [pricing tiers](https://azure.microsoft.com/pricing/details/app-service/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio). |
@@ -149,7 +147,7 @@ when making changes in one don't forget the other two.
|**Name**| myTriggeredWebJob | A name that's unique within an App Service app. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`.|
150
+
|**Name**| myTriggeredWebJob | A unique WebJob name. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`.|
153
151
|**File Upload**| ConsoleApp1.zip | A *.zip* file that contains your executable or script file and any supporting files needed to run the program or script. The supported executable or script file types are listed in the [Supported file types](#acceptablefiles) section. |
154
152
|**Type**| Triggered | The [WebJob types](#webjob-types) are described previously in this article. |
155
153
|**Triggers**| Manual ||
@@ -181,7 +179,7 @@ when making changes in one don't forget the other two.
|**Name**| myScheduledWebJob | A name that's unique within an App Service app. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`. |
182
+
|**Name**| myScheduledWebJob | A unique WebJob name. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`. |
185
183
|**File Upload**| ConsoleApp.zip | A *.zip* file that contains your executable or script file and any supporting files needed to run the program or script. The supported executable or script file types are listed in the [Supported file types](#acceptablefiles) section. |
186
184
|**Type**| Triggered | The [WebJob types](#webjob-types) are described earlier in this article. |
187
185
|**Triggers**| Scheduled | For the scheduling to work reliably, enable the Always On feature. Always On is available only in the Basic, Standard, and Premium pricing tiers.|
0 commit comments