We've got a bunch of write back tasks in our file system for pushing dirty data back to cloud storage. I'm trying to figure out if it's best to share a single Arc<Operator> among all these tasks or if we should be giving each task its own Operator instance. Is there even a difference between these two approaches when it comes to performance or how things work?
We've got a bunch of write back tasks in our file system for pushing dirty data back to cloud storage. I'm trying to figure out if it's best to share a single
Arc<Operator>among all these tasks or if we should be giving each task its ownOperatorinstance. Is there even a difference between these two approaches when it comes to performance or how things work?