Uploaded image for project: 'ZooKeeper'
  1. ZooKeeper
  2. ZOOKEEPER-4681

Uncommitted requests have been executed

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Critical
    • Resolution: Unresolved
    • 3.5.8
    • None
    • quorum
    • None

    Description

      Using a tool that I modifyed from Filip Niksic's zootester for testing ZooKeeper, I discovered the following scenario which causes uncommitted requests to be executed.

      Zab protocol has three rounds: PROPOSE, ACK, and COMMIT. By adding relevant code to the zookeeper source code,my tool can drop the PROPOSAL, ACK and COMMIT messages and collect the values of some variables of each server instance at the end of each round. Except affecting message reception, my code will not affect other actions of Zookeeper.

       

      Setup:

      ubuntu 22.04.2, jdk13.0.2, maven 3.9.0, ant 1.10.13.

      Replace directory called "zookeeper-server" in Zookeeper 3.5.8 with the "zookeeper-server" in my github repo. Ant the modified Zookeeper 3.5.8 to get zookeeper-3.5.8.jar. Replace zookeeper-3.5.8.jar downloaded by maven.

      Create a directory called "states" and a file called "scenarios". Write the path to test.properties in zoo-tester's resource directory.

      Use "-s scenario-X"(X = 1,2,3,4,5,6) as the startup parameter to run the main method of ZooTester.

       

      Base scenario:

      Initially, start an ensemble with 3 servers called A, B, and C, and initialize 2 znodes called /key0 and /key1, and set them to 0 and 1 respectively.

      1. Request to set /key0 to 1000 on 3 servers.
      2. (Optional) Isolate the proposal messages which leader send to 2 followers.
      3. (Optional) Isolate the ack messages which 2 followers send to leader.
      4. (Optional) Stop all servers and then restart them.
      5. (Optional) Read /key0 and /key1 in all servers respectively.
      6. Request to set /key1 to 1001 on 3 servers.
      7. (Optional) Stop all servers and then restart them.
      8. Read /key0 and /key1 in all servers respectively.

      Mark the execution step list [1,2,5,6,8] as scenario1, [1,2,4,5,6,8] as scenario2, [1,2,5,6,7,8] as scenario3, [1,2,4,5,6,7,8] as scenario4, [1,2,6,8] as scenario5 and [1,2,6,7,8] as scenario6, [1,3,5,6,8] as scenario7, [1,3,4,5,6,8] as scenario8, [1,3,5,6,7,8] as scenario9, [1,3,4,5,6,7,8] as scenario10, [1,3,6,8] as scenario11 and [1,3,6,7,8] as scenario12.

      The output of these 12 scenarios is placed in the attachment. As a comparison, I have also attached the results of scenario [1,5,6,8] where no message loss action was performed. We can see that the results have no problems.

      The typical case of a bug caused by dropping proposal message is scenario6. In the optional steps, scenario6 selects step2 and step7. By performing these two operations, we finally obtained the following result which violates data consistency: @ 0: /key0 -> 0, /key1 -> 1001; @ 1: /key0 -> 0, /key1 -> 1001; @ 2: /key0 -> 1000, /key1 -> 1001. 

      The typical case of a bug caused by dropping ack message is scenario7. In the optional steps, scenario7 selects step3 and step5. In this scenario, we obtained the following result which violates data consistency after step5: @ 0: /key0 -> 0, /key1 -> 1; @ 1: /key0 -> 1000, /key1 -> 1; @ 2: /key0 -> 1000, /key1 -> 1. 

      In addition, by comparing scenario2 and scenario3, we can find that restarting the cluster will affect the results. By comparing scenario1 and scenario5, we can find that step5, the operation of reading the content of the znode, also affects the results.

      Attachments

        1. zookeeper-no-message-loss.patch
          6 kB
          krystal he
        2. zookeeper-scenario12.patch
          6 kB
          krystal he
        3. zookeeper-scenario7.patch
          7 kB
          krystal he
        4. zookeeper-scenario9.patch
          7 kB
          krystal he
        5. zookeeper-scenario10.patch
          7 kB
          krystal he
        6. zookeeper-scenario11.patch
          7 kB
          krystal he
        7. zookeeper-scenario8.patch
          6 kB
          krystal he
        8. zookeeper-scenario5.patch
          7 kB
          krystal he
        9. zookeeper-scenario6.patch
          6 kB
          krystal he
        10. zookeeper-scenario2.patch
          6 kB
          krystal he
        11. zookeeper-scenario4.patch
          7 kB
          krystal he
        12. zookeeper-scenario3.patch
          8 kB
          krystal he
        13. zookeeper-scenario1.patch
          7 kB
          krystal he

        Activity

          People

            Unassigned Unassigned
            krystal7 krystal he
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated: