scalable and reliable data broadcast with kascade
play

Scalable and Reliable Data Broadcast with Kascade ephane Martin, - PowerPoint PPT Presentation

Context Related work Kascade Experimental validation Conclusion and future work Scalable and Reliable Data Broadcast with Kascade ephane Martin, Tomasz Buchert, Pierric Willemet, Olivier Richard (2) , St Emmanuel Jeanvoine, Lucas Nussbaum


  1. Context Related work Kascade Experimental validation Conclusion and future work Scalable and Reliable Data Broadcast with Kascade ephane Martin, Tomasz Buchert, Pierric Willemet, Olivier Richard (2) , St´ Emmanuel Jeanvoine, Lucas Nussbaum Algorille Team (Inria-Loria, F-54500, France) (2) MESCAL Team (LIG, F-38000,France) S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 1 / 20

  2. Context Related work Kascade Experimental validation Conclusion and future work Context Big Data Broadcast: Large amount of data From one storage To large number of nodes Fault tolerant Useful to: Distribute big data before analysis System image deployment in HPC Cluster S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 2 / 20

  3. Context Related work Kascade Experimental validation Conclusion and future work Challenges Efficient use of fat tree network Present in most cluster Cost-efficient Fault-tolerance One computer can have a problem → Many computers have problems Stream capability core switch top-of-the-rack switch nodes S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 3 / 20

  4. Context Related work Kascade Experimental validation Conclusion and future work Related work Network Layer multicast Binomial tree BitTorrent Pipelined Broadcast S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 4 / 20

  5. Context Related work Kascade Experimental validation Conclusion and future work Network Layer multicast IP multicast Support is usually disabled in network equipment Find a group address or method to share it High-throughput protocol UDP is unfair to another protocols Message delivering is not guaranteed ! → UDPCast provides: Acknowledgment → Generate too many packets to the master, it’s not scalable Forward Error Correction (FEC) → Configuration depends of packets lost amount InfiniBand multicast Not installed on all nodes (expensive) Same problem Conclusions Best in theory Not possible or efficient in practice S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 5 / 20

  6. Context Related work Kascade Experimental validation Conclusion and future work Protocols Binomial tree Transfer random part of file (entire file is in memory or hard drive) BitTorrent Verbose protocol Transfer random part of file Conclusions Not suitable S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 6 / 20

  7. Context Related work Kascade Experimental validation Conclusion and future work Pipelined Broadcast One time on each direction Topology aware Already existing projects: Not fault tolerant: Ka Dolly part of MPI Bcast primitive (Open MPI) 1 2 3 4 5 6 7 8 9 10 sending Fault tolerant: node receiving nodes Dolly+ → unmaintained and FT is not mentioned in their publication. S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 7 / 20

  8. Context Related work Kascade Experimental validation Conclusion and future work Our contributions: Kascade How does it work ? Overview of pipeline establishment Fault detection Recovery Collecting information Protocol is needed S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 8 / 20

  9. Context Related work Kascade Experimental validation Conclusion and future work Overview of data transfer pipeline (Kascade) Order the nodes 1 Deploy itself 2 → Efficient help with Taktuk (Parallel launcher) Establish the pipeline (open 3 TCP/IP connections) 1 2 3 4 5 6 7 8 9 10 sending Transfer the data 4 node receiving nodes Send report to the master 5 S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 9 / 20

  10. Context Related work Kascade Experimental validation Conclusion and future work Overview of data transfer pipeline (Kascade) Order the nodes 1 Deploy itself 2 → Efficient help with Taktuk (Parallel launcher) Establish the pipeline (open 3 TCP/IP connections) 1 2 3 4 5 6 7 8 9 10 sending Transfer the data 4 node receiving nodes Send report to the master 5 S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 9 / 20

  11. Context Related work Kascade Experimental validation Conclusion and future work Overview of data transfer pipeline (Kascade) Order the nodes 1 Deploy itself 2 → Efficient help with Taktuk (Parallel launcher) Establish the pipeline (open 3 TCP/IP connections) 1 2 3 4 5 6 7 8 9 10 sending Transfer the data 4 node receiving nodes Send report to the master 5 S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 9 / 20

  12. Context Related work Kascade Experimental validation Conclusion and future work Fault detection Two case of faults: Stream closed (error packet received) Black hole (nothing comes back) The sender handles error When the next node stops to read the stream → ping the next node ? S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 10 / 20

  13. Context Related work Kascade Experimental validation Conclusion and future work Recovery Add error to the report Try to connect to the next node Replay the lost messages Use buffer to resend lost message Ask the missing part to the master in worst case X S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 11 / 20

  14. Context Related work Kascade Experimental validation Conclusion and future work Collecting status at end of transfer Connecting to the master directly is not scalable or fault tolerant Using the pipeline to transmit a report is scalable and fault tolerant The last node forwards the report to the master The report reception implies the end of transfer 1 2 3 4 5 6 7 8 9 10 sending node receiving nodes S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 12 / 20

  15. Context Related work Kascade Experimental validation Conclusion and future work Protocol is needed n 1 n 2 n 3 The protocol TCP connection GET 0 TCP connection avoids the data size knowledge DATA x GET 0 DATA x DATA x (stream capability) . . DATA x . . DATA x . . permits prematurely end requested by user × TCP connection GET a distinguishes the report than data DATA x . . . improves the fault tolerance DATA y END (correct ending despite failures) REPORT z PASSED S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 13 / 20

  16. Context Related work Kascade Experimental validation Conclusion and future work Validation questions How do the various solutions perform and scale up to large number of nodes? How does Kascade perform on high-performance networks (10 Gbps Ethernet, IP over InfiniBand)? What is the impact of network topology and communication structure on performance? What it the impact of I/O performance on the overall performance? How does Kascade perform on large-scale (Internet-like) setups? How does Kascade perform on smaller files? How well does Kascade’s fault tolerance mechanism perform? S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 14 / 20

  17. Context Related work Kascade Experimental validation Conclusion and future work How do the various solutions perform and scale up to large number of nodes ? Kascade TakTuk/chain TakTuk/tree UDPCast MPI BCast 100 Throughput (MB/s) 2GB file transfer 1Gbps Ethernet 50 It scales 0 0 50 100 150 200 Number of clients S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 15 / 20

  18. Context Related work Kascade Experimental validation Conclusion and future work What is the impact of network topology and communication structure on performance ? Kascade TakTuk/chain TakTuk/tree MPI BCast Kascade/ordered 100 Shuffle order of nodes Throughput (MB/s) 2GB file transfer 1Gbps Ethernet 50 Topology awareness is important 0 0 50 100 150 200 Number of clients S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 16 / 20

  19. Context Related work Kascade Experimental validation Conclusion and future work How well does Kascade’s fault tolerance mechanism perform? Simultaneous ! ! ! S. Martin, T. Buchert, P. Willemet, O. Richard, E. Jeanvoine, L. Nussbaum Scalable and Reliable Data Broadcast with Kascade 17 / 20

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend