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

Improve DefaultFormatter for reuse and object creation

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Trivial
    • Resolution: Fixed
    • 1.5.1, 1.6.0
    • 1.5.2, 1.6.1, 1.7.0
    • shell

    Description

      The DefaultFormatter is the class that is used to convert an Entry<Key,Value> to the line of text displayed in the shell. Most notably, it encodes non-printable ASCII data as hex.

      For users who want to implement their own Formatter, they do not have access to the same formatting methods that the DefaultFormatter uses because of the visibility modifiers on the methods. These methods should be available for use by other classes. Letting classes extend the DefaultFormatter would be even better.

      Additionally, in the DefaultFormatter, in the method public static String formatEntry(Entry<Key,Value>, DateFormat), a StringBuilder is used to reduce the number of intermediate String objects that are created for each concatenation; however, the methods to get each component of the Key will create a new Text object each time.

      Method invocations like

      key.getRow()
      

      Should be replaced with:

      Text buffer = new Text();
      key.getRow(buffer);
      

      Where a single Text object is reused for the entire method.

      Attachments

        1. ACCUMULO-2832.patch
          2 kB
          Jacob Meisler

        Activity

          People

            meislerj Jacob Meisler
            elserj Josh Elser
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: