You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "ChiaPing Tsai (JIRA)" <ji...@apache.org> on 2016/10/31 03:08:58 UTC

[jira] [Created] (HBASE-16971) The passed durability of Append/Increment doesn’t be used in wal sync.

ChiaPing Tsai created HBASE-16971:
-------------------------------------

             Summary: The passed durability of Append/Increment doesn’t be used in wal sync.
                 Key: HBASE-16971
                 URL: https://issues.apache.org/jira/browse/HBASE-16971
             Project: HBase
          Issue Type: Bug
            Reporter: ChiaPing Tsai


We should pass the “effectiveDurability” to the doWALAppend() metohd.
{code:title=Bar.java|borderStyle=solid}
private Result doDelta(...) {
        Durability effectiveDurability = getEffectiveDurability(mutation.getDurability());
        Map<Store, List<Cell>> forMemStore =
            new HashMap<Store, List<Cell>>(mutation.getFamilyCellMap().size());
        // Reckon Cells to apply to WAL --  in returned walEdit -- and what to add to memstore and
        // what to return back to the client (in 'forMemStore' and 'results' respectively).
        WALEdit walEdit = reckonDeltas(op, mutation, effectiveDurability, forMemStore, results);
        // Actually write to WAL now if a walEdit to apply.
        if (walEdit != null && !walEdit.isEmpty()) {
          writeEntry = doWALAppend(walEdit, durability, nonceGroup, nonce);
        } else {
}
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)