Skip to content

Commit 8b40273

Browse files
committed
webjobs
1 parent c45e0ba commit 8b40273

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

articles/app-service/webjobs-create.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ description: Learn how to use WebJobs to run background tasks in Azure App Servi
44

55
ms.assetid: af01771e-54eb-4aea-af5f-f883ff39572b
66
ms.topic: conceptual
7-
ms.date: 7/30/2023
7+
ms.date: 3/01/2024
88
author: msangapu-msft
99
ms.author: msangapu
10-
ms.reviewer: cephalin;suwatch;pbatum;naren.soni;glenga
10+
ms.reviewer: cephalin;suwatch;pbatum;naren.soni;
1111
adobe-target: true
1212
adobe-target-activity: DocsExp–386541–A/B–Enhanced-Readability-Quickstarts–2.19.2021
1313
adobe-target-experience: Experience B
@@ -22,16 +22,28 @@ Deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload a
2222
If instead of the Azure App Service, you're using Visual Studio to develop and deploy WebJobs, see [Deploy WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md).
2323

2424
## Overview
25-
WebJobs is a feature of [Azure App Service](index.yml) that enables you to run a program or script in the same instance as a web app, API app, or mobile app. There's no extra cost to use WebJobs.
25+
WebJobs is a feature of [Azure App Service](index.yml) that enables you to run a program or script in the same instance as a web app. There's no extra cost to use WebJobs.
2626

27-
You can use the Azure WebJobs SDK with WebJobs to simplify many programming tasks. WebJobs aren't supported for App Service on Linux yet. For more information, see [What is the WebJobs SDK](https://github.com/Azure/azure-webjobs-sdk/wiki).
27+
You can use the Azure WebJobs SDK with WebJobs to simplify many programming tasks. For more information, see [What is the WebJobs SDK](https://github.com/Azure/azure-webjobs-sdk/wiki).
2828

2929
Azure Functions provides another way to run programs and scripts. For a comparison between WebJobs and Functions, see [Choose between Flow, Logic Apps, Functions, and WebJobs](../azure-functions/functions-compare-logic-apps-ms-flow-webjobs.md).
3030

31+
32+
3133
## WebJob types
3234

33-
The following table describes the differences between *continuous* and *triggered* WebJobs.
35+
### <a name="acceptablefiles"></a>Supported file types for scripts or programs
36+
37+
The following file types are supported:
38+
39+
| App type | Windows code | Windows container | Linux code | Linux container |
40+
|----------|--------------|-------------------|------------|-----------------|
41+
| Supported file types |.cmd, .bat, .exe (using Windows cmd)<br>.ps1 (using PowerShell)<br>.sh (using Bash)<br>.php (using PHP)<br>.py (using Python)<br>.js (using Node.js)<br>.jar (using Java)<br>|Linux code types | Linux container types |
42+
|Description|win code | win cont | linux code | linux cont |
43+
44+
### Continuous vs. triggered WebJobs
3445

46+
The following table describes the differences between *continuous* and *triggered* WebJobs:
3547

3648
|Continuous |Triggered |
3749
|---------|---------|
@@ -42,17 +54,7 @@ The following table describes the differences between *continuous* and *triggere
4254

4355
[!INCLUDE [webjobs-always-on-note](../../includes/webjobs-always-on-note.md)]
4456

45-
## <a name="acceptablefiles"></a>Supported file types for scripts or programs
46-
47-
The following file types are supported:
4857

49-
* .cmd, .bat, .exe (using Windows cmd)
50-
* .ps1 (using PowerShell)
51-
* .sh (using Bash)
52-
* .php (using PHP)
53-
* .py (using Python)
54-
* .js (using Node.js)
55-
* .jar (using Java)
5658

5759
## <a name="CreateContinuous"></a> Create a continuous WebJob
5860

0 commit comments

Comments
 (0)