I have begun consolidating and standardizing Prefect code that I reuse across projects. I decided to package them into my first Python package, prefecto. Learned a bunch of new tools on the way and would love some feedback!
🙌 17
a
Austin Weisgrau
06/21/2023, 8:06 PM
The batching seems great!! I'm going to experiment with it. The concurrent task runner reliably crashes if fed more than a few hundred tasks at a time, even if execution is limited by a semaphore. Have been meaning to write a script to do this kind of batching
👍 1
Austin Weisgrau
06/21/2023, 8:08 PM
Curious if you've run any tests to see how much slower execution is with the batch implementation
Austin Weisgrau
06/21/2023, 10:10 PM
In some informal experiments just now, it seems plenty fast. Good stuff!
❤️ 1
r
Robert Denham
06/28/2023, 2:24 AM
Just noticed this, and the batch implementation was just what I was looking for. Thanks for both writing and telling us about this @Dominic Tarro
🙌 1
b
Bryce Codell
08/07/2023, 4:27 PM
Came across this after running into the issue described here. The batching functionality was exactly what I needed - thanks for this @Dominic Tarro!