BadRequest. Http request failed as there is an error: 'Cannot write more bytes to the buffer than the configured maximum buffer size: 104857600.'

huangapple go评论46阅读模式
英文:

BadRequest. Http request failed as there is an error: 'Cannot write more bytes to the buffer than the configured maximum buffer size: 104857600.'

问题

我的逻辑应用触发器是循环触发,在循环触发器下会有获取文件内容,而在该获取文件内容时会出现这些错误。

英文:

My logic app trigger is recurrence under Recurrence get file content will be there on that get file content wil get these error BadRequest. Http request failed as there is an error: 'Cannot write more bytes to the buffer than the configured maximum buffer size: 104857600.'

答案1

得分: 1

  • “BadRequest. Http请求失败,因为存在错误:'无法将更多字节写入缓冲区,超过配置的最大缓冲区大小'通常发生在尝试在Logic Apps中读取或写入大文件时。”
  • “如MS 文档中提到,Logic Apps中的触发器或操作的最大输入或输出大小为104,857,600字节(105 MB)。”
  • “根据文档,为解决此问题,请在支持的触发器和操作的设置中启用**分块**选项,如下图所示。”
  • "根据 @MayankBargali-MSFTMS Q&A 文档,当前SharePoint连接器不支持消息分块。"
  • “作为替代方法,您可以将文件分成较小的块,然后使用循环或其他Logic App操作来分别处理每个块。”
  • “感谢 @ Debbies 博客。您可以参考此博客,对相同问题进行了解决,如我之前所说,通过分割或删除不必要的大数据。”
英文:
  • The error message "BadRequest. Http request failed as there is an error: 'Cannot write more bytes to the buffer than the configured maximum buffer size" typically occurs when trying to read or write large files in Logic Apps.

  • As mentioned in MS document Trigger or actions in logic Apps Maximum input or output size104,857,600 bytes (105 MB).

  • As per documentation to resolve this enable Allow
    Chunking

    option in settings of supported trigger and actions is the
    possible way as shown in below images.

BadRequest. Http request failed as there is an error: 'Cannot write more bytes to the buffer than the configured maximum buffer size: 104857600.'
BadRequest. Http request failed as there is an error: 'Cannot write more bytes to the buffer than the configured maximum buffer size: 104857600.'

As per @ MayankBargali-MSFTMS Q&A document currently SharePoint connector doesn't support message chunking.

  • As an alternative, you can divide the file into smaller chunks, then use a loop or other Logic App operations to process each chunk separately.
  • Thanks to @ Debbies blog .You can refer this blog the same issue is raised and resolved as i said earlier by splitting or removing unnecessary large data.

huangapple
  • 本文由 发表于 2023年3月21日 01:14:09
  • 转载请务必保留本文链接:https://go.coder-hub.com/75793338.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定