Metastore is the internal database for Hive, it is the central repository of Hive Metadata. In this Metastore all the tables information, tables schema, column information, partitioning information will get stored. By default Hive will come up with Derby database as its Metastore. As the default Metastore is Derby, we need not to configure the same, if we want to change the database then we must configure explicitly.
If we want to configure the Hive Metastore explicitly(other than Derby), we can do so in "hive-site.xml". As part of Metastore configuration there are two parts:
- Setting of Connection Url
- Setting of Driver name for the same
The following figure shows you the configuration details.
 |
Configuration of HIVE Metastore |
Metastore is the internal database for Hive, it is the central repository of Hive Metadata. In this Metastore all the tables information, tables schema, column information, partitioning information will get stored. By default Hive will come up with Derby database as its Metastore. As the default Metastore is Derby, we need not to configure the same, if we want to change the database then we must configure explicitly.
If we want to configure the Hive Metastore explicitly(other than Derby), we can do so in "hive-site.xml". As part of Metastore configuration there are two parts:
- Setting of Connection Url
- Setting of Driver name for the same
The following figure shows you the configuration details.
 |
Configuration of HIVE Metastore |
HIVE is one of the component of Hadoop. It was built by Jeff Hammerbacher and his team at facebook. Hive is a framework for data warehousing on top of HADOOP. This was initially built to run queries on the huge data of facebook. The main use of Hive framework is , using this we can place the processed data into tables, and then we can pose queries on those tables.
 |
Hive Logo |
To work with Hive framework one should have a good idea on SQL, and basic java programming skills. We have HiveQL(Hive Query Language), a dialect of SQL to work with Hive. Hive stores the data in Tabular format.
HIVE is one of the component of Hadoop. It was built by Jeff Hammerbacher and his team at facebook. Hive is a framework for data warehousing on top of HADOOP. This was initially built to run queries on the huge data of facebook. The main use of Hive framework is , using this we can place the processed data into tables, and then we can pose queries on those tables.
 |
Hive Logo |
To work with Hive framework one should have a good idea on SQL, and basic java programming skills. We have HiveQL(Hive Query Language), a dialect of SQL to work with Hive. Hive stores the data in Tabular format.