Hi All, I'm writing custom scheduler which will be sending short-running tasks. I need those tasks to be properly isolated, that means I shouldn't run them in the same executor. Those tasks require large binary distributives and I suppose each run in a separate executor will spawn large sandboxes with copies of those distributives on disk. Is there an easy way to maintain isolation for those tasks meanwhile sharing a distributive between them?
Thanks, Egor

