Hive
Hive
By connecting to Hive Metastore, or a metadata service compatible with Hive Metatore, Doris can automatically obtain Hive database table information and perform data queries.
In addition to Hive, many other systems also use the Hive Metastore to store metadata. So through Hive Catalog, we can not only access Hive, but also access systems that use Hive Metastore as metadata storage. Such as Iceberg, Hudi, etc.
Terms and Conditionsβ
- Need to put core-site.xml, hdfs-site.xml and hive-site.xml in the conf directory of FE and BE. First read the hadoop configuration file in the conf directory, and then read the related to the environment variable
HADOOP_CONF_DIR
configuration file. - hive supports version 1/2/3.
- Support Managed Table and External Table and part of Hive View.
- Can identify hive, iceberg, hudi metadata stored in Hive Metastore.
- If the Hadoop node is configured with hostname, please ensure to add the corresponding mapping relationship to the /etc/hosts file.
Create Catalogβ
Hive On HDFSβ
CREATE CATALOG hive PROPERTIES (
'type'='hms',
'hive.metastore.uris' = 'thrift://172.0.0.1:9083',
'hadoop.username' = 'hive'
);
In addition to the two required parameters of type
and hive.metastore.uris
, more parameters can be passed to pass the information required for the connection.
Most of this properties can be found in core-site.xml
, hdfs-site.xml
and hive-site.xml
.
If HDFS HA information is provided, the example is as follows:
CREATE CATALOG hive PROPERTIES (
'type'='hms',
'hive.metastore.uris' = 'thrift://172.0.0.1:9083',
'hadoop.username' = 'hive',
'dfs.nameservices'='your-nameservice',
'dfs.ha.namenodes.your-nameservice'='nn1,nn2',
'dfs.namenode.rpc-address.your-nameservice.nn1'='172.21.0.2:8088',
'dfs.namenode.rpc-address.your-nameservice.nn2'='172.21.0.3:8088',
'dfs.client.failover.proxy.provider.your-nameservice'='org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider'
);
About Kerberos, please see
Connect to Kerberos enabled Hive
.
Hive On ViewFSβ
CREATE CATALOG hive PROPERTIES (
'type'='hms',
'hive.metastore.uris' = 'thrift://172.0.0.1:9083',
'hadoop.username' = 'hive',
'dfs.nameservices'='your-nameservice',
'dfs.ha.namenodes.your-nameservice'='nn1,nn2',
'dfs.namenode.rpc-address.your-nameservice.nn1'='172.21.0.2:8088',
'dfs.namenode.rpc-address.your-nameservice.nn2'='172.21.0.3:8088',
'dfs.client.failover.proxy.provider.your-nameservice'='org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider',
'fs.defaultFS' = 'viewfs://your-cluster',
'fs.viewfs.mounttable.your-cluster.link./ns1' = 'hdfs://your-nameservice/',
'fs.viewfs.mounttable.your-cluster.homedir' = '/ns1'
);
ViewFs related parameters can be added to the catalog configuration as above, or added to conf/core-site.xml
.
How ViewFs works and parameter configuration, please refer to relevant hadoop documents, for example, https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-hdfs/ViewFs.html
Hive On JuiceFSβ
Data is stored in JuiceFS, examples are as follows:
(Need to put juicefs-hadoop-x.x.x.jar
under fe/lib/
and apache_hdfs_broker/lib/
)
CREATE CATALOG hive PROPERTIES (
'type'='hms',
'hive.metastore.uris' = 'thrift://172.0.0.1:9083',
'hadoop.username' = 'root',
'fs.jfs.impl' = 'io.juicefs.JuiceFileSystem',
'fs.AbstractFileSystem.jfs.impl' = 'io.juicefs.JuiceFS',
'juicefs.meta' = 'xxx'
);
Hive On S3β
CREATE CATALOG hive PROPERTIES (
"type"="hms",
"hive.metastore.uris" = "thrift://172.0.0.1:9083",
"s3.endpoint" = "s3.us-east-1.amazonaws.com",
"s3.region" = "us-east-1",
"s3.access_key" = "ak",
"s3.secret_key" = "sk"
"use_path_style" = "true"
);
Options:
- s3.connection.maximum: s3 maximum connection number, default 50
- s3.connection.request.timeout: s3 request timeout, default 3000ms
- s3.connection.timeout: s3 connection timeout, default 1000ms
Hive On OSSβ
CREATE CATALOG hive PROPERTIES (
"type"="hms",
"hive.metastore.uris" = "thrift://172.0.0.1:9083",
"oss.endpoint" = "oss.oss-cn-beijing.aliyuncs.com",
"oss.access_key" = "ak",
"oss.secret_key" = "sk"
);
Hive On OBSβ
CREATE CATALOG hive PROPERTIES (
"type"="hms",
"hive.metastore.uris" = "thrift://172.0.0.1:9083",
"obs.endpoint" = "obs.cn-north-4.myhuaweicloud.com",
"obs.access_key" = "ak",
"obs.secret_key" = "sk"
);
Hive On COSβ
CREATE CATALOG hive PROPERTIES (
"type"="hms",
"hive.metastore.uris" = "thrift://172.0.0.1:9083",
"cos.endpoint" = "cos.ap-beijing.myqcloud.com",
"cos.access_key" = "ak",
"cos.secret_key" = "sk"
);
Hive With Glueβ
When connecting Glue, if it's not on the EC2 environment, need copy the
~/.aws
from the EC2 environment to the current environment. And can also download and configure the AWS Cli tools, which also creates the.aws
directory under the current user directory.
CREATE CATALOG hive PROPERTIES (
"type"="hms",
"hive.metastore.type" = "glue",
"glue.endpoint" = "https://glue.us-east-1.amazonaws.com",
"glue.access_key" = "ak",
"glue.secret_key" = "sk"
);
Metadata Cache & Refreshβ
For Hive Catalog, 4 types of metadata are cached in Doris:
- Table structure: cache table column information, etc.
- Partition value: Cache the partition value information of all partitions of a table.
- Partition information: Cache the information of each partition, such as partition data format, partition storage location, partition value, etc.
- File information: Cache the file information corresponding to each partition, such as file path location, etc.
The above cache information will not be persisted to Doris, so operations such as restarting Doris's FE node, switching masters, etc. may cause the cache to become invalid. After the cache expires, Doris will directly access the Hive MetaStore to obtain information and refill the cache.
Metadata cache can be updated automatically, manually, or configured with TTL (Time-to-Live) according to user needs.
Default behavior and TTLβ
By default, the metadata cache expires 10 minutes after it is first accessed. This time is determined by the configuration parameter external_cache_expire_time_minutes_after_access
in fe.conf. (Note that in versions 2.0.1 and earlier, the default value for this parameter was 1 day).
For example, if the user accesses the metadata of table A for the first time at 10:00, then the metadata will be cached and will automatically expire after 10:10. If the user accesses the same metadata again at 10:11, Doris will directly access the Hive MetaStore to obtain information and refill the cache.
external_cache_expire_time_minutes_after_access
affects all 4 caches under Catalog.
For the INSERT INTO OVERWRITE PARTITION
operation commonly used in Hive, you can also timely update the File Information Cache
by configuring the TTL of the File Information Cache
:
CREATE CATALOG hive PROPERTIES (
'type'='hms',
'hive.metastore.uris' = 'thrift://172.0.0.1:9083',
'file.meta.cache.ttl-second' = '60'
);
In the above example, file.meta.cache.ttl-second
is set to 60 seconds, and the cache will expire after 60 seconds. This parameter will only affect the file information cache
.
You can also set this value to 0 to disable file caching, which will fetch file information directly from the Hive MetaStore every time.
Manual refreshβ
Users need to manually refresh the metadata through the REFRESH command.
REFRESH CATALOG: Refresh the specified Catalog.
REFRESH CATALOG ctl1 PROPERTIES("invalid_cache" = "true");
This command will refresh the database list, table list, and all cache information of the specified Catalog.
invalid_cache
indicates whether to flush the cache. Defaults to true. If it is false, only the database and table list of the catalog will be refreshed, but the cache information will not be refreshed. This parameter is applicable when the user only wants to synchronize newly added or deleted database/table information.REFRESH DATABASE: Refresh the specified Database.
REFRESH DATABASE [ctl.]db1 PROPERTIES("invalid_cache" = "true");
This command will refresh the table list of the specified Database and all cached information under the Database.
The meaning of the
invalid_cache
attribute is the same as above. Defaults to true. If false, only the Database's table list will be refreshed, not cached information. This parameter is suitable for users who only want to synchronize newly added or deleted table information.REFRESH TABLE: Refresh the specified Table.
REFRESH TABLE [ctl.][db.]tbl1;
This command will refresh all cache information under the specified Table.
Regular refreshβ
Users can set the scheduled refresh of the Catalog when creating the Catalog.
CREATE CATALOG hive PROPERTIES (
'type'='hms',
'hive.metastore.uris' = 'thrift://172.0.0.1:9083',
'metadata_refresh_interval_sec' = '600'
);
In the above example, metadata_refresh_interval_sec
means refreshing the Catalog every 600 seconds. Equivalent to automatically executing every 600 seconds:
REFRESH CATALOG ctl1 PROPERTIES("invalid_cache" = "true");
The scheduled refresh interval must not be less than 5 seconds.
Auto Refreshβ
Currently, Doris only supports automatic update of metadata in Hive Metastore (HMS). It perceives changes in metadata by the FE node which regularly reads the notification events from HMS. The supported events are as follows:
Event | Corresponding Update Operation |
---|---|
CREATE DATABASE | Create a database in the corresponding catalog. |
DROP DATABASE | Delete a database in the corresponding catalog. |
ALTER DATABASE | Such alterations mainly include changes in properties, comments, or storage location of databases. They do not affect Doris' queries in External Catalogs so they will not be synchronized. |
CREATE TABLE | Create a table in the corresponding database. |
DROP TABLE | Delete a table in the corresponding database, and invalidate the cache of that table. |
ALTER TABLE | If it is a renaming, delete the table of the old name, and then create a new table with the new name; otherwise, invalidate the cache of that table. |
ADD PARTITION | Add a partition to the cached partition list of the corresponding table. |
DROP PARTITION | Delete a partition from the cached partition list of the corresponding table, and invalidate the cache of that partition. |
ALTER PARTITION | If it is a renaming, delete the partition of the old name, and then create a new partition with the new name; otherwise, invalidate the cache of that partition. |
After data ingestion, changes in partition tables will follow the
ALTER PARTITION
logic, while those in non-partition tables will follow theALTER TABLE
logic.If changes are conducted on the file system directly instead of through the HMS, the HMS will not generate an event. As a result, such changes will not be perceived by Doris.
The automatic update feature involves the following parameters in fe.conf:
enable_hms_events_incremental_sync
: This specifies whether to enable automatic incremental synchronization for metadata, which is disabled by default.hms_events_polling_interval_ms
: This specifies the interval between two readings, which is set to 10000 by default. (Unit: millisecond)hms_events_batch_size_per_rpc
: This specifies the maximum number of events that are read at a time, which is set to 500 by default.
To enable automatic update(Excluding Huawei MRS), you need to modify the hive-site.xml of HMS and then restart HMS and HiveServer2:
<property>
<name>hive.metastore.event.db.notification.api.auth</name>
<value>false</value>
</property>
<property>
<name>hive.metastore.dml.events</name>
<value>true</value>
</property>
<property>
<name>hive.metastore.transactional.event.listeners</name>
<value>org.apache.hive.hcatalog.listener.DbNotificationListener</value>
</property>
Huawei's MRS needs to change hivemetastore-site.xml and restart HMS and HiveServer2:
<property>
<name>metastore.transactional.event.listeners</name>
<value>org.apache.hive.hcatalog.listener.DbNotificationListener</value>
</property>
Note: Value is appended with commas separated from the original value, not overwritten.For example, the default configuration for MRS 3.1.0 is
<property>
<name>metastore.transactional.event.listeners</name>
<value>com.huawei.bigdata.hive.listener.TableKeyFileManagerListener,org.apache.hadoop.hive.metastore.listener.FileAclListener</value>
</property>
We need to change to
<property>
<name>metastore.transactional.event.listeners</name>
<value>com.huawei.bigdata.hive.listener.TableKeyFileManagerListener,org.apache.hadoop.hive.metastore.listener.FileAclListener,org.apache.hive.hcatalog.listener.DbNotificationListener</value>
</property>
Note: To enable automatic update, whether for existing Catalogs or newly created Catalogs, all you need is to set
enable_hms_events_incremental_sync
totrue
, and then restart the FE node. You don't need to manually update the metadata before or after the restart.
Hive Versionβ
Doris can correctly access the Hive Metastore in different Hive versions. By default, Doris will access the Hive Metastore with a Hive 2.3 compatible interface.
If you meet error message like Invalid method name: 'get_table_req'
, which means the hive version is mismatch.
You can specify the hive version when creating the Catalog. If accessing Hive 1.1.0 version:
CREATE CATALOG hive PROPERTIES (
'type'='hms',
'hive.metastore.uris' = 'thrift://172.0.0.1:9083',
'hive.version' = '1.1.0'
);
Column type mappingβ
For Hive/Iceberge/Hudi
HMS Type | Doris Type | Comment |
---|---|---|
boolean | boolean | |
tinyint | tinyint | |
smallint | smallint | |
int | int | |
bigint | bigint | |
date | date | |
timestamp | datetime | |
float | float | |
double | double | |
char | char | |
varchar | varchar | |
decimal | decimal | |
array<type> | array<type> | support nested type, for example array<array<int>> |
map<KeyType, ValueType> | map<KeyType, ValueType> | support nested type, for example map<string, array<int>> |
struct<col1: Type1, col2: Type2, ...> | struct<col1: Type1, col2: Type2, ...> | support nested type, for example struct<col1: array<int>, col2: map<int, date>> |
other | unsupported |
Note: Whether to truncate char or varchar columns according to the schema of the hive table
If the session variable
truncate_char_or_varchar_columns
is enabled, when the maximum length of the char or varchar column in the schema of the hive table is inconsistent with the schema in the underlying parquet or orc file, it will be truncated according to the maximum length of the hive table column.
The variable default is false.
Access HMS with brokerβ
Add following setting when creating an HMS catalog, file splitting and scanning for Hive external table will be completed by broker named test_broker
"broker.name" = "test_broker"
Doris has implemented Broker query support for HMS Catalog Iceberg based on the Iceberg FileIO
interface. If needed, the following configuration can be added when creating the HMS Catalog.
"io-impl" = "org.apache.doris.datasource.iceberg.broker.IcebergBrokerIO"
Integrate with Apache Rangerβ
Apache Ranger is a security framework for monitoring, enabling services, and comprehensive data security access management on the Hadoop platform.
Doris supports using Apache Ranger for authentication for a specified External Hive Catalog.
Currently, authentication of database, table, and column is supported. Functions such as encryption, row policy, and data masks are not currently supported.
To use Apache Ranger to authenticate the entire Doris cluster service, please refer to Apache Ranger Authentication
Settingsβ
To connect to the Hive Metastore with Ranger permission verification enabled, you need to add configuration & configuration environment:
When creating a Catalog, add:
"access_controller.properties.ranger.service.name" = "hive",
"access_controller.class" = "org.apache.doris.catalog.authorizer.ranger.hive.RangerHiveAccessControllerFactory",Note:
access_controller.properties.ranger.service.name
refers to the type of service, such ashive
,hdfs
, etc. It is not the value ofranger.plugin.hive.service.name
in the configuration file.Configure all FE environments:
Copy the configuration files ranger-hive-audit.xml, ranger-hive-security.xml, and ranger-policymgr-ssl.xml under the HMS conf directory to the FE conf directory.
Modify the properties of ranger-hive-security.xml, the reference configuration is as follows:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
#The directory for caching permission data, needs to be writable
<property>
<name>ranger.plugin.hive.policy.cache.dir</name>
<value>/mnt/datadisk0/zhangdong/rangerdata</value>
</property>
#The time interval for periodically pulling permission data
<property>
<name>ranger.plugin.hive.policy.pollIntervalMs</name>
<value>30000</value>
</property>
<property>
<name>ranger.plugin.hive.policy.rest.client.connection.timeoutMs</name>
<value>60000</value>
</property>
<property>
<name>ranger.plugin.hive.policy.rest.client.read.timeoutMs</name>
<value>60000</value>
</property>
<property>
<name>ranger.plugin.hive.policy.rest.ssl.config.file</name>
<value></value>
</property>
<property>
<name>ranger.plugin.hive.policy.rest.url</name>
<value>http://172.21.0.32:6080</value>
</property>
<property>
<name>ranger.plugin.hive.policy.source.impl</name>
<value>org.apache.ranger.admin.client.RangerAdminRESTClient</value>
</property>
<property>
<name>ranger.plugin.hive.service.name</name>
<value>hive</value>
</property>
<property>
<name>xasecure.hive.update.xapolicies.on.grant.revoke</name>
<value>true</value>
</property>
</configuration>In order to obtain the log of Ranger authentication itself, add the configuration file log4j.properties in the
<doris_home>/conf
directory.Restart FE.
Best Practicesβ
Create user user1 on the ranger side and authorize the query permission of db1.table1.col1
Create role role1 on the ranger side and authorize the query permission of db1.table1.col2
Create a user user1 with the same name in doris, user1 will directly have the query authority of db1.table1.col1
Create role1 with the same name in doris, and assign role1 to user1, user1 will have the query authority of db1.table1.col1 and col2 at the same time
The permissions of Admin and Root users are not controlled by Apache Ranger.
Connect to Kerberos enabled Hiveβ
This section mainly introduces how to connect to a Hive + HDFS cluster with Kerberos authentication enabled.
Environment preparationβ
krb5.conf
krb5.conf
is the configuration file for the Kerberos authentication protocol. This file needs to be deployed on all FE and BE nodes. And ensure that the Doris cluster can connect to the KDC service recorded in this file.By default, this file is located in the
/etc
directory of the Hadoop cluster. But please contact the Hadoop cluster administrator to obtain the correctkrb5.conf
file and deploy it to the/etc
directory of all FE and BE nodes.Note that in some cases the file location of
krb5.conf
may depend on the environment variableKRB5_CONFIG
or the-Djava.security.krb5.conf
in the JVM parameters. Please check these properties to determine the exact location ofkrb5.conf
.JVM parameters
Please add the following options to the JVM of FE and BE (located in
fe.conf
andbe.conf
):-Djavax.security.auth.useSubjectCredsOnly=false
-Dsun.security.krb5.debug=true
And restart the FE and BE nodes to ensure it takes effect.
Catalog configurationβ
Normally, to connect to a Kerberos enabled Hive cluster, you need to add the following attributes to the Catalog:
"hadoop.security.authentication" = "kerberos"
: Enable kerberos authentication method."hadoop.kerberos.principal" = "your_principal"
: The principal of the HDFS namenode. Typically thedfs.namenode.kerberos.principal
configuration ofhdfs-site.xml
."hadoop.kerberos.keytab" = "/path/to/your_keytab"
: keytab file of HDFS namenode. Typically thedfs.namenode.keytab.file
configuration ofhdfs-site.xml
. Note that this file needs to be deployed to the same directory of all FE and BE nodes (can be customized)."yarn.resourcemanager.principal" = "your_principal"
: The principal of Yarn Resource Manager, which can be found inyarn-site.xml
."hive.metastore.kerberos.principal" = "your_principal"
: The principal of the Hive metastore. Can be found inhive-site.xml
.
Note: Suggest to use
kinit -kt your_principal /path/to/your_keytab
δ»₯εklist -k /path/to/your_keytab
to get the ticket or check its validation.
Examples are as follows:
CREATE CATALOG hive_krb PROPERTIES (
'type'='hms',
'hive.metastore.uris' = 'thrift://172.0.0.1:9083',
'hive.metastore.sasl.enabled' = 'true',
'hive.metastore.kerberos.principal' = 'your-hms-principal',
'hadoop.security.authentication' = 'kerberos',
'hadoop.kerberos.keytab' = '/your-keytab-filepath/your.keytab',
'hadoop.kerberos.principal' = 'your-principal@YOUR.COM',
'yarn.resourcemanager.principal' = 'your-rm-principal'
);
CREATE CATALOG hive_krb_ha PROPERTIES (
'type'='hms',
'hive.metastore.uris' = 'thrift://172.0.0.1:9083',
'hive.metastore.sasl.enabled' = 'true',
'hive.metastore.kerberos.principal' = 'your-hms-principal',
'hadoop.security.authentication' = 'kerberos',
'hadoop.kerberos.keytab' = '/your-keytab-filepath/your.keytab',
'hadoop.kerberos.principal' = 'your-principal@YOUR.COM',
'yarn.resourcemanager.principal' = 'your-rm-principal',
'dfs.nameservices'='your-nameservice',
'dfs.ha.namenodes.your-nameservice'='nn1,nn2',
'dfs.namenode.rpc-address.your-nameservice.nn1'='172.21.0.2:8088',
'dfs.namenode.rpc-address.your-nameservice.nn2'='172.21.0.3:8088',
'dfs.client.failover.proxy.provider.your-nameservice'='org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider'
);
Troubleshootingβ
In case of Kerberos authentication problems, after setting the JVM parameter -Dsun.security.krb5.debug=true
, Kerberos authentication related information will be printed in fe.out
or be.out
. You can refer to the related errors in FAQ for troubleshooting.
Hive Transactional Tablesβ
Hive transactional tables are tables in Hive that support ACID (Atomicity, Consistency, Isolation, Durability) semantics. For more details, you can refer to: Hive Transactions.
Supported Operations for Hive Transactional Tables:β
Transactional Table Type | Supported Operations in Hive | Hive Table Properties | Supported Hive Versions |
---|---|---|---|
Full-ACID Transactional Table | Supports insert, update, delete operations | 'transactional'='true', 'transactional_properties'='insert_only' | 3.x, 2.x (requires major compaction in Hive before loading) |
Insert-Only Transactional Table | Supports only Insert operations | 'transactional'='true' | 3.x, 2.x |
Current Limitations:β
Currently, it does not support scenarios involving Original Files. When a table is transformed into a transactional table, subsequent newly written data files will use the schema of the Hive transactional table. However, existing data files will not be converted to the schema of the transactional table. These existing files are referred to as Original Files.