Uploaded image for project: 'JBoss Transaction Manager'
  1. JBoss Transaction Manager
  2. JBTM-2549

CrashRecovery05_2_Test002 failure

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Major
    • 5.2.8.Final
    • 5.2.7.Final
    • Testing
    • None

    Description

      There are a number of failures in the CrashRecovery05_1 and CrashRecovery05_2 test groups with a similar root cause:

      Tests that use AfterCrashServiceImpl01#check_oper and AfterCrashServiceImpl02#check_oper with JdkORB fail because they make invalid assumptions about the return value of RecoveryCoordinator#replay_completion. The OTS spec says "This (replay_completion) non-blocking operation returns the current status of the transaction" but the check_oper() test assumes that the return value represents the transaction status after all resources have been replayed and therefore returns the wrong result to the requesting client. The fix is to ask the resources for their status after the replay_completion attempt (but also waiting for the resource to have been replayed). I tested the hypothesis by forcing a 200ms wait after issuing replay_completion on the RecoveryCoordinator object (but I will use a rendezvous for the actual fix).

      There is a second problem with the way these tests are coded since they ignore the fact that replay_completion reruns phase 2 on all resources whereas the test relies on it being done on only the requested resource). A test sequence is as follows:

      1. client starts a transaction
      2. asks service1 to create a resource1
      3. asks service2 to create a resource2
      4. client commits the transaction (one of which crashes during 2PC)
      5. restart the server (hosting the services)
      6. client asks service1 for the status of the first resource
      7. service1 invokes replay_completion on the RecoveryCoordinator for resource1
      8. this causes a recovery attempt on both resources
      9. client asks service2 for the status of the second resource
      10. service2 invokes replay_completion on the RecoveryCoordinator for resource2
      11. but this will fail because the transaction was completed during steps 7 and 8 so the
      12. transaction log no longer exists and the recovery attempt calls rollback on resource2

      The fix is to store the transaction Status with the resources and have the service ask the resources for the state (rather than the return value of the replay_completion request).

      Attachments

        Issue Links

          Activity

            People

              rhn-engineering-mmusgrov Michael Musgrove
              rhn-engineering-mmusgrov Michael Musgrove
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: