Hey, I'm getting into Effect now and building a simple script to migrate data from one service to another. I want to apply basic retrying and limit the amount of data fetched from the service, while also limiting the amount sent to the other service (FIFO works great here).
Should I use the queue primitive and then create a "while true" loop to process that data with Effect.retry on top of it?