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.

  1. support Iceberg data sources to access Doris
  2. 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.

  1. Create a separate external table to mount the Iceberg table.
    The syntax can be viewed in CREATE TABLE.

    1. -- Syntax
    2. CREATE [EXTERNAL] TABLE table_name
    3. ENGINE = ICEBERG
    4. [COMMENT "comment"]
    5. PROPERTIES (
    6. "iceberg.database" = "iceberg_db_name",
    7. "iceberg.table" = "icberg_table_name",
    8. "iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
    9. "iceberg.catalog.type" = "HIVE_CATALOG"
    10. );
  1. -- Example 1: Mount iceberg_table under iceberg_db in Iceberg
  2. CREATE TABLE `t_iceberg`
  3. ENGINE = ICEBERG
  4. PROPERTIES (
  5. "iceberg.database" = "iceberg_db",
  6. "iceberg.table" = "iceberg_table",
  7. "iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
  8. "iceberg.catalog.type" = "HIVE_CATALOG"
  9. -- Example 2: Mount iceberg_table under iceberg_db in Iceberg, with HDFS HA enabled.
  10. CREATE TABLE `t_iceberg`
  11. ENGINE = ICEBERG
  12. PROPERTIES (
  13. "iceberg.database" = "iceberg_db",
  14. "iceberg.table" = "iceberg_table"
  15. "iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
  16. "iceberg.catalog.type" = "HIVE_CATALOG",
  17. "dfs.nameservices"="HDFS8000463",
  18. "dfs.ha.namenodes.HDFS8000463"="nn2,nn1",
  19. "dfs.namenode.rpc-address.HDFS8000463.nn2"="172.21.16.5:4007",
  20. "dfs.namenode.rpc-address.HDFS8000463.nn1"="172.21.16.26:4007",
  21. "dfs.client.failover.proxy.provider.HDFS8000463"="org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider"
  22. );
  23. ```
  1. 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 with CREATE DATABASE.

    1. -- Syntax
    2. CREATE DATABASE db_name
    3. [COMMENT "comment"]
    4. PROPERTIES (
    5. "iceberg.database" = "iceberg_db_name",
    6. "iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
    7. "iceberg.catalog.type" = "HIVE_CATALOG"
    8. );
    9. -- Example: mount the iceberg_db in Iceberg and mount all tables under that db
    10. CREATE DATABASE `iceberg_test_db`
    11. PROPERTIES (
    12. "iceberg.database" = "iceberg_db",
    13. "iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
    14. "iceberg.catalog.type" = "HIVE_CATALOG"
    15. );

    The progress of the table build in iceberg_test_db can be viewed by HELP SHOW TABLE CREATION.

You can also create an Iceberg table by explicitly specifying the column definitions according to your needs.

  1. Create an Iceberg table

    1. -- Syntax
    2. CREATE [EXTERNAL] TABLE table_name (
    3. col_name col_type [NULL | NOT NULL] [COMMENT "comment"]
    4. ) ENGINE = ICEBERG
    5. [COMMENT "comment"] )
    6. PROPERTIES (
    7. "iceberg.database" = "iceberg_db_name",
    8. "iceberg.table" = "icberg_table_name",
    9. "iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
    10. "iceberg.catalog.type" = "HIVE_CATALOG"
    11. );
    12. -- Example 1: Mount iceberg_table under iceberg_db in Iceberg
    13. CREATE TABLE `t_iceberg` (
    14. `id` int NOT NULL COMMENT "id number",
    15. `name` varchar(10) NOT NULL COMMENT "user name"
    16. ) ENGINE = ICEBERG
    17. PROPERTIES (
    18. "iceberg.database" = "iceberg_db",
    19. "iceberg.table" = "iceberg_table",
    20. "iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
    21. "iceberg.catalog.type" = "HIVE_CATALOG"
    22. );
    23. -- Example 2: Mount iceberg_table under iceberg_db in Iceberg, with HDFS HA enabled.
    24. CREATE TABLE `t_iceberg` (
    25. `id` int NOT NULL COMMENT "id number",
    26. `name` varchar(10) NOT NULL COMMENT "user name"
    27. ) ENGINE = ICEBERG
    28. PROPERTIES (
    29. "iceberg.database" = "iceberg_db",
    30. "iceberg.table" = "iceberg_table",
    31. "iceberg.hive.metastore.uris" = "thrift://192.168.0.1:9083",
    32. "iceberg.catalog.type" = "HIVE_CATALOG",
    33. "dfs.nameservices"="HDFS8000463",
    34. "dfs.ha.namenodes.HDFS8000463"="nn2,nn1",
    35. "dfs.namenode.rpc-address.HDFS8000463.nn2"="172.21.16.5:4007",
    36. "dfs.namenode.rpc-address.HDFS8000463.nn1"="172.21.16.26:4007",
    37. "dfs.client.failover.proxy.provider.HDFS8000463"="org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider"
    38. );

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 address
    • iceberg.database: the name of the database to which Iceberg is mounted
    • iceberg.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 is HIVE_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 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.

  1. -- Synchronize the Iceberg table
  2. REFRESH TABLE t_iceberg;
  3. -- Synchronize the Iceberg database
  4. REFRESH DATABASE iceberg_test_db;

Data Type Matching

The supported Iceberg column types correspond to Doris in the following table.

IcebergDorisDescription
BOOLEANBOOLEAN
INTEGERINT
LONGBIGINT
FLOATFLOAT
DOUBLEDOUBLE
DATEDATE
TIMESTAMPDATETIMETimestamp to Datetime with loss of precision
STRINGSTRING
UUIDVARCHARUse VARCHAR instead
DECIMALDECIMAL
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,0.13.2 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.)

  1. select * from t_iceberg where k1 > 1000 and k3 = 'term' or k4 like '%doris';

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.