Hi @MHScott.
This EC:102 error comes from the execution runner when an execution exceeds the memory limit.
A best-practice for workflow designs that processes large datasets would be to process a smaller amount of data in each execution, and/or use a Recursive Flow to re-call the flow to process the next batch of data. For example, if the flow retrieves a big list of assets, it could pull one page of data, process it, and then have the flow call itself again to process the next page, etc, until the processing is complete (with branching logic within the flow to check to see if there are more results to process). This should help to avoid running into execution runner memory limits.
You can find one example of a recursive flow using the "List of Assets" action pagination in the template "Custom field bulk edit".