一.CAP数据一致性(C),等同于所有节点访问同一份最新的数据副本;对数据更新具备高可用性(A);能容忍网络分区(P)。概念: 必须注意的是,P:Partition Tolerance 指的是 The system works well despite physical network partit...
分类:
其他好文 时间:
2014-12-03 16:54:03
阅读次数:
176
源地址:http://storm.apache.org/documentation/Fault-tolerance.html
本文主要介绍Storm作为容错系统的设计细节。
当worker死掉时会发生什么?
当worker死掉时, supervisor将重启它。 如果worker启动总是失败,则worker就不能发送心跳消息给Nimbus, 那Nimbus就会...
分类:
其他好文 时间:
2014-11-29 00:18:19
阅读次数:
175
免疫耐受(英语:immune tolerance或immunological tolerance)是指免疫系统对特定抗原的特异性无应答状态。[1]免疫耐受包括天然免疫耐受与诱导免疫耐受。天然免疫耐受或自身耐受(self tolerance)是指机体对自身组织成分不产生免疫应答。诱导免疫耐受(indu...
分类:
其他好文 时间:
2014-11-16 13:17:06
阅读次数:
276
Apache Samza is a distributed stream processing framework. It uses Apache
Kafka for messaging, and Apache
Hadoop YARN to provide fault tolerance, processor isolation, security, and resource manage...
分类:
其他好文 时间:
2014-11-02 16:36:31
阅读次数:
255
A. Practical Byzantine Fault Tolerance
1.What’s its checkpoint?
We will refer to the states produced by the execution of these requests as checkpoints and we will say that a checkpoint with...
分类:
其他好文 时间:
2014-09-21 10:34:30
阅读次数:
283
本文旨在进行Byzantine faults的容错,文章开门见山提出了新算法的优势:可工作在异步环境(如Internet),响应时间可以获得比之前算法超过一个数量级的提升。当然肯定会有limitation伴随,我们试着找出它们。
一开始文章就告诉我们有一个问题还没能解决:fault-tolerant privacy。
?Normal-Case Operation
提出了Buffered...
分类:
其他好文 时间:
2014-09-09 16:18:19
阅读次数:
179
本文理解来自论文All about Eve: Execute-Verify Replication for Multi-Core Servers
Eve是为了适应多核服务器而诞生的distributed replication方案。State machine replication旨在实现fault tolerance。由于让所有的replicas执行一样顺序的请求很困难,Eve采取...
分类:
其他好文 时间:
2014-09-07 21:14:05
阅读次数:
301
解:1.37 (define?tolerance?0.00001)
(define?(average?x?y)
??(/?(+?x?y)?2.0))
(define?(fixed-point?f?first-guess)
??(define?(close-enought??v1?v2)
????(<?(abs?(-?v1?v2)...
分类:
其他好文 时间:
2014-08-28 01:01:08
阅读次数:
238
一 CAP理论简述 海量数据管理中的一致性理论,包括CAP理论,BAS理论,数据一致性理论模型,以及现有的经典数据一致性技术。其中CAP(Consistency, Availability, Partition Tolerance,) 理论是NoSQL数据库管理系统构建的基础。 CAP定律说的是在....
分类:
其他好文 时间:
2014-08-24 01:30:01
阅读次数:
212
《programming computer vision with python 》中denoise 算法有误,从网上好了可用的代码贴上,以便以后使用。书中错误的代码:def denoise(im,U_init,tolerance=0.1,tau=0.125,tv_weight=100): m...
分类:
编程语言 时间:
2014-08-18 14:22:32
阅读次数:
429