I have a list of tibbles that can change in length over time. Each tibble has the same columns. If I wanted to bind_rows() on my list of connections I get the following error:
Trying this on a list that has 28 DB tibbles resulted in 10.89 seconds for the reduce method on 9.7 seconds for the collecting per iteration. I think my assumption of binding rows on the DB side would be faster. Still not quite sure how its slower though. Apologies for the lack of reprex. I haven't had to make a DB-related reprex before
If there is a better method I would love to see it!