HBase Interview Questions and Answers

Ratings:
(4)
Views: 228
Banner-Img
Share this blog:

 

Interview Questions on HBase

1.What is Hbase?

Ans: A column-oriented database management system that runs on top of Hadoop Distributed File System (HDFSTM), the main component of Apache Hadoop

2.What are the difference between Relational Database and Hbase?

Ans: 

h

3.What is the history of HBase?

Ans: 2006: BigTable paper published by Google. 2006 (end of year): HBase development starts. 2008: HBase becomes Hadoop sub-project. 2010: HBase becomes Apache top-level project.

4.What is Apache HBase?

Ans: Apache Hbase is one the sub-project of  Apache Hadoop,which was designed for NoSql database(Hadoop Database),bigdata store and a distributed, scalable.Use Apache HBase when you need random, realtime read/write access to your Big Data.A table which contain billions of rows X millions of columns -atop clusters of commodity hardware. Apache HBase is an open-source, distributed, versioned, non-relational database modeled after Google’s Bigtable. Apache HBase provides Bigtable-like capabilities  run on top of Hadoop and HDFS.

5.What is NoSql?

Ans: Apache HBase is a type of “NoSQL” database. “NoSQL” is a general term meaning that the database isn’t an RDBMS which supports SQL as its primary access language, but there are many types of NoSQL databases: BerkeleyDB is an example of a local NoSQL database, whereas HBase is very much a distributed database. Technically speaking, HBase is really more a “Data Store” than “Data Base” because it lacks many of the features you find in an RDBMS, such as typed columns, secondary indexes, triggers, and advanced query languages, etc.

If you want to enrich your career and become a professional in HBase, then visit Tekslate - a global online training platform: "HBase Training" This course will help you to achieve excellence in this domain.

6.What are the main features of Apache HBase?

Ans: Apache HBase has many features which supports both linear and modular scaling,HBase tables are distributed on the cluster via regions, and regions are automatically split and re-distributed as your data grows(Automatic sharding).HBase supports a Block Cache and Bloom Filters for high volume query optimization(Block Cache and Bloom Filters).

7.When should we use Hbase?

Ans: 

  • We should have milions or billions of rows and columns in table at that point only we have use Hbase otherwise better to go RDBMS(we have use thousand of rows and columns)
  • In RDBMS should runs on single database server but in hbase is distributed and scalable and also run on commodity hardware.
  • Typed columns, secondary indexes, transactions, advanced query languages, etc these features provided by Hbase,not by RDBMS.

8.What is the difference between HDFS/Hadoop and HBase?

Ans: HDFS doesn’t provides fast lookup records in a file,IN Hbase provides fast lookup records for large table.

9.Is there any difference between HBase datamodel and RDBMS datamodel?

Ans: In Hbase,data is stored as a table(have rows and columns) similar to RDBMS but this is not a helpful analogy. Instead, it can be helpful to think of an HBase table as a multi-dimensional map.

10.What are key terms are used for designing of HBase datamodel?

Ans: 

  • table(Hbase table consists of rows)
  • row(Row in hbase which contains row key and one or more columns with value associated with them)
  • column(A column in HBase consists of a column family and a column qualifier, which are delimited by a : (colon) character)
  • column family(having set of columns and their values,the column families should be considered carefully during schema design)
  • column qualifier(A column qualifier is added to a column family to provide the index for a given piece of data)
  • cell(A cell is a combination of row, column family, and column qualifier, and contains a value and a timestamp, which represents the value’s version)
  • timestamp( represents the time on the RegionServer when the data was written, but you can specify a different timestamp value when you put data into the cell)

11.What are data model operations in HBase?

Ans: 

  • Get(returns attributes for a specified row, Gets are executed via HTable.get)
  • put(Put either adds new rows to a table (if the key is new) or can update existing rows (if the key already exists). Puts are executed via HTable.put (writeBuffer) or HTable.batch (non-writeBuffer))
  • scan(Scan allow iteration over multiple rows for specified attributes)
  • Delete(Delete removes a row from a table. Deletes are executed via HTable.delete)
  • HBase does not modify data in place, and so deletes are handled by creating new markers called tombstones. These tombstones, along with the dead values, are cleaned up on major compaction.

12.How should filters are useful in Apache HBase?

Ans: Filters In Hbase Shell, Filter Language was introduced in APache HBase 0.92. It allows you to perform server-side filtering when accessing HBase over Thrift or in the HBase shell.

13.How many filters are available in Apache HBase?

Ans: Total we have 18 filters are support to hbase.They are:

  • ColumnPrefixFilter
  • TimestampsFilter
  • PageFilter
  • MultipleColumnPrefixFilter
  • ColumnPaginationFilter
  • SingleColumnValueFilter
  • RowFilter
  • QualifierFilter
  • ColumnRangeFilter
  • ValueFilter
  • PrefixFilter
  • SingleColumnValueExcludeFilter
  • ColumnCountGetFilter
  • InclusiveStopFilter
  • DependentColumnFilter
  • FirstKeyOnlyFilter
  • KeyOnlyFilter

14.How can we use MapReduce with HBase?

Ans: Apache MapReduce is a software framework used to analyze large amounts of data, and is the framework used most often with Apache Hadoop. HBase can be used as a data source, TableInputFormat, and data sink, TableOutputFormat or MultiTableOutputFormat, for MapReduce jobs. Writing MapReduce jobs that read or write HBase, it is advisable to subclass TableMapper and/or TableReducer.

15.How do we back up my HBase cluster?

Ans: There are two broad strategies for performing HBase backups: backing up with a full cluster shutdown, and backing up on a live cluster. Each approach has pros and cons.

Full Shutdown Backup

  Some environments can tolerate a periodic full shutdown of their HBase cluster, for example if it is being used a back-end analytic capacity and not serving front-end web-pages.    The benefits are that the NameNode/Master are RegionServers are down, so there is no chance of missing any in-flight changes to either StoreFiles or metadata. The obvious con    is that the cluster is down.

Live Cluster Backup

  live clusterbackup-copytable:copy table utility could either be used to copy data from one table to another on the same cluster, or to copy data to another table on another           cluster. live cluster backup-export:export approach dumps the content of a table to HDFS on the same cluster.

16.Does HBase support SQL?

Ans: Not really. SQL-ish support for HBase via Hive is in development, however Hive is based on MapReduce which is not generally suitable for low-latency requests.By using Apache Phoenix  can retrieve data from hbase by using sql queries.

17.What is the maximum recommended cell size?

Ans: A rough rule of thumb, with little empirical validation, is to keep the data in HDFS and store pointers to the data in HBase if you expect the cell size to be consistently above 10 MB. If you do expect large cell values and you still plan to use HBase for the storage of cell contents, youll want to increase the block size and the maximum region size for the table to keep the index size reasonable and the split frequency acceptable.

18.Why cant I iterate through the rows of a table in reverse order?

Ans: Because of the way HFile works: for efficiency, column values are put on disk with the length of the value written first and then the bytes of the actual value written second. To navigate through these values in reverse order, these length values would need to be stored twice (at the end as well) or in a side file. A robust secondary index implementation is the likely solution here to ensure the primary use case remains fast.

19.What happens if we change the block size of a column family on an already populated database?

Ans: When we change the block size of the column family, the new data takes the new block size while the old data is within the old block size. When the compaction occurs, old data will take the new block size. “New files, as they are flushed, will have the new block size, whereas existing data will continue to be read correctly. After the next major compaction, all data should be converted to the new block size.

You liked the article?

Like: 0

Vote for difficulty

Current difficulty (Avg): Medium

EasyMediumHardDifficultExpert
IMPROVE ARTICLEReport Issue

About Author

Authorlogo
Name
TekSlate
Author Bio

TekSlate is the best online training provider in delivering world-class IT skills to individuals and corporates from all parts of the globe. We are proven experts in accumulating every need of an IT skills upgrade aspirant and have delivered excellent services. We aim to bring you all the essentials to learn and master new technologies in the market with our articles, blogs, and videos. Build your career success with us, enhancing most in-demand skills in the market.

Stay Updated
Get stories of change makers and innovators from the startup ecosystem in your inbox