Skip to content

Commit 55b93ba

Browse files
Update functions-bindings-azure-sql-trigger.md
1 parent 0360e7e commit 55b93ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/functions-bindings-azure-sql-trigger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ The following optional settings can be configured for the SQL trigger for local
548548
| Setting | Default| Description|
549549
|---------|---------|---------|
550550
|**MaxBatchSize** | 100 |The maximum number of changes processed with each iteration of the trigger loop before being sent to the triggered function.|
551-
|**PollingIntervalMs**| 1000 (1 second) | The delay in milliseconds between processing each batch of changes.|
551+
|**PollingIntervalMs** | 1000 | The delay in milliseconds between processing each batch of changes. (1000 ms is 1 second)|
552552
|**MaxChangesPerWorker**| 1000 | The upper limit on the number of pending changes in the user table that are allowed per application-worker. If the count of changes exceeds this limit, it might result in a scale-out. The setting only applies for Azure Function Apps with [runtime driven scaling enabled](#enable-runtime-driven-scaling).|
553553

554554
#### Example host.json file
@@ -589,7 +589,7 @@ The local.settings.json file stores app settings and settings used by local deve
589589
| Setting | Default| Description|
590590
|---------|---------|---------|
591591
|**Sql_Trigger_BatchSize** | 100 |The maximum number of changes processed with each iteration of the trigger loop before being sent to the triggered function.|
592-
|**Sql_Trigger_PollingIntervalMs**| 1000 (1 second) | The delay in milliseconds between processing each batch of changes.|
592+
|**Sql_Trigger_PollingIntervalMs** | 1000 | The delay in milliseconds between processing each batch of changes. (1000 ms is 1 second)|
593593
|**Sql_Trigger_MaxChangesPerWorker**| 1000 | The upper limit on the number of pending changes in the user table that are allowed per application-worker. If the count of changes exceeds this limit, it might result in a scale-out. The setting only applies for Azure Function Apps with [runtime driven scaling enabled](#enable-runtime-driven-scaling).|
594594

595595
#### Example local.settings.json file

0 commit comments

Comments
 (0)