Uploaded image for project: 'OpenJPA'
  1. OpenJPA
  2. OPENJPA-1414

Performance improvements for detach

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.2.1
    • 1.2.2, 1.3.0, 2.0.0-beta
    • kernel
    • None

    Description

      In performance runs, a lot of the time is spent on detach processing. This is partially because a detach all is always done after an EntityManager clear() or close(). Therefore, we nee to make the detach processing as efficient as possible. There are 2 areas that we've found where this can be done:

      1 - DetachManager always attempts to load fields when detaching all. This does not appear to be necessary when the default DetachState option of "loaded" is used.

      2 - Detach goes through a bunch of processing to "detach version", which essentially copies the version to the entity that is to be returned. But, when detach all internal is, no copy is being made of the original entity. And, it appears that the original entity always has the version. So, this processing is not necessary in this scenario.

      To be cautious, a new Compatibility property option is being created - reloadOnDetach - to control both of these behavior. In 1.2.x, it will be true by default, so behavior will not be changed for current users. The user will have to set this property to false in order to get the performance benefit.

      If all goes well, the property will be set to false by default in 2.0.

      Attachments

        1. DM_1.2.x_patch.txt
          6 kB
          Dianne E. Richards
        2. DM_2.0_patch.txt
          5 kB
          Dianne E. Richards
        3. DM_testcase_patch.txt
          11 kB
          Dianne E. Richards
        4. 1.2.x_doc_patch.txt
          3 kB
          Dianne E. Richards
        5. 2.0_doc_patch.txt
          2 kB
          Dianne E. Richards

        Activity

          People

            dianner Dianne E. Richards
            dianner Dianne E. Richards
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: