Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 46866180B9 for ; Wed, 11 Nov 2015 04:05:20 +0000 (UTC) Received: (qmail 1834 invoked by uid 500); 11 Nov 2015 04:05:19 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 1694 invoked by uid 500); 11 Nov 2015 04:05:19 -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 1377 invoked by uid 99); 11 Nov 2015 04:05:19 -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; Wed, 11 Nov 2015 04:05:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1A698E56F8; Wed, 11 Nov 2015 04:05:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: misty@apache.org To: commits@hbase.apache.org Date: Wed, 11 Nov 2015 04:05:22 -0000 Message-Id: <05ee2030d52049f39c0adb7d4aa8c465@git.apache.org> In-Reply-To: <4b88a29fdadb440db2d88c932a803286@git.apache.org> References: <4b88a29fdadb440db2d88c932a803286@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [05/51] [partial] hbase git commit: Published website at ffb1e78c08623a057e76f800769baa4f72daed5e http://git-wip-us.apache.org/repos/asf/hbase/blob/5a61b0cb/apidocs/org/apache/hadoop/hbase/client/Query.html ---------------------------------------------------------------------- diff --git a/apidocs/org/apache/hadoop/hbase/client/Query.html b/apidocs/org/apache/hadoop/hbase/client/Query.html deleted file mode 100644 index 86e95a0..0000000 --- a/apidocs/org/apache/hadoop/hbase/client/Query.html +++ /dev/null @@ -1,569 +0,0 @@ - - - - - -Query (Apache HBase 2.0.0-SNAPSHOT API) - - - - - - - - - - -
-
org.apache.hadoop.hbase.client
-

Class Query

-
-
- -
- -
-
- -
-
-
    -
  • - - - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        Query

        -
        public Query()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - - - - - -
        -
      • -

        setFilter

        -
        public Query setFilter(Filter filter)
        -
        Apply the specified server-side filter when performing the Query. - Only Filter.filterKeyValue(Cell) is called AFTER all tests - for ttl, column match, deletes and max versions have been run.
        -
        Parameters:
        filter - filter to run on the server
        -
        Returns:
        this for invocation chaining
        -
      • -
      - - - -
        -
      • -

        setAuthorizations

        -
        public Query setAuthorizations(org.apache.hadoop.hbase.security.visibility.Authorizations authorizations)
        -
        Sets the authorizations to be used by this Query
        -
        Parameters:
        authorizations -
        -
      • -
      - - - -
        -
      • -

        getAuthorizations

        -
        public org.apache.hadoop.hbase.security.visibility.Authorizations getAuthorizations()
        -                                                                             throws org.apache.hadoop.hbase.exceptions.DeserializationException
        -
        Returns:
        The authorizations this Query is associated with.
        -
        Throws:
        -
        org.apache.hadoop.hbase.exceptions.DeserializationException
        -
      • -
      - - - -
        -
      • -

        getACL

        -
        public byte[] getACL()
        -
        Returns:
        The serialized ACL for this operation, or null if none
        -
      • -
      - - - -
        -
      • -

        setACL

        -
        public Query setACL(String user,
        -           org.apache.hadoop.hbase.security.access.Permission perms)
        -
        Parameters:
        user - User short name
        perms - Permissions for the user
        -
      • -
      - - - -
        -
      • -

        setACL

        -
        public Query setACL(Map<String,org.apache.hadoop.hbase.security.access.Permission> perms)
        -
        Parameters:
        perms - A map of permissions for a user or users
        -
      • -
      - - - -
        -
      • -

        getConsistency

        -
        public Consistency getConsistency()
        -
        Returns the consistency level for this operation
        -
        Returns:
        the consistency level
        -
      • -
      - - - -
        -
      • -

        setConsistency

        -
        public Query setConsistency(Consistency consistency)
        -
        Sets the consistency level for this operation
        -
        Parameters:
        consistency - the consistency level
        -
      • -
      - - - -
        -
      • -

        setReplicaId

        -
        public Query setReplicaId(int Id)
        -
        Specify region replica id where Query will fetch data from. Use this together with - setConsistency(Consistency) passing Consistency.TIMELINE to read data from - a specific replicaId. -
        Expert: This is an advanced API exposed. Only use it if you know what you are doing
        -
        Parameters:
        Id -
        -
      • -
      - - - -
        -
      • -

        getReplicaId

        -
        public int getReplicaId()
        -
        Returns region replica id where Query will fetch data from.
        -
        Returns:
        region replica id or -1 if not set.
        -
      • -
      - - - -
        -
      • -

        setIsolationLevel

        -
        public Query setIsolationLevel(IsolationLevel level)
        -
        Set the isolation level for this query. If the - isolation level is set to READ_UNCOMMITTED, then - this query will return data from committed and - uncommitted transactions. If the isolation level - is set to READ_COMMITTED, then this query will return - data from committed transactions only. If a isolation - level is not explicitly set on a Query, then it - is assumed to be READ_COMMITTED.
        -
        Parameters:
        level - IsolationLevel for this query
        -
      • -
      - - - -
        -
      • -

        getIsolationLevel

        -
        public IsolationLevel getIsolationLevel()
        -
        Returns:
        The isolation level of this query. - If no isolation level was set for this query object, - then it returns READ_COMMITTED.
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2007–2015 The Apache Software Foundation. All rights reserved.

- - http://git-wip-us.apache.org/repos/asf/hbase/blob/5a61b0cb/apidocs/org/apache/hadoop/hbase/client/RegionLocator.html ---------------------------------------------------------------------- diff --git a/apidocs/org/apache/hadoop/hbase/client/RegionLocator.html b/apidocs/org/apache/hadoop/hbase/client/RegionLocator.html deleted file mode 100644 index 5db9a57..0000000 --- a/apidocs/org/apache/hadoop/hbase/client/RegionLocator.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - -RegionLocator (Apache HBase 2.0.0-SNAPSHOT API) - - - - - - - - - - -
-
org.apache.hadoop.hbase.client
-

Interface RegionLocator

-
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      List<HRegionLocation>getAllRegionLocations() -
      Retrieves all of the regions associated with this table.
      -
      byte[][]getEndKeys() -
      Gets the ending row key for every region in the currently open table.
      -
      TableNamegetName() -
      Gets the fully qualified table name instance of this table.
      -
      HRegionLocationgetRegionLocation(byte[] row) -
      Finds the region on which the given row is being served.
      -
      HRegionLocationgetRegionLocation(byte[] row, - boolean reload) -
      Finds the region on which the given row is being served.
      -
      Pair<byte[][],byte[][]>getStartEndKeys() -
      Gets the starting and ending row keys for every region in the currently - open table.
      -
      byte[][]getStartKeys() -
      Gets the starting row key for every region in the currently open table.
      -
      - -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getRegionLocation

        -
        HRegionLocation getRegionLocation(byte[] row)
        -                                  throws IOException
        -
        Finds the region on which the given row is being served. Does not reload the cache.
        -
        Parameters:
        row - Row to find.
        -
        Returns:
        Location of the row.
        -
        Throws:
        -
        IOException - if a remote or network exception occurs
        -
      • -
      - - - -
        -
      • -

        getRegionLocation

        -
        HRegionLocation getRegionLocation(byte[] row,
        -                                boolean reload)
        -                                  throws IOException
        -
        Finds the region on which the given row is being served.
        -
        Parameters:
        row - Row to find.
        reload - true to reload information or false to use cached information
        -
        Returns:
        Location of the row.
        -
        Throws:
        -
        IOException - if a remote or network exception occurs
        -
      • -
      - - - - - - - -
        -
      • -

        getStartKeys

        -
        byte[][] getStartKeys()
        -                      throws IOException
        -
        Gets the starting row key for every region in the currently open table. -

        - This is mainly useful for the MapReduce integration.

        -
        Returns:
        Array of region starting row keys
        -
        Throws:
        -
        IOException - if a remote or network exception occurs
        -
      • -
      - - - -
        -
      • -

        getEndKeys

        -
        byte[][] getEndKeys()
        -                    throws IOException
        -
        Gets the ending row key for every region in the currently open table. -

        - This is mainly useful for the MapReduce integration.

        -
        Returns:
        Array of region ending row keys
        -
        Throws:
        -
        IOException - if a remote or network exception occurs
        -
      • -
      - - - -
        -
      • -

        getStartEndKeys

        -
        Pair<byte[][],byte[][]> getStartEndKeys()
        -                                        throws IOException
        -
        Gets the starting and ending row keys for every region in the currently - open table. -

        - This is mainly useful for the MapReduce integration.

        -
        Returns:
        Pair of arrays of region starting and ending row keys
        -
        Throws:
        -
        IOException - if a remote or network exception occurs
        -
      • -
      - - - -
        -
      • -

        getName

        -
        TableName getName()
        -
        Gets the fully qualified table name instance of this table.
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2007–2015 The Apache Software Foundation. All rights reserved.

- - http://git-wip-us.apache.org/repos/asf/hbase/blob/5a61b0cb/apidocs/org/apache/hadoop/hbase/client/RegionOfflineException.html ---------------------------------------------------------------------- diff --git a/apidocs/org/apache/hadoop/hbase/client/RegionOfflineException.html b/apidocs/org/apache/hadoop/hbase/client/RegionOfflineException.html deleted file mode 100644 index 495b0fa..0000000 --- a/apidocs/org/apache/hadoop/hbase/client/RegionOfflineException.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - - -RegionOfflineException (Apache HBase 2.0.0-SNAPSHOT API) - - - - - - - - - - -
-
org.apache.hadoop.hbase.client
-

Class RegionOfflineException

-
-
- -
- -
-
- -
-
- -
-
- - - - - -

Copyright © 2007–2015 The Apache Software Foundation. All rights reserved.

- -