Got this in a relatively small table (22 records).
The automation from my perspective is a simple one - I want to change a relationship field automatically for those 22 records. It should look up the linked company, then search for the client briefing record for that company and link it with the record. See the flow:
Thanks a lot for sharing this and for the detailed description!
We haven’t encountered this specific error before, so it’s great that you found a workaround for now. However, we’d love to better understand the root cause to make sure it doesn’t happen again — either for you or others.
Would it be possible for you to grant us temporary access to the relevant workspace? That would help us a lot in reproducing the issue and investigating it in more detail.
Hi @Leo yes, we will give you access later today. @Eric_Scherlich experienced the same issue in a totally different context and organisation today as well.
Just one more thing to try for everyone experiencing this bug. In my case it might be related to a loop, where your search or collect stuff. I was of the opinion, that only the loop value was being worked on - but apparently the array grew bigger and bigger. Add a clear collected at the end of the loop, unless you want to build something big.
Good news: The team was able to provide and deploy a fix over the weekend. This behaviour should no longer occur.
Some background info:
While this issue appeared rather mysterious at first, it was easy to reproduce after @dirk_s provided some additional info. Indeed, all it took was:
Collect records, e.g. via a search action without a limit and yield a result set larger than one, 10-20 was already enough
Use a search action, specify a relation field filter and provide the previously collected records as input to the relation filter UI
The second action would then produce the observed error. Under the hood, the issue was that the underlying logic would send the whole records collection as a filter input, instead of just using the IDs. This would indeed lead to an unexpectedly large request and the error.
Now, only IDs will be provided and also large collections should not lead to this error anymore.