Uploaded image for project: 'REEF (Retired)'
  1. REEF (Retired)
  2. REEF-1157

Improve memory usage and performance of the Java group communications code

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Open
    • Minor
    • Resolution: Unresolved
    • None
    • None
    • GroupCommunications

    Description

      The Group Communications library in .NET has seen two areas of improvement that we should follow up on in the Java code:

      • Zero copies of the data being sent: the current code takes the user data, serializes it and then wraps it with the operator's envelope. That package is serialized and wrapped in the group communications envelope. Again, this is serialized and wrapped in the network service's envelope. That is what is eventually serialized and sent. All of these wrappings and serializations create copies of the (potentially large) user data. We should move to a zero-copy regime where the data is only serialized once.
      • Pipelining: Many times, group communications is applied with vector types, e.g. when summing up double[]. Those operations can be done on a per-dimension basis, which reduces the memory load and improves throughput.

      This JIRA shall serve as an anchor for work done in this area.

      Attachments

        Activity

          People

            Unassigned Unassigned
            markus.weimer Markus Weimer
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: