Skip to content

Commit 0f163b0

Browse files
Merge pull request #262745 from ecfan/stop-manually
Azure Logic Apps: [Standard] Stop workflows manually and immediately
2 parents e79c9a1 + 1ef69e8 commit 0f163b0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

articles/logic-apps/edit-app-settings-host-settings.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,25 @@ These settings affect the throughput and capacity for single-tenant Azure Logic
158158
| `Jobs.BackgroundJobs.NumWorkersPerProcessorCount` | `192` dispatcher worker instances | Sets the number of *dispatcher worker instances* or *job dispatchers* to have per processor core. This value affects the number of workflow runs per core. |
159159
| `Jobs.BackgroundJobs.StatelessNumWorkersPerProcessorCount` | `192` dispatcher worker instances | Sets the number of *dispatcher worker instances* or *job dispatchers* to have per processor core, per stateless run. This value affects the number of concurrent workflow actions that are processed per run. |
160160

161+
Both of the following settings are used to manually stop and immediately delete the specified workflows in Standard logic app.
162+
163+
> [!NOTE]
164+
>
165+
> Use these settings with caution and only in non-production environments, such as load
166+
> or performance test environments, as you can't undo or recover from these operations.
167+
168+
| Setting | Default value | Description |
169+
|---------|---------------|-------------|
170+
| `Jobs.CleanupJobPartitionPrefixes` | None | Immediately deletes all the run jobs for the specified workflows. |
171+
| `Jobs.SuspendedJobPartitionPartitionPrefixes` | None | Stops the run jobs for the specified workflows. |
172+
173+
The following example shows the syntax for these settings where each workflow ID is followed by a colon (**:**) and separated by a semicolon (**;**):
174+
175+
```json
176+
"Jobs.CleanupJobPartitionPrefixes": "<workflow-ID-1>:; <workflow-ID-2:",
177+
"Jobs.SuspendedJobPartitionPrefixes": "<workflow-ID-1>:; <workflow-ID-2>:"
178+
```
179+
161180
<a name="recurrence-triggers"></a>
162181

163182
### Recurrence-based triggers

0 commit comments

Comments
 (0)