The whole process of configuring hive metadata to MySQL

The whole process of configuring hive metadata to MySQL
  • In the hive installation directory, enter the conf directory and create a hive-site.xml file
  • Configure parameters according to the official documentation and copy the data to the hive-site.xml file
    https://cwiki.apache.org/confluence/display/Hive/AdminManual+MetastoreAdmin

Note: Create a metastore database first, and use latin1 as the character set

Copy the mysql driver to the hive lib directory. (This is related to the previous article on installing MySQL)

Unzip the driver package

Copy the mysql driver to the hive lib directory

Start hive (don’t forget to start hdfs and yarn first~~)

start-dfs.sh
start-yarn.sh
hive

Create a table and see if the metadata can be saved in MySQL

Check out the metastore library

TBLS Table


COLUMNS_V2 table


DBS Table

From the above figure, we can see

The structure of metadata

  1. The table information is stored in the tbls table, and foreign key constraints are performed through db_id and the database in the dbs table!
  2. The library information is stored in the dbs table!
  3. The field information exists in the column_v2 table, and the foreign key constraint is performed through CD_ID and the primary key of the table!

Summarize

This is the end of this article about the whole process of configuring hive metadata to Mysql. For more relevant content about configuring hive metadata to Mysql, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to generate Hive table creation statement comment script in MySQL metadata

<<:  Detailed explanation of the usage of sync modifier in Vue3 parent-child component parameter transfer

>>:  Linux deb package decompression, modification and other operation methods code examples

Recommend

How to use wangEditor in vue and how to get focus by echoing data

Rich text editors are often used when doing backg...

Solve the problem that ElementUI custom CSS style does not take effect

For example, there is an input box <el-input r...

Example of how to create a database name with special characters in MySQL

Preface This article explains how to create a dat...

JavaScript to implement the web version of the snake game

This article shares the specific code for JavaScr...

CSS sets the list style and creates the navigation menu implementation code

1. Set the list symbol list-style-type: attribute...

Detailed explanation of publicPath usage in Webpack

Table of contents output output.path output.publi...

HTML tag ID can be a variable

<table id=" <%=var1%>">, the...

How to modify the default storage location of Docker images (solution)

Due to the initial partitioning of the system, th...

How to configure pseudo-static and client-adaptive Nginx

The backend uses the thinkphp3.2.3 framework. If ...

Solution to web page confusion caused by web page FOUC problem

FOUC is Flash of Unstyled Content, abbreviated as ...

Javascript closure usage scenario principle detailed

Table of contents 1. Closure 2. Closure usage sce...

Implementation of master-slave replication in docker compose deployment

Table of contents Configuration parsing Service C...

Solve the problem of margin merging

1. Merge the margins of sibling elements The effe...