You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "James Taylor (JIRA)" <ji...@apache.org> on 2015/12/16 03:35:46 UTC

[jira] [Created] (HBASE-14989) Mutation.getWriteToWAL is backwards

James Taylor created HBASE-14989:
------------------------------------

             Summary: Mutation.getWriteToWAL is backwards
                 Key: HBASE-14989
                 URL: https://issues.apache.org/jira/browse/HBASE-14989
             Project: HBase
          Issue Type: Bug
            Reporter: James Taylor


The implementation of the deprecated getWriteToWAL is backwards. It should return true if this.durability == Durability.SYNC_WAL:
{code}
/**
   * @deprecated Use {@link #getDurability()} instead.
   * @return true if edits should be applied to WAL, false if not
   */
  @Deprecated
  public boolean getWriteToWAL() {
    return this.durability == Durability.SKIP_WAL;
  }
{code}

For example, if mutation.durability is Durability.SYNC_WAL and the following code is called {{clonedMutation.setWriteToWAL(mutation.getWriteToWAL())}}, it will disable writing to the WAL for clonedMutation.



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