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:
Michael Stack 2012-09-27 00:17:04 +00:00
parent 78c811f419
commit f386d46213
1 changed files with 1 additions and 1 deletions

View File

@ -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();