droudnitsky

Results 6 issues of droudnitsky

https://issues.apache.org/jira/browse/HBASE-28608

There is an example of the change being used in [PR #6144](https://github.com/apache/hbase/pull/6144/files). Since `isActionComplete` currently only has one caller that depends on the replica action check we can move the...

https://issues.apache.org/jira/browse/HBASE-27781 My understanding of AsynRequestFutureImpl is that the only actions passed to `groupAndSendMultiAction` which may have been completed when we get to the operation timeout exceeded handling in that method...

https://issues.apache.org/jira/browse/HBASE-27781 +Background+ In AsyncFutureRequestImpl we fail fast when operation timeout is exceeded during location resolution [here](https://github.com/apache/hbase/blob/branch-2.5/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncRequestFutureImpl.java#L460-L462). In that handling, we loop over all actions still being processed in the groupAndSendMulti...

https://issues.apache.org/jira/browse/HBASE-29672 There is a large class of filters: RowFilter ValueFilter QualifierFilter FamilyFilter DependentColumnFilter ColumnValueFilter SingleColumnValueFilter SingleColumnValueExcludeFilter Which take a ByteArrayComparable comparator as an argument (e.g BinaryComparator, RegexStringComparator, BinaryComponentComparator) and apply...

https://issues.apache.org/jira/browse/HBASE-29675 Add a bounds check before doing byte array comparison in BinaryComponentComparator and throw a descriptive OffsetOutOfBoundsException which subclasses ArrayIndexOutOfBoundsException instead of doing an unchecked byte array comparison and throwing...