47 research outputs found

    Verification of interconnects

    Get PDF

    Verification Techniques for xMAS

    Get PDF

    Verification Techniques for xMAS

    Get PDF

    Practical View-Change-Less Protocol through Rapid View Synchronization

    Full text link
    The emergence of blockchain technology has renewed the interest in consensus-based data management systems that are resilient to failures. To maximize throughput of these systems, we have recently seen several prototype consensus solutions that optimize for throughput at the expense of overall implementation complexity, high costs, and reliability. Due to this, it remains unclear how these prototypes will perform in real-world environments. In this paper, we present the Practical View-Change-Less Protocol PVP, a high-throughput, simple, and reliable consensus protocol. Central to PVP is the combination of (1) a chained consensus design for replicating requests with a reduced message cost; (2) the novel Rapid View Synchronization protocol that enables robust and low-cost failure recovery; and (3) a high-performance concurrent consensus architecture in which independent instances of the chained consensus operate concurrently to process requests with high throughput and without single-replica bottlenecks. Due to the concurrent consensus architecture, PVP greatly outperforms traditional primary-backup consensus protocols such as PBFT (by up to 430%), Narwhal (by up to 296%), and HotStuff (by up to 3803%). Due to its reduced message cost, PVP is even able to outperform RCC, a state-of-the-art high-throughput concurrent consensus protocol, by up to 23%. Furthermore, PVP is able to maintain a stable and low latency and consistently high throughput even during failures.Comment: 16 pages, 14 figure

    Consensus in high performance computing

    Get PDF
    Dissertação de mestrado integrado em Informatics EngineeringFor a long time, developers and scientists designed consensus solutions that sacrificed thread scalability or load balance to decrease the latency. The appearance of networking and memory with microseconds requests reshaped how high-throughput consensus solutions are designed today. Today’s protocols must be multi-threaded to scale and seize the high hardware-level parallelism available. Moreover, their focus should be on not overloading the system instead of decreasing the latency. In the last decade, storage devices underwent an enormous development in their performance. The NVMe devices bought the request’s latency of solid-state devices to the microseconds range. Additionally, the software available to manage and operate these devices kept up with the hardware development. Libraries such as the Storage Performance Tool Kit (SPDK) appeared to ease the development of high-performance storage applications. In this context, this work aimed to answer a fundamental question: can NVMe Devices and SPDK improve the existing consensus-related work? This dissertation describes a solution for the distributed consensus problem that combines Disk Paxos (a consensus algorithm that relies upon writing and reading in a network of storage devices to achieve a distributed agreement) with NVMe Devices and SPDK. We conceived this solution using C++ and conducted a performance evaluation that, in the end, compared our solution with LibPaxos. Our findings describe the issues and benefits of the usage of these technologies to solve consensus. With our approach, we increase the understanding of the potential of these new technologies in enabling better solutions for the consensus problem in the future.Durante bastante tempo, as abordagens adotadas para resolver o consenso distribuĂ­do sacrificavam a escalabilidade do nĂșmero de “threads” ou o balanceamento da carga com o objetivo de diminuir a latĂȘncia da solução. O aparecimento de redes e latĂȘncias de memĂłria, com pedidos na ordem dos microssegundos, alterou a forma como os algoritmos de alto desempenho sĂŁo desenhos, hoje em dia. Os protocolos atuais tĂȘm de ser “multithreaded” para conseguirem escalar e aproveitar o elevado paralelismo existente do hardware disponĂ­vel. Para alĂ©m disso, o foco dos protocolos deve residir em evitar a sobrecarga do sistema e nĂŁo na redução da latĂȘncia. Na Ășltima dĂ©cada, houve um grande desenvolvimento nos dispositivos de armazenamento. Os discos “NVMe” introduziram latĂȘncias na gama dos microssegundos aumentando significativamente o desempenho dos discos de armazenamento. Adicionalmente, o “software” disponĂ­vel, para gerir e operar sobre estes dispositivos, tambĂ©m acompanhou o seu desenvolvimento. Bibliotecas, como o “Storage Performance Tool Kit (SPDK)”, apareceram para facilitar o desenvolvimento de aplicaçÔes de armazenamento de alto desempenho. Neste contexto, este trabalho teve, como principal objetivo, responder Ă  seguinte questĂŁo: Podem os dispositivos NVMe e o SPDK melhorar o trabalho existente sobre o consenso distribuĂ­do? Esta dissertação descreve uma solução para o consenso distribuĂ­do que combina o Disk Paxos, um algoritmo que resolve o consenso distribuĂ­do, atravĂ©s de leituras e escritas numa rede partilhada de discos, com os dispositivos NVMe e a biblioteca SPDK. Esta solução foi desenvolvida em C++ e foi realizada uma anĂĄlise de desempenho que, na sua fase final, compara a mesma com outra solução existente, o LibPaxos. A anĂĄlise desenvolvida descreve os problemas e os benefĂ­cios de usar estas tecnologias para resolver o problema de consenso distribuĂ­do. Com esta abordagem, foi possĂ­vel explorar e descobrir o potencial que as tecnologias usadas tĂȘm para possibilitar o desenvolvimento de melhores soluçÔes no futuro

    Compositional verification using interface recognizers/suppliers (IRS)

    Full text link
    ThÚse numérisée par la Direction des bibliothÚques de l'Université de Montréal

    Hermes: a Fast, Fault-Tolerant and Linearizable Replication Protocol

    Get PDF
    Today's datacenter applications are underpinned by datastores that are responsible for providing availability, consistency, and performance. For high availability in the presence of failures, these datastores replicate data across several nodes. This is accomplished with the help of a reliable replication protocol that is responsible for maintaining the replicas strongly-consistent even when faults occur. Strong consistency is preferred to weaker consistency models that cannot guarantee an intuitive behavior for the clients. Furthermore, to accommodate high demand at real-time latencies, datastores must deliver high throughput and low latency. This work introduces Hermes, a broadcast-based reliable replication protocol for in-memory datastores that provides both high throughput and low latency by enabling local reads and fully-concurrent fast writes at all replicas. Hermes couples logical timestamps with cache-coherence-inspired invalidations to guarantee linearizability, avoid write serialization at a centralized ordering point, resolve write conflicts locally at each replica (hence ensuring that writes never abort) and provide fault-tolerance via replayable writes. Our implementation of Hermes over an RDMA-enabled reliable datastore with five replicas shows that Hermes consistently achieves higher throughput than state-of-the-art RDMA-based reliable protocols (ZAB and CRAQ) across all write ratios while also significantly reducing tail latency. At 5% writes, the tail latency of Hermes is 3.6X lower than that of CRAQ and ZAB.Comment: Accepted in ASPLOS 202
    corecore