Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-3868

Use Hive‘s serde to parse HBase’s byte Data in LazyHBaseRow

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 0.9.0
    • None
    • HBase Handler
    • None

    Description

      In LazyHBaseRow,

        private Object uncheckedGetField(int fieldID) {
                // it is a column i.e. a column-family with column-qualifier
                byte [] res = result.getValue(colMap.familyNameBytes, colMap.qualifierNameBytes);
      
                if (res == null) {
                  return null;
                } else {
                  ref = new ByteArrayRef();
                  ref.setData(res);
                }
            if (ref != null) {
              fields[fieldID].init(ref, 0, ref.getData().length);
            }
        }
        For example, if the fields[fieldID] is Bigint, and ref stores HBase byte data (Long), 
        it will use LazyLong to parse this data and will return NULL value, 
        it should use Bytes.toLong(res.getData()) to parse this byte data
      

      Attachments

        Activity

          People

            Unassigned Unassigned
            binlijin Lijin Bin
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated: