Azure 逻辑应用程序 - Dropbox 连接器文件大小限制
Azure Logic Apps - Dropbox Connector Filesize Limit
我有一个非常简单的逻辑应用程序,它列出了 Dropbox 文件夹中的文件,然后将它们复制到 Azure Blob 容器。效果很好!但是,当文件大于 50MB(如本例中的 100MB)时,我会收到以下错误:
{
"status": 413,
"message": "The file contains 100.514 megabytes which exceeds the maximum 50 megabytes.\r\nclientRequestId: <someid>",
"source": "dropbox-cus.azconn-cus.p.azurewebsites.net"
}
Dropbox 或 Blob Storage 似乎不存在该限制。有没有办法使连接器限制更大?
我转述了另一个答案的信息,该答案不直接针对相同的确切技术,但肯定与逻辑应用程序相关。
Logic App have maximum message size limits, and seems like you are hitting one of them.
So, if you need to use logic apps, you would need to have smaller messages.
也许您可以联系支持人员并要求他们提高您的限额。
团队确认 50 MB 是 Dropbox 连接器的默认文件大小限制,您无法更改。但是,作为一项功能,您的问题是很好的反馈,因此请在 Logic Apps - Connectors User Voice site.
提供有关您的用例的更多详细信息
这样,其他人就可以投票,这有助于团队确定优先顺序。谢谢!
我有一个非常简单的逻辑应用程序,它列出了 Dropbox 文件夹中的文件,然后将它们复制到 Azure Blob 容器。效果很好!但是,当文件大于 50MB(如本例中的 100MB)时,我会收到以下错误:
{
"status": 413,
"message": "The file contains 100.514 megabytes which exceeds the maximum 50 megabytes.\r\nclientRequestId: <someid>",
"source": "dropbox-cus.azconn-cus.p.azurewebsites.net"
}
Dropbox 或 Blob Storage 似乎不存在该限制。有没有办法使连接器限制更大?
我转述了另一个答案的信息,该答案不直接针对相同的确切技术,但肯定与逻辑应用程序相关。
Logic App have maximum message size limits, and seems like you are hitting one of them.
So, if you need to use logic apps, you would need to have smaller messages.
也许您可以联系支持人员并要求他们提高您的限额。
团队确认 50 MB 是 Dropbox 连接器的默认文件大小限制,您无法更改。但是,作为一项功能,您的问题是很好的反馈,因此请在 Logic Apps - Connectors User Voice site.
提供有关您的用例的更多详细信息这样,其他人就可以投票,这有助于团队确定优先顺序。谢谢!