Uploaded image for project: 'Accumulo'
  1. Accumulo
  2. ACCUMULO-731

Rework API's To Use java.nio Style Buffers

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Major
    • Resolution: Duplicate
    • None
    • None
    • client
    • None

    Description

      I wanted to start a dialog around modernizing some of the Accumulo API's to use NIO style buffers instead of the current access patterns.

      Using ByteBuffers, CharBuffers, etc. can have a substantial impact on reducing garbage collector load and make it easier to deploy Accumulo on lower-performance hardware. Additionally, a large number of projects have begun moving their IO utilities to these classes so this will increase interoperability with those projects (such as Avro) and will also ease the implementation of implementing various serialization and deserialization protocols on top of Key and Value types for projects such as Typo. It will also simplify the existing implementation of the client API by implementing Key and Value directly on top of the TKey and TValue types.

      The following is suggested:

      • Deprecate the encode(byte[]) and decode(byte[]) methods of TypedValueCombiner.Encoder or add a generic supertype to these so there can be "clean" forward-compatible implementations while preserving backward-compatibility
      • Add encode(ByteBuffer) and decode(ByteBuffer) methods to TypedValueCombiner.Encoder
      • Add constructors and access methods to Key and Value that utilize ByteBuffer
      • Deprecate all the non-nio-based accessors and setters on Key and Value or add a generic supertype so that you can have backwards-compatible subclasses which can be deprecated.

      Attachments

        Issue Links

          Activity

            People

              ekohlwey Ed Kohlwey
              ekohlwey Ed Kohlwey
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: