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 2C66B200CFE for ; Fri, 8 Sep 2017 14:03:32 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2943A1609C5; Fri, 8 Sep 2017 12:03:32 +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 6FE771609BF for ; Fri, 8 Sep 2017 14:03:31 +0200 (CEST) Received: (qmail 59032 invoked by uid 500); 8 Sep 2017 12:03:29 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 59023 invoked by uid 99); 8 Sep 2017 12:03:29 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2017 12:03:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2F998F32D2; Fri, 8 Sep 2017 12:03:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ramkrishna@apache.org To: commits@hbase.apache.org Message-Id: <44d86f3002a74f76865f48409269c3d7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-15607 - Deprecating SnapShotInfo (Ram) Date: Fri, 8 Sep 2017 12:03:29 +0000 (UTC) archived-at: Fri, 08 Sep 2017 12:03:32 -0000 Repository: hbase Updated Branches: refs/heads/branch-1.4 1cca36b3b -> 93fbf25e3 HBASE-15607 - Deprecating SnapShotInfo (Ram) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/93fbf25e Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/93fbf25e Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/93fbf25e Branch: refs/heads/branch-1.4 Commit: 93fbf25e3162d79a697450a64c7a56b56c3d3179 Parents: 1cca36b Author: Ramkrishna Authored: Fri Sep 8 17:29:47 2017 +0530 Committer: Ramkrishna Committed: Fri Sep 8 17:33:10 2017 +0530 ---------------------------------------------------------------------- .../main/java/org/apache/hadoop/hbase/snapshot/SnapshotInfo.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/93fbf25e/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotInfo.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotInfo.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotInfo.java index e4c4c59..6fe8db7 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotInfo.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotInfo.java @@ -63,9 +63,11 @@ import org.apache.hadoop.hbase.util.FSUtils; *
  • List of hfiles and wals *
  • Stats about hfiles and logs sizes, percentage of shared with the source table, ... * + * @deprecated All the protos references will be changed to standalone POJOs from 2.0 onwards */ @InterfaceAudience.Public @InterfaceStability.Evolving +@Deprecated public final class SnapshotInfo extends Configured implements Tool { private static final Log LOG = LogFactory.getLog(SnapshotInfo.class);