ndimiduk commented on PR #4394: URL: https://github.com/apache/hbase/pull/4394#issuecomment-1129842944
Yep, on branch-2, this is what I come up with. ``` de9a17e75cc80e7a473f1a4269092a557b1105a0 is the first bad commit commit de9a17e75cc80e7a473f1a4269092a557b1105a0 Author: Mohammad Arshad <[email protected]> Date: Tue May 17 10:54:38 2022 +0530 HBASE-26856:BufferedDataBlockEncoder.OnheapDecodedCell value can get corrupted (#4394) Created OnheapDecodedCell and OffheapDecodedExtendedCell objects with duplicate copy of ByteBuffer's underlying array instead of original ByteBuffer Signed-off-by: Andrew Purtell <[email protected]> Signed-off-by: Pankaj Kumar<[email protected]> (cherry picked from commit c198f23e5eb078abc47d4c3439477c6c2b4d5136) .../io/encoding/BufferedDataBlockEncoder.java | 23 +++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) bisect found first bad commit ``` My `bisect.sh` is ``` #!/bin/bash set -x set -e env JAVA_HOME=/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home mvn clean install -Dhadoop.profile=3.0 -DskipTests > /dev/null 2>&1 for _ in {1..20} ; do env JAVA_HOME=/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home mvn test -pl hbase-server -Dtest=TestMultiRespectsLimits -Dhadoop.profile=3.0 > /dev/null 2>&1 done ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
