[
https://issues.apache.org/jira/browse/HBASE-2787?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jean-Daniel Cryans resolved HBASE-2787.
---------------------------------------
Resolution: Fixed
Committed straight to trunk, flushCommits is now true by default and writeToWAL
is now configured correctly.
> PE is confused about flushCommits
> ---------------------------------
>
> Key: HBASE-2787
> URL: https://issues.apache.org/jira/browse/HBASE-2787
> Project: HBase
> Issue Type: Bug
> Reporter: Jean-Daniel Cryans
> Assignee: Jean-Daniel Cryans
> Fix For: 0.21.0
>
>
> flushCommits is currently false by default, oh and:
> {code}
> final String flushCommits = "--flushCommits=";
> if (cmd.startsWith(flushCommits)) {
> this.flushCommits =
> Boolean.parseBoolean(cmd.substring(flushCommits.length()));
> continue;
> }
> final String writeToWAL = "--writeToWAL=";
> if (cmd.startsWith(writeToWAL)) {
> this.flushCommits =
> Boolean.parseBoolean(cmd.substring(writeToWAL.length()));
> continue;
> }
> {code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.