HBASE-13518 Typo in hbase.hconnection.meta.lookup.threads.core parameter (Devaraj Das)
This commit is contained in:
parent
a725044644
commit
75bb815d99
|
@ -411,7 +411,7 @@ class ConnectionImplementation implements ClusterConnection, Closeable {
|
||||||
//the queue is full, a new thread will be started
|
//the queue is full, a new thread will be started
|
||||||
this.metaLookupPool = getThreadPool(
|
this.metaLookupPool = getThreadPool(
|
||||||
conf.getInt("hbase.hconnection.meta.lookup.threads.max", 128),
|
conf.getInt("hbase.hconnection.meta.lookup.threads.max", 128),
|
||||||
conf.getInt("hbase.hconnection.meta.lookup.threads.max.core", 10),
|
conf.getInt("hbase.hconnection.meta.lookup.threads.core", 10),
|
||||||
"-metaLookup-shared-", new LinkedBlockingQueue<Runnable>());
|
"-metaLookup-shared-", new LinkedBlockingQueue<Runnable>());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue