You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/logic-apps/edit-app-settings-host-settings.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,13 +48,18 @@ App settings in Azure Logic Apps work similarly to app settings in Azure Functio
48
48
| Setting | Default value | Description |
49
49
|---------|---------------|-------------|
50
50
|`AzureWebJobsStorage`| None | Sets the connection string for an Azure storage account. |
51
+
|`ServiceProviders.Sftp.FileUploadBufferTimeForTrigger`|`00:00:20` <br>(20 seconds) | Sets the buffer time to ignore files that have a last modified timestamp that's greater than the current time. This setting is useful when large file writes take a long time and avoids fetching data for a partially written file. |
52
+
|`ServiceProviders.Sftp.OperationTimeout`|`00:02:00` <br>(2 min) | Sets the time to wait before timing out on any operation. |
53
+
|`ServiceProviders.Sftp.ServerAliveInterval`|`00:30:00` <br>(30 min) | Send a "keep alive" message to keep the SSH connection active if no data exchange with the server happens during the specified period. For more information, see the [ServerAliveInterval setting](https://man.openbsd.org/ssh_config.5#ServerAliveInterval). |
54
+
|`ServiceProviders.Sftp.SftpConnectionPoolSize`|`2` connections | Sets the number of connections that each processor can cache. The total connections that you can cache is *ProcessorCount* multiplied by the setting value. |
55
+
|`ServiceProviders.MaximumAllowedTriggerStateSizeInKB`|`10` KB, which is ~1,000 files | Sets the trigger state entity size in kilobytes, which is proportional to the number of files in the monitored folder and is used to detect files. If the number of files exceeds 1,000, increase this value. |
51
56
|`ServiceProviders.Sql.QueryTimeout`|`00:02:00` <br>(2 min) | Sets the request timeout value for SQL service provider operations. |
52
57
|`WEBSITE_LOAD_ROOT_CERTIFICATES`| None | Sets the thumbprints for the root certificates to be trusted. |
53
58
|`Workflows.Connection.AuthenticationAudience`| None | Sets the audience for authenticating a managed (Azure-hosted) connection. |
54
59
|`Workflows.CustomHostName`| None | Sets the host name to use for workflow and input-output URLs, for example, "logic.contoso.com". For information to configure a custom DNS name, see [Map an existing custom DNS name to Azure App Service](../app-service/app-service-web-tutorial-custom-domain.md) and [Secure a custom DNS name with a TLS/SSL binding in Azure App Service](../app-service/configure-ssl-bindings.md). |
55
60
|`Workflows.<workflowName>.FlowState`| None | Sets the state for <*workflowName*>. |
56
61
|`Workflows.<workflowName>.RuntimeConfiguration.RetentionInDays`| None | Sets the amount of time in days to keep the run history for <*workflowName*>. |
57
-
|`Workflows.RuntimeConfiguration.RetentionInDays`|`90`<br>(90 days)| Sets the amount of time in days to keep workflow run history after a run starts. |
62
+
|`Workflows.RuntimeConfiguration.RetentionInDays`|`90` days | Sets the amount of time in days to keep workflow run history after a run starts. |
58
63
|`Workflows.WebhookRedirectHostUri`| None | Sets the host name to use for webhook callback URLs. |
59
64
60
65
<aname="manage-app-settings"></a>
@@ -332,6 +337,15 @@ These settings affect the throughput and capacity for single-tenant Azure Logic
332
337
|`ServiceProviders.ServiceBus.MessageSenderOperationTimeout`|`00:01:00` <br>(1 min) | Sets the timeout for sending messages with the built-in Service Bus operation. |
333
338
|`Runtime.ServiceProviders.ServiceBus.MessageSenderPoolSizePerProcessorCount`|`64` message senders | Sets the number of Azure Service Bus message senders per processor core to use in the message sender pool. |
334
339
340
+
<aname="built-in-sftp"></a>
341
+
342
+
### Built-in SFTP operations
343
+
344
+
| Setting | Default value | Description |
345
+
|---------|---------------|-------------|
346
+
|`Runtime.ServiceProviders.Sftp.MaxFileSizeInBytes`|`2147483648` bytes | Sets the maximum file size in bytes for the **Get file content (V2)** action. |
347
+
|`Runtime.ServiceProviders.Sftp.MaximumFileSizeToReadInBytes`|`209715200` bytes | Sets the maximum file size in bytes for the **Get file content** action. Make sure this value doesn't exceed the referenceable memory size because this action reads file content in memory. |
0 commit comments