GitHub user Xuanwo added a comment to the discussion: Operator concurrency
Thank you for sharing the code. We don't have internal locks for b2, so it shouldn't be related to the operator. I have two questions: - It seems image handling is CPU-intensive work. How long will it take? If it takes more than 20ms, it's better to move it outside the async function block to avoid blocking the entire async runtime. Please try using `spawn_blocking` instead. - How does `upload_image` been used outside? GitHub link: https://github.com/apache/opendal/discussions/5401#discussioncomment-11486893 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
