HBASE-9437 hbase.regionserver.checksum.verify default is true
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1520634 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1f47ffb7fa
commit
3bd87232ef
|
@ -497,7 +497,7 @@ public class HRegionServer implements ClientProtos.ClientService.BlockingInterfa
|
|||
|
||||
// do we use checksum verification in the hbase? If hbase checksum verification
|
||||
// is enabled, then we automatically switch off hdfs checksum verification.
|
||||
this.useHBaseChecksum = conf.getBoolean(HConstants.HBASE_CHECKSUM_VERIFICATION, false);
|
||||
this.useHBaseChecksum = conf.getBoolean(HConstants.HBASE_CHECKSUM_VERIFICATION, true);
|
||||
|
||||
// check that the user has not set the "dfs.client.read.shortcircuit.skip.checksum" property.
|
||||
boolean shortCircuitSkipChecksum = conf.getBoolean(
|
||||
|
|
Loading…
Reference in New Issue