Slackbot
03/01/2024, 4:23 PMStefan Krawczyk
03/01/2024, 4:35 PMHi, I got very confused about Parallel Execution, I don’t understand when the local or remote executor is called, and I cant find doc about executor(SynchronousLocalTaskExecutor / MultiProcessingExecutor). My understanding is parallel parts is executed by remote and before and after is local.yep that’s fairly correct. Local runs the “orchestration”, “remote” is what “tasks” (i.e. a function) are distributed to.
Roy Kid
03/01/2024, 4:38 PMStefan Krawczyk
03/01/2024, 4:38 PMStefan Krawczyk
03/01/2024, 4:39 PMRoy Kid
03/01/2024, 4:40 PMpysqa
to submit it. I hope I can make some progress tonight😃Stefan Krawczyk
03/01/2024, 4:40 PMRoy Kid
03/01/2024, 4:41 PMThierry Jean
03/01/2024, 11:30 PMh_diskcache.DiskCacheAdapter
, you can actually specify the list of nodes you care about caching via a list of node names (cache_vars: List[str]
). The default is all nodes.
DiskCache is robust for parallel usage of the cache since each transaction is atomic: https://grantjenks.com/docs/diskcache/#comparisonsStefan Krawczyk
03/01/2024, 11:41 PM