Skip to content

Commit 5e7d0a4

Browse files
author
ecfan
committed
Fix Acrolinx issues
1 parent f135391 commit 5e7d0a4

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

articles/logic-apps/concepts-schedule-automated-recurring-tasks-workflows.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: conceptual
88
ms.date: 02/14/2025
9+
# As an Azure Logic Apps developer, I want to understand how recurring schedules work for triggers.
910
---
1011

1112
# Schedules for recurring triggers in Azure Logic Apps workflows
@@ -38,7 +39,7 @@ This guide describes the capabilities for the Schedule-type built-in triggers an
3839

3940
## Run recurring workloads without creating multiple logic apps
4041

41-
You can schedule and run recurring workloads without creating a separate Consumption logic app for each scheduled job and running into the [limit on workflows per region and subscription](logic-apps-limits-and-config.md#definition-limits). Instead, you can either [create a Standard logic app with multiple workflows](create-single-tenant-workflows-azure-portal.md), or use the Consumption logic app pattern that's created by the [Azure QuickStart template: Logic Apps job scheduler](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.logic/logicapps-jobscheduler/).
42+
You can schedule and run recurring workloads without creating a separate Consumption logic app for each scheduled job and running into the [limit on workflows per region and subscription](logic-apps-limits-and-config.md#definition-limits). Instead, you can either [create a Standard logic app with multiple workflows](create-single-tenant-workflows-azure-portal.md), or use the Consumption logic app pattern that's created by the [Azure Quickstart Template: Logic Apps job scheduler](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.logic/logicapps-jobscheduler/).
4243

4344
The Azure Logic Apps job scheduler template creates a logic app named **CreateTimerJob** that calls a **TimerJob** logic app. You can then call the **CreateTimerJob** logic app as an API by making an HTTP request and passing a schedule as input for the request. Each call to the **CreateTimerJob** logic app also calls the **TimerJob** logic app, which creates a new **TimerJob** instance that continuously runs based on the specified schedule or until meeting a specified limit. That way, you can run as many **TimerJob** instances as you want without worrying about workflow limits because instances aren't individual logic app workflow definitions or resources.
4445

@@ -161,7 +162,7 @@ For more information, review the following documentation:
161162

162163
### Recurrence for managed triggers
163164

164-
For recurring managed triggers, such as Office 365 Outlook, Outlook.com, and so on, the schedule isn't the only driver that controls execution. The time zone determines only the initial start time. Subsequent runs depend on the recurrence schedule, the last trigger execution, and other factors that might cause run times to drift or produce unexpected behavior, for example:
165+
The schedule isn't the only driver that controls execution for recurring managed triggers such as Office 365 Outlook, Outlook.com, and so on. The time zone determines only the initial start time. Subsequent runs depend on the recurrence schedule, the last trigger execution, and other factors that might cause run times to drift or produce unexpected behavior, for example:
165166

166167
* Whether the trigger accesses a server that has more data, which the trigger immediately tries to fetch.
167168
* Any failures or retries that the trigger incurs.

articles/logic-apps/create-workflow-with-trigger-or-action.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ The following steps use the Azure portal, but you can also use the following too
195195

196196
1. From the actions list, select the action that you want. If more triggers exist that aren't shown, select **See more**.
197197

198-
1. If the **Create connection** pane appears, provide any necessary connection information, which differs based on the connector. When you're done, select **Sign in** or **Create new** to complete the connection.
198+
1. If the **Created connection** pane appears, provide any necessary connection information, which differs based on the connector. When you're done, select **Sign in** or **Create new** to complete the connection.
199199

200200
1. After the action information box appears, provide the necessary details for your selected action.
201201

@@ -217,37 +217,37 @@ The following Standard workflow example shows the **In-app** collections and con
217217

218218
:::image type="content" source="media/create-workflow-with-trigger-or-action/in-app-connectors-triggers-standard.png" alt-text="Screenshot shows Azure portal, designer for Standard logic app with blank stateful workflow, and In-app collections and connectors.":::
219219

220-
After you select a collection or connector, the individual triggers are grouped by collection or connector name and appear in ascending order, first numerically if any exist, and then alphabetically.
220+
After you select a collection or connector, triggers appear by collection or connector name.
221221

222-
The following example selected the **Schedule** operation collection and shows the triggers named **Recurrence** and **Sliding Window**:
222+
The following example shows the selected **Schedule** collection and its triggers:
223223

224224
:::image type="content" source="media/create-workflow-with-trigger-or-action/in-app-selected-connector-triggers.png" alt-text="Screenshot shows Azure portal, designer for Standard logic app with blank stateful workflow, and Schedule operation collection with Recurrence trigger.":::
225225

226226
The following example shows the **In-app** collections and connectors when you add an action:
227227

228228
:::image type="content" source="media/create-workflow-with-trigger-or-action/in-app-connectors-actions-standard.png" alt-text="Screenshot shows Azure portal, designer for Standard logic app stateful workflow with Recurrence trigger, pane named Add an action, and Runtime set to In-app.":::
229229

230-
The following example selected the **Azure Queue Storage** connector and shows the available actions:
230+
The following example shows the selected **Azure Queue Storage** connector and its actions:
231231

232232
:::image type="content" source="media/create-workflow-with-trigger-or-action/in-app-selected-connector-actions.png" alt-text="Screenshot shows Azure portal, designer for Standard logic app stateful workflow with Azure Queue Storage connector with actions.":::
233233

234234
### Shared (Azure) operations
235235

236-
The following The following Standard workflow example shows the **Shared** connectors gallery when you add a trigger:
236+
The following Standard workflow example shows the **Shared** connectors gallery when you add a trigger:
237237

238238
:::image type="content" source="media/create-workflow-with-trigger-or-action/shared-connectors-triggers-standard.png" alt-text="Screenshot shows Azure portal, designer for Standard logic app with blank stateful workflow, and Shared connectors with triggers.":::
239239

240-
After you select a collection or connector, the individual triggers are grouped by collection or connector name and appear in ascending order, first numerically if any exist, and then alphabetically.
240+
After you select a collection or connector, triggers appear by collection or connector name.
241241

242-
The following example selected the **365 Training** connector and shows the available triggers:
242+
The following example shows the selected **365 Training** connector and its triggers:
243243

244244
:::image type="content" source="media/create-workflow-with-trigger-or-action/shared-selected-connector-triggers.png" alt-text="Screenshot shows Azure portal, workflow designer, and 365 Training connector with triggers.":::
245245

246246
The following example shows the **Shared** connectors gallery when you add an action:
247247

248248
:::image type="content" source="media/create-workflow-with-trigger-or-action/shared-connectors-actions-standard.png" alt-text="Screenshot shows Azure portal, designer for Standard logic app stateful workflow, and Shared connectors with actions.":::
249249

250-
The following example selected the **365 Training** connector and shows the available actions:
250+
The following example shows the selected **365 Training** connector and its actions:
251251

252252
:::image type="content" source="media/create-workflow-with-trigger-or-action/shared-selected-connector-actions.png" alt-text="Screenshot shows Azure portal, workflow designer, and 365 Training connector with actions.":::
253253

0 commit comments

Comments
 (0)