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

I recently encountered an issue in one of our flow runs involving the Dataverse connector’s ‘List Rows’ action. The filter used for this action was ‘ownerid eq @userId.’ The flow was running smoothly for all users except one. Upon checking the row count for that particular user, I found it to be more than 1300. Although 1300 is not a large number, I realized that no columns were selected in the action, which meant that all columns were being retrieved, even though none of them were used in the subsequent steps! To resolve this, I simply added ‘accountid‘ to the list of selected columns, and the issue was resolved.

Leave a comment