HBASE-766 FileNotFoundException trying to load HStoreFile 'data'
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@679210 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f84b20bdf5
commit
0330ea17c1
|
@ -390,7 +390,6 @@ public class HStore implements HConstants {
|
|||
}
|
||||
curfile = new HStoreFile(conf, fs, basedir, info.getEncodedName(),
|
||||
family.getName(), fid, reference);
|
||||
storeSize += curfile.length();
|
||||
long storeSeqId = -1;
|
||||
try {
|
||||
storeSeqId = curfile.loadInfo(fs);
|
||||
|
@ -435,6 +434,7 @@ public class HStore implements HConstants {
|
|||
continue;
|
||||
}
|
||||
}
|
||||
storeSize += curfile.length();
|
||||
|
||||
// TODO: Confirm referent exists.
|
||||
|
||||
|
|
Loading…
Reference in New Issue