Skip to main content
Version: 0.7.0-incubating

Hive catalog with s3

Introduction

Since Hive 2.x, Hive has supported S3 as a storage backend, enabling users to store and manage data in Amazon S3 directly through Hive. Gravitino enhances this capability by supporting the Hive catalog with S3, allowing users to efficiently manage the storage locations of files located in S3. This integration simplifies data operations and enables seamless access to S3 data from Hive queries.

The following sections will guide you through the necessary steps to configure the Hive catalog to utilize S3 as a storage backend, including configuration details and examples for creating databases and tables.

Hive metastore configuration

To use the Hive catalog with S3, you must configure your Hive metastore to recognize S3 as a storage backend. The following example illustrates the required changes in the hive-site.xml configuration file:

Example Configuration Changes

Below are the essential properties to add or modify in the hive-site.xml file to support S3:


<property>
<name>fs.s3a.access.key</name>
<value>S3_ACCESS_KEY_ID</value>
</property>

<property>
<name>fs.s3a.secret.key</name>
<value>S3_SECRET_KEY_ID</value>
</property>

<property>
<name>fs.s3a.endpoint</name>
<value>S3_ENDPOINT_ID</value>
</property>

<!-- The following property is optional and can be replaced with the location property in the schema
definition and table definition, as shown in the examples below. After explicitly setting this
property, you can omit the location property in the schema and table definitions.
-->
<property>
<name>hive.metastore.warehouse.dir</name>
<value>S3_BUCKET_PATH</value>
</property>

Adding Required JARs

After updating the hive-site.xml, you need to ensure that the necessary S3-related JARs are included in the Hive classpath. You can do this by executing the following command:

cp ${HADOOP_HOME}/share/hadoop/tools/lib/*aws* ${HIVE_HOME}/lib

Alternatively, you can download the required JARs from the Maven repository and place them in the Hive classpath. It is crucial to verify that the JARs are compatible with the version of Hadoop you are using to avoid any compatibility issue.

Restart Hive metastore

Once all configurations have been correctly set, restart the Hive cluster to apply the changes. This step is essential to ensure that the new configurations take effect and that the Hive services can communicate with S3.

Creating Tables or Databases with S3 Storage using Gravitino

Assuming you have already set up a Hive catalog with Gravitino, you can proceed to create tables or databases using S3 storage. For more information on catalog operations, refer to Catalog operations

Example: Creating a Database with S3 Storage

The following is an example of how to create a database in S3 using Gravitino:

curl -X POST -H "Accept: application/vnd.gravitino.v1+json" \
-H "Content-Type: application/json" -d '{
"name": "hive_schema",
"comment": "comment",
"properties": {
"location": "s3a://bucket-name/path"
}
}' http://localhost:8090/api/metalakes/metalake/catalogs/catalog/schemas

After creating the database, you can proceed to create tables under this schema using S3 storage. For further details on table operations, please refer to Table operations.

Access tables with S3 storage by Hive CLI

Assuming you have already created a table in the section Creating Tables or Databases with S3 Storage using Gravitino, let’s say the table is named hive_table. You can access the database/table and view its details using the Hive CLI as follows:

hive> show create database hive_schema;
OK
CREATE DATABASE `hive_schema`
COMMENT
'comment'
LOCATION
's3a://my-test-bucket/test-1727168792125'
WITH DBPROPERTIES (
'gravitino.identifier'='gravitino.v1.uid2173913050348296645',
'key1'='val1',
'key2'='val2')
Time taken: 0.019 seconds, Fetched: 9 row(s)
hive> use hive_schema;
OK
Time taken: 0.019 seconds
hive> show create table cataloghiveit_table_fc7c7d16;
OK
CREATE TABLE `hive_table`(
`hive_col_name1` tinyint COMMENT 'col_1_comment',
`hive_col_name2` date COMMENT 'col_2_comment',
`hive_col_name3` string COMMENT 'col_3_comment')
COMMENT 'table_comment'
ROW FORMAT SERDE
'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe'
STORED AS INPUTFORMAT
'org.apache.hadoop.mapred.TextInputFormat'
OUTPUTFORMAT
'org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat'
LOCATION
's3a://my-test-bucket/test-1727168821335/hive_table'
TBLPROPERTIES (
'EXTERNAL'='FALSE',
'gravitino.identifier'='gravitino.v1.uid292928775813252841',
'key1'='val1',
'key2'='val2',
'transient_lastDdlTime'='1727168821')
Time taken: 0.071 seconds, Fetched: 19 row(s)
> insert into hive_table values(1, '2022-11-12', 'hello');
Query ID = root_20240924091305_58ab83c7-7091-4cc7-a0d9-fa44945f45c6
Total jobs = 3
Launching Job 1 out of 3
Number of reduce tasks is set to 0 since there's no reduce operator
Job running in-process (local Hadoop)
2024-09-24 09:13:08,381 Stage-1 map = 100%, reduce = 0%
Ended Job = job_local1096072998_0001
Stage-4 is selected by condition resolver.
Stage-3 is filtered out by condition resolver.
Stage-5 is filtered out by condition resolver.
Loading data to table hive_schema.hive_table
MapReduce Jobs Launched:
Stage-Stage-1: HDFS Read: 0 HDFS Write: 0 SUCCESS
Total MapReduce CPU Time Spent: 0 msec
OK
Time taken: 2.843 seconds
hive> select * from hive_table;
OK
1 2022-11-12 hello
Time taken: 0.116 seconds, Fetched: 1 row(s)

This command shows the creation details of the database hive_schema, including its location in S3 and any associated properties.

Accessing Tables with S3 Storage via Spark

To access S3-stored tables using Spark, you need to configure the SparkSession appropriately. Below is an example of how to set up the SparkSession with the necessary S3 configurations:

  SparkSession sparkSession =
SparkSession.builder()
.config("spark.plugins", "org.apache.gravitino.spark.connector.plugin.GravitinoSparkPlugin")
.config("spark.sql.gravitino.uri", "http://localhost:8090")
.config("spark.sql.gravitino.metalake", "xx")
.config("spark.sql.catalog.{hive_catalog_name}.fs.s3a.access.key", accessKey)
.config("spark.sql.catalog.{hive_catalog_name}.fs.s3a.secret.key", secretKey)
.config("spark.sql.catalog.{hive_catalog_name}.fs.s3a.endpoint", getS3Endpoint)
.config("spark.sql.catalog.{hive_catalog_name}.fs.s3a.impl", "org.apache.hadoop.fs.s3a.S3AFileSystem")
.config("spark.sql.catalog.{hive_catalog_name}.fs.s3a.path.style.access", "true")
.config("spark.sql.catalog.{hive_catalog_name}.fs.s3a.connection.ssl.enabled", "false")
.config(
"spark.sql.catalog.{hive_catalog_name}.fs.s3a.aws.credentials.provider",
"org.apache.hadoop.fs.s3a.SimpleAWSCredentialsProvider")
.config("spark.sql.storeAssignmentPolicy", "LEGACY")
.config("mapreduce.input.fileinputformat.input.dir.recursive", "true")
.enableHiveSupport()
.getOrCreate();

sparkSession.sql("...");

Please download hadoop aws jar, aws java sdk jar and place them in the classpath of the Spark. If the JARs are missing, Spark will not be able to access the S3 storage.

By following these instructions, you can effectively manage and access your S3-stored data through both Hive CLI and Spark, leveraging the capabilities of Gravitino for optimal data management.