HBASE 3976; Revert
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1134925 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3fb6a0a7aa
commit
d1c070f707
|
@ -117,7 +117,6 @@ Release 0.91.0 - Unreleased
|
|||
(Alejandro Abdelnur)
|
||||
HBASE-3971 Compression.java uses ClassLoader.getSystemClassLoader()
|
||||
to load codec (Alejandro Abdelnur)
|
||||
HBASE-3976 Disable block cache on compactions (Karthik Sankarachary)
|
||||
HBASE-3979 Trivial fixes in code, document (Ming Ma)
|
||||
HBASE-3794 Ability to Discard Bad HTable Puts
|
||||
HBASE-3923 HBASE-1502 Broke Shell's status 'simple' and 'detailed'
|
||||
|
|
|
@ -1169,9 +1169,8 @@ public class Store implements HeapSize {
|
|||
LOG.error("Failed move of compacted file " + compactedFile.getPath(), e);
|
||||
return null;
|
||||
}
|
||||
result = new StoreFile(this.fs, p,
|
||||
false, // never cache during compaction
|
||||
this.conf, this.family.getBloomFilterType(), this.inMemory);
|
||||
result = new StoreFile(this.fs, p, blockcache, this.conf,
|
||||
this.family.getBloomFilterType(), this.inMemory);
|
||||
result.createReader();
|
||||
}
|
||||
this.lock.writeLock().lock();
|
||||
|
|
Loading…
Reference in New Issue