HBASE-2969 missing sync in HTablePool.getTable()
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@995273 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cf43037b3b
commit
e144e8f32d
@ -511,6 +511,8 @@ Release 0.21.0 - Unreleased
|
|||||||
versions of a column (pranav via jgray)
|
versions of a column (pranav via jgray)
|
||||||
HBASE-2967 Failed split: IOE 'File is Corrupt!' -- sync length not being
|
HBASE-2967 Failed split: IOE 'File is Corrupt!' -- sync length not being
|
||||||
written out to SequenceFile
|
written out to SequenceFile
|
||||||
|
HBASE-2969 missing sync in HTablePool.getTable()
|
||||||
|
(Guilherme Mauro Germoglio Barbosa via Stack)
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1760 Cleanup TODOs in HTable
|
HBASE-1760 Cleanup TODOs in HTable
|
||||||
|
@ -23,6 +23,8 @@ import org.apache.hadoop.conf.Configuration;
|
|||||||
import org.apache.hadoop.hbase.HBaseConfiguration;
|
import org.apache.hadoop.hbase.HBaseConfiguration;
|
||||||
import org.apache.hadoop.hbase.util.Bytes;
|
import org.apache.hadoop.hbase.util.Bytes;
|
||||||
|
|
||||||
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
import java.util.concurrent.ConcurrentMap;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
@ -41,8 +43,8 @@ import java.util.Queue;
|
|||||||
* is {@link Integer#MAX_VALUE}.<p>
|
* is {@link Integer#MAX_VALUE}.<p>
|
||||||
*/
|
*/
|
||||||
public class HTablePool {
|
public class HTablePool {
|
||||||
private final Map<String, LinkedList<HTableInterface>> tables =
|
private final ConcurrentMap<String, LinkedList<HTableInterface>> tables =
|
||||||
Collections.synchronizedMap(new HashMap<String, LinkedList<HTableInterface>>());
|
new ConcurrentHashMap<String, LinkedList<HTableInterface>>();
|
||||||
private final Configuration config;
|
private final Configuration config;
|
||||||
private final int maxSize;
|
private final int maxSize;
|
||||||
private HTableInterfaceFactory tableFactory = new HTableFactory();
|
private HTableInterfaceFactory tableFactory = new HTableFactory();
|
||||||
@ -82,7 +84,7 @@ public class HTablePool {
|
|||||||
LinkedList<HTableInterface> queue = tables.get(tableName);
|
LinkedList<HTableInterface> queue = tables.get(tableName);
|
||||||
if(queue == null) {
|
if(queue == null) {
|
||||||
queue = new LinkedList<HTableInterface>();
|
queue = new LinkedList<HTableInterface>();
|
||||||
tables.put(tableName, queue);
|
tables.putIfAbsent(tableName, queue);
|
||||||
return createHTable(tableName);
|
return createHTable(tableName);
|
||||||
}
|
}
|
||||||
HTableInterface table;
|
HTableInterface table;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user