Skip to content

Commit a482feb

Browse files
committed
update ilnks
1 parent d4e639e commit a482feb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/app-service/overview-webjobs.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ WebJobs are a good fit when:
2222
- You want to deploy and manage background tasks together with your app.
2323
- You don't require a separate scaling model or event-based triggers beyond basic scheduling or queue polling.
2424

25-
For more scalable, independently hosted, or event-driven workloads, consider using [Azure Functions](https://learn.microsoft.com/azure/azure-functions/functions-overview).
25+
For more scalable, independently hosted, or event-driven workloads, consider using [Azure Functions](../azure-functions/functions-overview.md).
2626

2727
## Key capabilities
2828

@@ -38,7 +38,7 @@ For more scalable, independently hosted, or event-driven workloads, consider usi
3838
WebJobs come in three main types:
3939

4040
- **Triggered WebJobs**: Run on demand or in response to specific events. You can trigger them manually or from a service like Azure Storage.
41-
- **Scheduled WebJobs**: A specialized type of triggered WebJob that runs on a defined schedule using a `settings.job` file with [NCRONTAB expressions](https://learn.microsoft.com/en-us/azure/app-service/webjobs-create#schedule-a-triggered-webjob).
41+
- **Scheduled WebJobs**: A specialized type of triggered WebJob that runs on a defined schedule using a `settings.job` file with [NCRONTAB expressions](webjobs-create.md#schedule-a-triggered-webjob).
4242
- **Continuous WebJobs**: Run persistently in the background while your App Service app is running. Ideal for queue polling or background monitoring tasks.
4343

4444

@@ -80,7 +80,7 @@ WebJobs scale together with your App Service plan. If your app is configured to
8080
- **Triggered WebJobs** will run on a single instance by default.
8181
- **Continuous WebJobs** can be configured to run on all instances or a single one using the `WEBJOBS_RUN_ONCE` setting.
8282

83-
If you need independently scalable or event-driven execution, [Azure Functions](https://learn.microsoft.com/azure/azure-functions/functions-overview) may be more appropriate.
83+
If you need independently scalable or event-driven execution, [Azure Functions](../azure-functions/functions-overview) may be more appropriate.
8484

8585
## Best practices
8686

@@ -102,8 +102,8 @@ If you need independently scalable or event-driven execution, [Azure Functions](
102102

103103
## Related guidance
104104

105-
- [Background jobs best practices – Azure Architecture Center](https://learn.microsoft.com/azure/architecture/best-practices/background-jobs)
106-
- [Develop WebJobs using Visual Studio](develop-webjobs-vs.md)
105+
- [Background jobs best practices – Azure Architecture Center](../architecture/best-practices/background-jobs)
106+
- [Develop WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md)
107107
- [Get started with the WebJobs SDK](webjobs-sdk-get-started.md)
108108
- [Use the WebJobs SDK to build advanced jobs](webjobs-sdk-how-to.md)
109109
- [Kudu WebJobs reference on GitHub](https://github.com/projectkudu/kudu/wiki/WebJobs)

articles/app-service/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ items:
466466
- name: Overview
467467
href: overview-webjobs.md
468468
- name: Background jobs best practices (Architecture Center)
469-
href: https://learn.microsoft.com/azure/architecture/best-practices/background-jobs?toc=/azure/app-service/toc.json&bc=/azure/app-service/breadcrumb/toc.json
469+
href: ../architecture/best-practices/background-jobs?toc=/azure/app-service/toc.json&bc=/azure/app-service/breadcrumb/toc.json
470470
displayName: WebJobs overview
471471
- name: WebJobs Quickstart
472472
href: quickstart-webjobs.md

0 commit comments

Comments
 (0)