- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Julia 如何公开容错 - 当节点出现故障(有意或无意)以及节点之间的通信出现故障时。
我看到一个 few mentions有这样一个功能,但无法确切地知道它是如何完成的。
最佳答案
在 pmap 文档字符串中,您可以看到这已经使用 retry_
实现了。关键字参数。
pmap([::AbstractWorkerPool], f, c...; distributed=true, batch_size=1,
on_error=nothing, retry_n=0, retry_max_delay=DEFAULT_RETRY_MAX_DELAY,
retry_on=DEFAULT_RETRY_ON) -> collection
... Any error stops pmap from processing the remainder of the collection. To override this behavior you can specify an error handling function via argument on_error which takes in a single argument, i.e., the exception. The function can stop the processing by rethrowing the error, or, to continue, return any value which is then returned inline with the results to the caller.
Failed computation can also be retried via retry_on, retry_n, retry_max_delay, which are passed through to retry as arguments retry_on, n and max_delay respectively. If batching is specified, and an entire batch fails, all items in the batch are retried.
Base.wrap_on_error
&
Base.wrap_retry
函数来扩展您的原始函数以处理错误。通过查看
pmap
的定义,您可以看到很多实现细节。在
https://github.com/JuliaLang/julia/blob/v0.5.0/base/pmap.jl .
关于parallel-processing - 分布式 Julia 中的弹性并行性和容错性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42656455/
我是一名优秀的程序员,十分优秀!