HBASE-6679 RegionServer aborts due to race between compaction and split
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1390781 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
78c811f419
commit
f386d46213
|
@ -140,7 +140,7 @@ public class HStore extends SchemaConfigured implements Store {
|
|||
* List of store files inside this store. This is an immutable list that
|
||||
* is atomically replaced when its contents change.
|
||||
*/
|
||||
private ImmutableList<StoreFile> storefiles = null;
|
||||
private volatile ImmutableList<StoreFile> storefiles = null;
|
||||
|
||||
List<StoreFile> filesCompacting = Lists.newArrayList();
|
||||
|
||||
|
|
Loading…
Reference in New Issue