Home | About | Sematext search-lucene.com search-hadoop.com
clear query|facets|time Search criteria: .   Results from 1 to 10 from 10 (0.331s).
Loading phrases to help you
refine your search...
[HBASE-7437] Improve CompactSelection - HBase - [issue]
...1. Using AtomicLong makes CompactSelection simple and improve its performance.2. There are unused fields and methods.3. The fields should be private.4. Assertion in the method finishRequest ...
http://issues.apache.org/jira/browse/HBASE-7437    Author: Hiroshi Ikeda, 2013-05-16, 02:55
[HBASE-7434] Use generics appropriately in RPCEngine and reduce casts, with fixing a related bug of breaking thread-safety in HConnectionManager - HBase - [issue]
...In RpcEngine,  VersionedProtocol getProxy(Class<? extends VersionedProtocol> protocol, ...)should be  <T extends VersionedProtocol> T getProxy(Class<T> ...
http://issues.apache.org/jira/browse/HBASE-7434    Author: Hiroshi Ikeda, 2013-04-24, 06:13
[HBASE-6651] Improve thread safety of HTablePool - HBase - [issue]
...There are some operations in HTablePool accessing PoolMap in multiple places without any explicit synchronization. For example HTablePool.closeTablePool() calls PoolMap.values(), and calls P...
http://issues.apache.org/jira/browse/HBASE-6651    Author: Hiroshi Ikeda, 2013-04-24, 00:04
[HBASE-6639] Class.newInstance() can throw any checked exceptions and must be encapsulated with catching Exception - HBase - [issue]
...There are some logics to call Class.newInstance() without catching Exception,for example, in the method CoprocessorHost.loadInstance().Class.newInstance() is declared to throw InstantiationE...
http://issues.apache.org/jira/browse/HBASE-6639    Author: Hiroshi Ikeda, 2013-04-02, 11:19
[HBASE-7278] Some bugs of HTableDesciptor - HBase - [issue]
...There are some bugs of the class HTableDescriptor.public HTableDescriptor(final byte [] name) {    super();    setMetaFlags(this.name);    this.n...
http://issues.apache.org/jira/browse/HBASE-7278    Author: Hiroshi Ikeda, 2012-12-05, 05:34
[HBASE-7137] Improve Bytes to accept byte buffers which don't allow us to directly access their backing arrays - HBase - [issue]
...Inside HBase, it seems that there is the implicit assumption that byte buffers have backed arrays and are not read-only, and we can freely call ByteBuffer.array() and arrayOffset() without r...
http://issues.apache.org/jira/browse/HBASE-7137    Author: Hiroshi Ikeda, 2012-12-03, 22:05
[HBASE-7160] Improve IdLock and remove its minor defects - HBase - [issue]
...Combination of synchronizations and concurrent collections complicates the code, and it is hard to trace the code and to confirm its correctness. We should re-create the class and make it mo...
http://issues.apache.org/jira/browse/HBASE-7160    Author: Hiroshi Ikeda, 2012-11-26, 03:09
[HBASE-7128] Reduce annoying catch clauses of UnsupportedEncodingException that is never thrown because of UTF-8 - HBase - [issue]
...There are some codes that catch UnsupportedEncodingException, and log or ignore it because Java always supports UTF-8 (see the javadoc of Charset).The catch clauses are annoying, and they sh...
http://issues.apache.org/jira/browse/HBASE-7128    Author: Hiroshi Ikeda, 2012-11-16, 01:31
[HBASE-7013] Avoid reusing a input stream that stumbles on rpc-timeout in HBaseClient - HBase - [issue]
...HBASE-2937 introduces rpc-timeout and sets SO_TIMEOUT parameter of the socket to throw SocketTimeoutException. That means the exception can be thrown from any code that reads data directly/i...
http://issues.apache.org/jira/browse/HBASE-7013    Author: Hiroshi Ikeda, 2012-10-19, 07:43
[HBASE-6693] Typo in Javadoc of AggregationClient.rowCount() - HBase - [issue]
...FirstKEyValueFilter -> FirstKeyValueFilter...
http://issues.apache.org/jira/browse/HBASE-6693    Author: Hiroshi Ikeda, 2012-08-31, 21:50
Sort:
project
HBase (10)
Hadoop (2)
type
issue (10)
date
last 7 days (1)
last 30 days (3)
last 90 days (4)
last 6 months (7)
last 9 months (10)
author
Stack (3750)
Ted Yu (2467)
Jean-Daniel Cryans (2269)
Andrew Purtell (1454)
lars hofhansl (978)
Ryan Rawson (862)
Jean-Marc Spaggiari (674)
Todd Lipcon (670)
Doug Meil (571)
Jonathan Gray (516)
Jonathan Hsieh (510)
Michael Segel (477)
Lars George (438)
stack (414)
Gary Helmling (290)
Hiroshi Ikeda