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 CE495200C89 for ; Fri, 28 Apr 2017 16:59:07 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id CCF90160BB8; Fri, 28 Apr 2017 14:59:07 +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 E321A160B8C for ; Fri, 28 Apr 2017 16:59:06 +0200 (CEST) Received: (qmail 29794 invoked by uid 500); 28 Apr 2017 14:59:01 -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 28325 invoked by uid 99); 28 Apr 2017 14:59:00 -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, 28 Apr 2017 14:59:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B4C54E965E; Fri, 28 Apr 2017 14:59:00 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: git-site-role@apache.org To: commits@hbase.apache.org Date: Fri, 28 Apr 2017 14:59:30 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [31/51] [partial] hbase-site git commit: Published site at 82d554e3783372cc6b05489452c815b57c06f6cd. archived-at: Fri, 28 Apr 2017 14:59:08 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6f2e75f2/devapidocs/src-html/org/apache/hadoop/hbase/HConstants.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/HConstants.html b/devapidocs/src-html/org/apache/hadoop/hbase/HConstants.html index b4e1ffc..8adbacb 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/HConstants.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/HConstants.html @@ -1363,10 +1363,15 @@ 1355 "hbase.snapshot.restore.take.failsafe.snapshot"; 1356 public static final boolean DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT = false; 1357 -1358 private HConstants() { -1359 // Can't be instantiated with this ctor. -1360 } -1361} +1358 public static final String SNAPSHOT_RESTORE_FAILSAFE_NAME = +1359 "hbase.snapshot.restore.failsafe.name"; +1360 public static final String DEFAULT_SNAPSHOT_RESTORE_FAILSAFE_NAME = +1361 "hbase-failsafe-{snapshot.name}-{restore.timestamp}"; +1362 +1363 private HConstants() { +1364 // Can't be instantiated with this ctor. +1365 } +1366} http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6f2e75f2/devapidocs/src-html/org/apache/hadoop/hbase/Version.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/Version.html b/devapidocs/src-html/org/apache/hadoop/hbase/Version.html index 2d5588c..09102b9 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/Version.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/Version.html @@ -16,11 +16,11 @@ 008@InterfaceAudience.Private 009public class Version { 010 public static final String version = "2.0.0-SNAPSHOT"; -011 public static final String revision = "b81e00f5eabe8d99fd77d74f60e3754add8205da"; +011 public static final String revision = "5411d3ecb156a5128b9045bdb4e58850a10968fb"; 012 public static final String user = "jenkins"; -013 public static final String date = "Thu Apr 27 22:33:25 UTC 2017"; +013 public static final String date = "Fri Apr 28 14:39:00 UTC 2017"; 014 public static final String url = "git://asf920.gq1.ygridcore.net/home/jenkins/jenkins-slave/workspace/hbase_generate_website/hbase"; -015 public static final String srcChecksum = "f5899e22d243da9cc32fb736a2ec9230"; +015 public static final String srcChecksum = "25fa6c8e42c05e161da7d3fbf2f2d8d2"; 016} http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6f2e75f2/devapidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html b/devapidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html index a043eca..fd97352 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html @@ -671,7 +671,85 @@ 663 * @param tableName name of the table where the snapshot will be restored 664 */ 665 CompletableFuture<Void> cloneSnapshot(final String snapshotName, final TableName tableName); -666} +666 +667 /** +668 * List completed snapshots. +669 * @return a list of snapshot descriptors for completed snapshots wrapped by a +670 * {@link CompletableFuture} +671 */ +672 CompletableFuture<List<SnapshotDescription>> listSnapshots(); +673 +674 /** +675 * List all the completed snapshots matching the given regular expression. +676 * @param regex The regular expression to match against +677 * @return - returns a List of SnapshotDescription wrapped by a {@link CompletableFuture} +678 */ +679 CompletableFuture<List<SnapshotDescription>> listSnapshots(String regex); +680 +681 /** +682 * List all the completed snapshots matching the given pattern. +683 * @param pattern The compiled regular expression to match against +684 * @return - returns a List of SnapshotDescription wrapped by a {@link CompletableFuture} +685 */ +686 CompletableFuture<List<SnapshotDescription>> listSnapshots(Pattern pattern); +687 +688 /** +689 * List all the completed snapshots matching the given table name regular expression and snapshot +690 * name regular expression. +691 * @param tableNameRegex The table name regular expression to match against +692 * @param snapshotNameRegex The snapshot name regular expression to match against +693 * @return - returns a List of completed SnapshotDescription wrapped by a +694 * {@link CompletableFuture} +695 */ +696 CompletableFuture<List<SnapshotDescription>> listTableSnapshots(String tableNameRegex, +697 String snapshotNameRegex); +698 +699 /** +700 * List all the completed snapshots matching the given table name regular expression and snapshot +701 * name regular expression. +702 * @param tableNamePattern The compiled table name regular expression to match against +703 * @param snapshotNamePattern The compiled snapshot name regular expression to match against +704 * @return - returns a List of completed SnapshotDescription wrapped by a +705 * {@link CompletableFuture} +706 */ +707 CompletableFuture<List<SnapshotDescription>> listTableSnapshots(Pattern tableNamePattern, +708 Pattern snapshotNamePattern); +709 +710 /** +711 * Delete an existing snapshot. +712 * @param snapshotName name of the snapshot +713 */ +714 CompletableFuture<Void> deleteSnapshot(String snapshotName); +715 +716 /** +717 * Delete existing snapshots whose names match the pattern passed. +718 * @param regex The regular expression to match against +719 */ +720 CompletableFuture<Void> deleteSnapshots(String regex); +721 +722 /** +723 * Delete existing snapshots whose names match the pattern passed. +724 * @param pattern pattern for names of the snapshot to match +725 */ +726 CompletableFuture<Void> deleteSnapshots(Pattern pattern); +727 +728 /** +729 * Delete all existing snapshots matching the given table name regular expression and snapshot +730 * name regular expression. +731 * @param tableNameRegex The table name regular expression to match against +732 * @param snapshotNameRegex The snapshot name regular expression to match against +733 */ +734 CompletableFuture<Void> deleteTableSnapshots(String tableNameRegex, String snapshotNameRegex); +735 +736 /** +737 * Delete all existing snapshots matching the given table name regular expression and snapshot +738 * name regular expression. +739 * @param tableNamePattern The compiled table name regular expression to match against +740 * @param snapshotNamePattern The compiled snapshot name regular expression to match against +741 */ +742 CompletableFuture<Void> deleteTableSnapshots(Pattern tableNamePattern, +743 Pattern snapshotNamePattern); +744}