Iceberg External Table of Doris
Iceberg External Table of Doris provides Doris with the ability to access Iceberg external tables directly, eliminating the need for cumbersome data import and leveraging Doris’ own OLAP capabilities to solve Iceberg table data analysis problems.
- support Iceberg data sources to access Doris
- Support joint query between Doris and Iceberg data source tables to perform more complex analysis operations
This document introduces how to use this feature and the considerations.
Glossary
Noun in Doris
- FE: Frontend, the front-end node of Doris, responsible for metadata management and request access
- BE: Backend, the backend node of Doris, responsible for query execution and data storage
How to use
Create Iceberg External Table
Iceberg tables can be created in Doris in two ways. You do not need to declare the column definitions of the table when creating an external table, Doris can automatically convert them based on the column definitions of the table in Iceberg.
Create a separate external table to mount the Iceberg table.
The syntax can be viewed inHELP CREATE TABLE
.``` — Syntax CREATE [EXTERNAL] TABLE table_name ENGINE = ICEBERG [COMMENT “comment”] PROPERTIES ( “iceberg.database” = “iceberg_db_name”, “iceberg.table” = “icberg_table_name”, “iceberg.hive.metastore.uris” = “thrift://192.168.0.1:9083”, “iceberg.catalog.type” = “HIVE_CATALOG” );
-- Example: Mount iceberg_table under iceberg_db in Iceberg
CREATE TABLE `t_iceberg`
ENGINE = ICEBERG
PROPERTIES (
"iceberg.database" = "iceberg_db",
"iceberg.table" = "iceberg_table",
"iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
"iceberg.catalog.type" = "HIVE_CATALOG"
);
```
Create an Iceberg database to mount the corresponding Iceberg database on the remote side, and mount all the tables under the database.
You can check the syntax withHELP CREATE DATABASE
.-- Syntax
CREATE DATABASE db_name
[COMMENT "comment"]
PROPERTIES (
"iceberg.database" = "iceberg_db_name",
"iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
"iceberg.catalog.type" = "HIVE_CATALOG"
);
-- Example: mount the iceberg_db in Iceberg and mount all tables under that db
CREATE DATABASE `iceberg_test_db`
PROPERTIES (
"iceberg.database" = "iceberg_db",
"iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
"iceberg.catalog.type" = "HIVE_CATALOG"
);
The progress of the table build in
iceberg_test_db
can be viewed byHELP SHOW TABLE CREATION
.
You can also create an Iceberg table by explicitly specifying the column definitions according to your needs.
Create an Iceberg table
-- Syntax
CREATE [EXTERNAL] TABLE table_name (
col_name col_type [NULL | NOT NULL] [COMMENT "comment"]
) ENGINE = ICEBERG
[COMMENT "comment"] )
PROPERTIES (
"iceberg.database" = "iceberg_db_name",
"iceberg.table" = "icberg_table_name",
"iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
"iceberg.catalog.type" = "HIVE_CATALOG"
);
-- Example: Mount iceberg_table under iceberg_db in Iceberg
CREATE TABLE `t_iceberg` (
`id` int NOT NULL COMMENT "id number",
`name` varchar(10) NOT NULL COMMENT "user name"
) ENGINE = ICEBERG
PROPERTIES (
"iceberg.database" = "iceberg_db",
"iceberg.table" = "iceberg_table",
"iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
"iceberg.catalog.type" = "HIVE_CATALOG"
);
Parameter Description
- External Table Columns
- Column names should correspond to the Iceberg table
- The order of the columns needs to be consistent with the Iceberg table
- ENGINE needs to be specified as ICEBERG
- PROPERTIES property.
iceberg.hive.metastore.uris
: Hive Metastore service addressiceberg.database
: the name of the database to which Iceberg is mountediceberg.table
: the name of the table to which Iceberg is mounted, not required when mounting Iceberg database.iceberg.catalog.type
: the catalog method used in Iceberg, the default isHIVE_CATALOG
, currently only this method is supported, more Iceberg catalog access methods will be supported in the future.
Show table structure
Show table structure can be viewed by HELP SHOW CREATE TABLE
.
Synchronized mounts
When the Iceberg table Schema changes, you can manually synchronize it with the REFRESH
command, which will remove and rebuild the Iceberg external table in Doris, as seen in the HELP REFRESH
help.
-- Synchronize the Iceberg table
REFRESH TABLE t_iceberg;
-- Synchronize the Iceberg database
REFRESH DATABASE iceberg_test_db;
Data Type Matching
The supported Iceberg column types correspond to Doris in the following table.
Iceberg | Doris | Description |
---|---|---|
BOOLEAN | BOOLEAN | |
INTEGER | INT | |
LONG | BIGINT | |
FLOAT | FLOAT | |
DOUBLE | DOUBLE | |
DATE | DATE | |
TIMESTAMP | DATETIME | Timestamp to Datetime with loss of precision |
STRING | STRING | |
UUID | VARCHAR | Use VARCHAR instead |
DECIMAL | DECIMAL | |
TIME | - | not supported |
FIXED | - | not supported |
BINARY | - | not supported |
STRUCT | - | not supported |
LIST | - | not supported |
MAP | - | not supported |
Note:
- Iceberg table Schema changes are not automatically synchronized and require synchronization of Iceberg external tables or databases in Doris via the
REFRESH
command. - The current default supported version of Iceberg is 0.12.0 and has not been tested in other versions. More versions will be supported in the future.
Query Usage
Once you have finished building the Iceberg external table in Doris, it is no different from a normal Doris OLAP table except that you cannot use the data models in Doris (rollup, preaggregation, materialized views, etc.)
select * from t_iceberg where k1 > 1000 and k3 = 'term' or k4 like '%doris';
Related system configurations
FE Configuration
The following configurations are at the Iceberg external table system level and can be configured by modifying fe.conf
or by ADMIN SET CONFIG
.
iceberg_table_creation_strict_mode
Iceberg tables are created with strict mode enabled by default.
strict mode means that the column types of the Iceberg table are strictly filtered, and if there are data types that Doris does not currently support, the creation of the table will fail.iceberg_table_creation_interval_second
The background task execution interval for automatic creation of Iceberg tables, default is 10s.
max_iceberg_table_creation_record_size
The maximum value reserved for Iceberg table creation records, default is 2000. Only for creating Iceberg database records.