Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B5310200B97 for ; Sun, 9 Oct 2016 12:28:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B3C48160AED; Sun, 9 Oct 2016 10:28:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 04E96160AC3 for ; Sun, 9 Oct 2016 12:28:21 +0200 (CEST) Received: (qmail 95846 invoked by uid 500); 9 Oct 2016 10:28:21 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 95801 invoked by uid 99); 9 Oct 2016 10:28:21 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Oct 2016 10:28:21 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 9FB2A2C2A6C for ; Sun, 9 Oct 2016 10:28:20 +0000 (UTC) Date: Sun, 9 Oct 2016 10:28:20 +0000 (UTC) From: "Duo Zhang (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-15921) Add first AsyncTable impl and create TableImpl based on it MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sun, 09 Oct 2016 10:28:22 -0000 [ https://issues.apache.org/jira/browse/HBASE-15921?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15559755#comment-15559755 ] Duo Zhang commented on HBASE-15921: ----------------------------------- {noformat} ============================================================================ ============================================================================ Running unit tests ============================================================================ ============================================================================ cd /testptch/hbase/hbase-common mvn -Dmaven.repo.local=/home/jenkins/yetus-m2/hbase-master-patch-1 -DHBasePatchProcess -PrunAllTests clean test -fae > /testptch/patchprocess/patch-unit-hbase-common.txt 2>&1 Elapsed: 1m 37s cd /testptch/hbase/hbase-client mvn -Dmaven.repo.local=/home/jenkins/yetus-m2/hbase-master-patch-1 -DHBasePatchProcess -PrunAllTests clean test -fae > /testptch/patchprocess/patch-unit-hbase-client.txt 2>&1 Elapsed: 0m 53s cd /testptch/hbase/hbase-server mvn -Dmaven.repo.local=/home/jenkins/yetus-m2/hbase-master-patch-1 -DHBasePatchProcess -PrunAllTests clean test -fae > /testptch/patchprocess/patch-unit-hbase-server.txt 2>&1 Elapsed: 93m 11s cd /testptch/hbase mvn -Dmaven.repo.local=/home/jenkins/yetus-m2/hbase-master-patch-1 -DHBasePatchProcess -PrunAllTests clean test -fae > /testptch/patchprocess/patch-unit-root.txt 2>&1 Elapsed: 95m 44s ============================================================================ ============================================================================ Determining number of ASF License errors ============================================================================ ============================================================================ cd /testptch/hbase/hbase-common mvn -Dmaven.repo.local=/home/jenkins/yetus-m2/hbase-master-patch-1 -DHBasePatchProcess -fn apache-rat:check > /testptch/patchprocess/patch-asflicense-hbase-common.txt 2>&1 Elapsed: 0m 13s cd /testptch/hbase/hbase-client mvn -Dmaven.repo.local=/home/jenkins/yetus-m2/hbase-master-patch-1 -DHBasePatchProcess -fn apache-rat:check > /testptch/patchprocess/patch-asflicense-hbase-client.txt 2>&1 Elapsed: 0m 11s cd /testptch/hbase/hbase-server mvn -Dmaven.repo.local=/home/jenkins/yetus-m2/hbase-master-patch-1 -DHBasePatchProcess -fn apache-rat:check > /testptch/patchprocess/patch-asflicense-hbase-server.txt 2>&1 Elapsed: 0m 12s cd /testptch/hbase mvn -Dmaven.repo.local=/home/jenkins/yetus-m2/hbase-master-patch-1 -DHBasePatchProcess -fn apache-rat:check > /testptch/patchprocess/patch-asflicense-root.txt 2>&1 Elapsed: 0m 21s There appear to be 140 ASF License warnings after applying the patch. {noformat} [~busbey] I think yetus could do better here. As I changed the pom.xml, yetus will execute some checks at root. The problem is, if we decide to run command at root, I do not think we need to run command in other modules then? Thanks. > Add first AsyncTable impl and create TableImpl based on it > ---------------------------------------------------------- > > Key: HBASE-15921 > URL: https://issues.apache.org/jira/browse/HBASE-15921 > Project: HBase > Issue Type: Improvement > Affects Versions: 2.0.0 > Reporter: Jurriaan Mous > Assignee: Duo Zhang > Fix For: 2.0.0 > > Attachments: HBASE-15921-v2.patch, HBASE-15921-v3.patch, HBASE-15921-v4.patch, HBASE-15921-v5.patch, HBASE-15921.demo.patch, HBASE-15921.patch, HBASE-15921.v1.patch > > > First we create an AsyncTable interface with implementation without the Scan functionality. Those will land in a separate patch since they need a refactor of existing scans. > Also added is a new TableImpl to replace HTable. It uses the AsyncTableImpl internally and should be a bit faster because it does jump through less hoops to do ProtoBuf transportation. This way we can run all existing tests on the AsyncTableImpl to guarantee its quality. -- This message was sent by Atlassian JIRA (v6.3.4#6332)