4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
32 When should I use HBase?::
33 See <<arch.overview>> in the Architecture chapter.
35 Does HBase support SQL?::
36 Not really. SQL-ish support for HBase via link:https://hive.apache.org/[Hive] is in development, however Hive is based on MapReduce which is not generally suitable for low-latency requests. See the <<datamodel>> section for examples on the HBase client.
38 How can I find examples of NoSQL/HBase?::
39 See the link to the BigTable paper in <<other.info>>, as well as the other papers.
41 What is the history of HBase?::
42 See <<hbase.history,hbase.history>>.
44 Why are the cells above 10MB not recommended for HBase?::
45 Large cells don't fit well into HBase's approach to buffering data. First, the large cells bypass the MemStoreLAB when they are written. Then, they cannot be cached in the L2 block cache during read operations. Instead, HBase has to allocate on-heap memory for them each time. This can have a significant impact on the garbage collector within the RegionServer process.
48 How do I upgrade Maven-managed projects from HBase 0.94 to HBase 0.96+?::
49 In HBase 0.96, the project moved to a modular structure. Adjust your project's dependencies to rely upon the `hbase-client` module or another module as appropriate, rather than a single JAR. You can model your Maven dependency after one of the following, depending on your targeted version of HBase. See Section 3.5, “Upgrading from 0.94.x to 0.96.x” or Section 3.3, “Upgrading from 0.96.x to 0.98.x” for more information.
51 .Maven Dependency for HBase 0.98
55 <groupId>org.apache.hbase</groupId>
56 <artifactId>hbase-client</artifactId>
57 <version>0.98.5-hadoop2</version>
61 .Maven Dependency for HBase 0.96
65 <groupId>org.apache.hbase</groupId>
66 <artifactId>hbase-client</artifactId>
67 <version>0.96.2-hadoop2</version>
71 .Maven Dependency for HBase 0.94
75 <groupId>org.apache.hbase</groupId>
76 <artifactId>hbase</artifactId>
77 <version>0.94.3</version>
83 How does HBase handle Region-RegionServer assignment and locality?::
87 How can I get started with my first cluster?::
90 Where can I learn about the rest of the configuration options?::
91 See <<configuration>>.
93 === Schema Design / Data Access
95 How should I design my schema in HBase?::
96 See <<datamodel>> and <<schema>>.
98 How can I store (fill in the blank) in HBase?::
99 See <<supported.datatypes>>.
101 How can I handle secondary indexes in HBase?::
102 See <<secondary.indexes>>.
104 Can I change a table's rowkeys?::
105 This is a very common question. You can't. See <<changing.rowkeys>>.
107 What APIs does HBase support?::
108 See <<datamodel>>, <<architecture.client>>, and <<external_apis>>.
112 How can I use MapReduce with HBase?::
115 === Performance and Troubleshooting
117 How can I improve HBase cluster performance?::
120 How can I troubleshoot my HBase cluster?::
125 I am running HBase on Amazon EC2 and...::
126 EC2 issues are a special case. See <<trouble.ec2>> and <<perf.ec2>>.
130 How do I manage my HBase cluster?::
133 How do I back up my HBase cluster?::
138 Where can I find interesting videos and presentations on HBase?::