why is random testing effective for partition tolerance
play

Why Is Random Testing Effective for Partition Tolerance Bugs? Rupak - PowerPoint PPT Presentation

Why Is Random Testing Effective for Partition Tolerance Bugs? Rupak Majumdar, Filip Niksic Max Planck Institute for Software Systems (MPI-SWS) Despite Many Formal Approaches Despite Many Formal Approaches practitioners test their


  1. Why Is Random Testing Effective for Partition Tolerance Bugs? Rupak Majumdar, Filip Niksic Max Planck Institute for Software Systems (MPI-SWS)

  2. Despite Many Formal Approaches…

  3. Despite Many Formal Approaches… …practitioners test their code

  4. Despite Many Formal Approaches… …practitioners test their code …by providing random inputs.

  5. Despite Many Formal Approaches… …practitioners test their code …by providing random inputs. And despite our best judgement,

  6. Despite Many Formal Approaches… …practitioners test their code …by providing random inputs. And despite our best judgement, …testing is surprisingly e ff ective in finding bugs .

  7. Despite Many Formal Approaches… …practitioners test their code …by providing random inputs. And despite our best judgement, …testing is surprisingly e ff ective in finding bugs . We explore this unexpected e ff ectiveness 
 in testing distributed systems under partition faults.

  8. Jepsen: Call Me Maybe A framework for black-box testing of distributed systems 
 by randomly inserting network partition faults Analyses on http://jepsen.io/: etcd, Postgres, Redis, Riak, MongoDB, Cassandra, Kafka, RabbitMQ, Consul, Elasticsearch, Aerospike, Zookeeper, Chronos…

  9. 1. General Random Testing Framework 2. Randomly Testing Distributed Systems 3. Wider Context: Combinatorial Testing

  10. Tests and Goal Coverage Tests T Goals G

  11. Tests and Goal Coverage A test covers 
 some goals Tests T Goals G

  12. Tests and Goal Coverage A test covers 
 some goals Tests T Goals G Covering family = Set of tests that cover all goals

  13. Tests and Goal Coverage A test covers 
 some goals Tests T Goals G Covering family = Set of tests that cover all goals “Small” covering families = E ffi cient testing

  14. Random Testing Pick a random test from T Fix a goal from G Suppose P[ covers ] ≥ p Characterize covering families with respect to p and |G|

  15. Probabilistic Method Let G be the set of goals and P[ random covers ] ≥ p Theorem. There exists a covering family of size p -1 log|G| .

  16. Probabilistic Method Let G be the set of goals and P[ random covers ] ≥ p Theorem. There exists a covering family of size p -1 log|G| . Proof. P[ random does not cover ] ≤ 1 - p

  17. Probabilistic Method Let G be the set of goals and P[ random covers ] ≥ p Theorem. There exists a covering family of size p -1 log|G| . Proof. P[ random does not cover ] ≤ 1 - p P[ K independent do not cover ] ≤ (1 - p) K

  18. Probabilistic Method Let G be the set of goals and P[ random covers ] ≥ p Theorem. There exists a covering family of size p -1 log|G| . Proof. P[ random does not cover ] ≤ 1 - p P[ K independent do not cover ] ≤ (1 - p) K P[ K independent are not a covering family ] ≤ |G| (1 - p) K

  19. Probabilistic Method Let G be the set of goals and P[ random covers ] ≥ p Theorem. There exists a covering family of size p -1 log|G| . Proof. P[ random does not cover ] ≤ 1 - p P[ K independent do not cover ] ≤ (1 - p) K P[ K independent are not a covering family ] ≤ |G| (1 - p) K For K = p -1 log|G| , this probability is strictly less than 1 . Therefore, there must exist K tests that are a covering family!

  20. Probabilistic Method Let G be the set of goals and P[ random covers ] ≥ p Theorem. There exists a covering family of size p -1 log|G| . Theorem. For ϵ > 0 , a random family of p -1 log|G| + p -1 log ϵ -1 tests is a covering family with probability at least 1 - ϵ .

  21. Random Testing Framework 1. What are tests? 2. What are 
 testing goals? Tests T Goals G 3. What is the notion of coverage? 4. Can we bound P[ random covers ] ?

  22. 1. General Random Testing Framework 2. Randomly Testing Distributed Systems 3. Wider Context: Combinatorial Testing

  23. Ninjas in Training In a dojo in Kaiserslautern, n ninjas are in training. Training is complete if for every pair of ninjas, there is a round where they are in opposing teams. How many rounds make the training complete? … 1 2 3 n … Round 1: … Round 2:

  24. Ninjas in Training In a dojo in Kaiserslautern, n ninjas are in training. Training is complete if for every pair of ninjas, there is a round where they are in opposing teams. How many rounds make the training complete? … 1 2 3 n Round 1: … … Round 2:

  25. Ninjas in Training In a dojo in Kaiserslautern, n ninjas are in training. Training is complete if for every pair of ninjas, there is a round where they are in opposing teams. How many rounds make the training complete? … 1 2 3 n Round 1: … … Round 2:

  26. Ninjas in Training In a dojo in Kaiserslautern, n ninjas are in training. Training is complete if for every pair of ninjas, there is a round where they are in opposing teams. How many rounds make the training complete? … 1 2 3 n Round 1: … … Round 2:

  27. Ninjas in Training In a dojo in Kaiserslautern, n ninjas are in training. Training is complete if for every pair of ninjas, there is a round where they are in opposing teams. How many rounds make the training complete? … 1 2 3 n Round 1: … … Round 2:

  28. Ninjas in Training In a dojo in Kaiserslautern, n ninjas are in training. Training is complete if for every pair of ninjas, there is a round where they are in opposing teams. How many rounds make the training complete? … 1 2 3 n Round 1: … … Round 2:

  29. Ninjas in Training In a dojo in Kaiserslautern, n ninjas are in training. Training is complete if for every pair of ninjas, there is a round where they are in opposing teams. How many rounds make the training complete? … 1 2 3 n Round 1: … … Round 2:

  30. Ninjas in Training In a dojo in Kaiserslautern, n ninjas are in training. Training is complete if for every pair of ninjas, there is a round where they are in opposing teams. How many rounds make the training complete? • Naïve: O(n 2 ) • Can you do it in log n rounds?

  31. Ninjas in Training More generally, n ninjas are training in k teams. Training is complete if for every choice of k ninjas, there is a round where they are each in different team. How many rounds make the training complete? … 1 2 3 n … Round 1: … Round 2:

  32. Ninjas in Training More generally, n ninjas are training in k teams. Training is complete if for every choice of k ninjas, there is a round where they are each in different team. How many rounds make the training complete? … 1 2 3 n … Round 1: … Round 2:

  33. Ninjas in Training More generally, n ninjas are training in k teams. Training is complete if for every choice of k ninjas, there is a round where they are each in different team. How many rounds make the training complete? … 1 2 3 n … Round 1: … Round 2:

  34. Ninjas in Training More generally, n ninjas are training in k teams. Training is complete if for every choice of k ninjas, there is a round where they are each in different team. How many rounds make the training complete? … 1 2 3 n … Round 1: … Round 2:

  35. Ninjas in Training More generally, n ninjas are training in k teams. Training is complete if for every choice of k ninjas, there is a round where they are each in different team. How many rounds make the training complete? … 1 2 3 n … Round 1: … Round 2:

  36. Ninjas in Training More generally, n ninjas are training in k teams. Training is complete if for every choice of k ninjas, there is a round where they are each in different team. How many rounds make the training complete? • Naïve: O(n k ) • Can you do it in k k+1 (k!) -1 log n rounds?

  37. From Training Ninjas to 
 Distributed Systems with Partition Faults ninjas nodes in a network teams blocks in a partition rounds partitions covering family complete training

  38. Splitting Coverage Given n nodes and k ≤ n : • Tests are partitions of nodes into k blocks: P = {B 1 , …, B k } • Testing goals are sets of k nodes: S = {x 1 , …, x k } • P covers S if P splits S: x 1 ∈ B 1 , …, x k ∈ B k Covering families are called k-splitting families here 


  39. A Bug in Chronos • A distributed fault-tolerant job scheduler • Works in conjunction with Mesos and Zookeeper • Three special nodes: Chronos leader, Mesos leader, Zookeeper leader Mesos leader Zookeeper Chronos leader leader

  40. A Bug in Chronos • A distributed fault-tolerant job scheduler • Works in conjunction with Mesos and Zookeeper • Three special nodes: Chronos leader, Mesos leader, Zookeeper leader Mesos leader Zookeeper Chronos leader leader

  41. Splitting Coverage Given n nodes and k ≤ n : • Number of partitions with k blocks: � n ≈ k n k k ! ≈ n k • Number of sets of k nodes: � n � k k ! p = k n − k • Splitting a set with a random partition: k } ≈ k ! { n k k By the general theorem, there exists a k -splitting family 
 of size k k+1 (k!) -1 log n

  42. Effectiveness of Jepsen Theorem. For ϵ > 0 , a random family of partitions of size 
 k k+1 (k!) -1 log n + k k (k!) -1 log ϵ -1 is a k -splitting family with probability at least 1 - ϵ . For Chronos, with n = 5 , k = 2 , ϵ = 0.2 : a family of 10 randomly chosen partitions is splitting with probability 80%

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