Replies: 1 comment 2 replies
-
That's the idea behind plugins: https://wlandau.github.io/crew/articles/plugins.html. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Within the
future
ecosystem there is the ability to create an ad-hoc cluster of workers across several networked machines, and then allocate tasks to these workers in parallel (eg. https://future.futureverse.org/articles/future-3-topologies.html#an-ad-hoc-compute-cluster). Currently, it seems likecrew
supports distributing tasks across many local workers, or submitting tasks to a high-performance computing cluster viacrew.cluster
. Is it possible within the current structure ofcrew
andmirai
to allocate tasks to workers spread across several networked machines like withfuture
?My specific use-case is a bit unique (I have access to a large HPC, which has begun allocating resources at the node-level, rather than simply by cpu/core, necessitating parallelization beyond
crew.cluster
), but I think is more broadly generalizable to cases where a user has access to several networked machines, and wants to define a combined set of resources and then distribute tasks.Beta Was this translation helpful? Give feedback.
All reactions