Uploaded image for project: 'Sling'
  1. Sling
  2. SLING-6070

Reduce temporary storage required in JcrResourceListener, call reportChanges earlier

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • JCR Resource 2.8.0
    • JCR Resource 2.8.2
    • JCR
    • None

    Description

      As noticed in OAK-4581 (here) one advantage of using OakResourceListener over JcrResourceListener (hence the term 'optimize for oak' of the config parameter) is that OakResourceListener uses a NodeObserver, which calls added/removed/changed after each child traversal has finished. This will in turn be used by the OakResourceListener to call ObservationReporter.reportChanges. In the JcrResourceListener.onEvent case however this is not possible, as the events are delivered for each node/property individually, and they first have to be 'mapped' to ResourceChanges. This is currently done by keeping maps of added/removed/changed ResourceChanges and only after all events (that are passed in 1 onEvent) are processed is reportChanges invoked. This has the downside of a potentially very large temporary memory usage (these maps can get big).

      A suggested improvement is to follow the same pattern as is done in the OakResourceListener/NodeObserver pair: to forward the events (by callling reportChanges) as early as possible. Since Oak uses a breadth-first tree traversal when compiling the jcr events, this fact can be used to detect the earliest possible moment to forward events, which is as soon as a child traversal has finished. That way, only parent changes need to be kept, not the entire tree of changes.

      Attachments

        Issue Links

          Activity

            People

              cziegeler Carsten Ziegeler
              stefanegli Stefan Egli
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: