Document Durable Task Scheduler client integration for Azure Functions#1160
Open
Copilot wants to merge 3 commits into
Open
Document Durable Task Scheduler client integration for Azure Functions#1160Copilot wants to merge 3 commits into
Copilot wants to merge 3 commits into
Conversation
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add documentation for client-side integration package in Durable Task Scheduler
Document Durable Task Scheduler client integration for Azure Functions
Jun 2, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Azure Functions integration documentation to include client/worker registration guidance for Durable Task Scheduler (DTS) via the new Aspire client integration package, and cross-links host-side DTS setup to this new client-facing section.
Changes:
- Added a new “Durable Task Scheduler client integration” section to the Azure Functions runtime configuration page, including install instructions, end-to-end wiring, keyed registrations, and configuration options.
- Documented configuration paths for
DurableTaskSchedulerSettings, including connection string conventions and named/keyed overrides. - Added a cross-link from the Azure Functions AppHost page’s DTS section to the new client integration section.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/frontend/src/content/docs/integrations/cloud/azure/azure-functions/azure-functions-host.mdx | Adds a cross-link from host-side DTS setup to the new client/worker registration documentation. |
| src/frontend/src/content/docs/integrations/cloud/azure/azure-functions/azure-functions-connect.mdx | Adds the new DTS client integration documentation, including install and configuration guidance plus examples. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This updates Azure Functions docs to cover the new Durable Task Scheduler client package introduced upstream, including the public client/worker registration APIs and configuration model. It also links host-side DTS setup guidance to the new client-side wiring documentation.
Client integration coverage (
azure-functions-connect.mdx)Aspire.Microsoft.DurableTask.AzureManaged.AddDurableTaskSchedulerWorkerAddKeyedDurableTaskSchedulerWorkerAddDurableTaskSchedulerClientAddKeyedDurableTaskSchedulerClientConfiguration + operational behavior
DurableTaskSchedulerSettingsand supported config paths:ConnectionStrings:{connectionName}Aspire:Microsoft:DurableTask:AzureManagedAspire:Microsoft:DurableTask:AzureManaged:{name}DisableHealthChecksandDisableTracingbehavior for health/telemetry control.End-to-end wiring + cross-link
Program.csflow showingAddDurableTaskScheduler(...)resource setup and client-side consumption.azure-functions-host.mdxDTS section to the new client integration section.