You can execute the IMPORT FOREIGN SCHEMA statement to create multiple foreign tables at a time in Hologres. This topic describes the syntax and limits of the IMPORT FOREIGN SCHEMA statement.
Limits
We recommend that you use the
LIMIT TO
clause to specify the source tables and enclose the table names in parentheses "( )" in theIMPORT FOREIGN SCHEMA
statement. Otherwise, foreign tables are created in Hologres to map all the tables in the specified MaxCompute project.Only Hologres V1.1.26 and later allow you to add prefixes or suffixes to the names of foreign tables created by using the
IMPORT FOREIGN SCHEMA
statement. If the version of your Hologres instance is earlier than V1.1.26, manually upgrade your Hologres instance in the Hologres console or join a DingTalk group to apply for an instance upgrade. For more information about how to manually upgrade a Hologres instance, see Instance upgrades. For more information about how to join a DingTalk group, see Obtain online support for Hologres.Only Hologres V1.3 and later support MaxCompute projects that use the three-layer model. This model allows you to create schemas in MaxCompute projects and use these schemas to classify objects such as tables. For more information, see Schema-related operations. If you want to create a foreign table in a Hologres instance to map a table in a MaxCompute project that uses the three-layer model and the version of your Hologres instance is earlier than V1.3, manually upgrade your Hologres instance in the Hologres console or join a DingTalk group to apply for an instance upgrade. For more information about how to manually upgrade a Hologres instance, see Instance upgrades. For more information about how to join a DingTalk group, see Obtain online support for Hologres.
Syntax
The following sample code provides an example on how to use the IMPORT FOREIGN SCHEMA statement to create multiple foreign tables at a time in Hologres:
IMPORT FOREIGN SCHEMA remote_schema
[ { LIMIT TO | EXCEPT } ( table_name [, ...] ) ]
FROM SERVER odps_server
INTO local_schema
[ OPTIONS ( option 'value' [, ... ] ) ]
Parameters
The following table describes the parameters in the preceding syntax.
Parameter | Description |
remote_schema |
|
table_name | The names of the MaxCompute source tables. |
server_name | The name of the server on which the MaxCompute source tables are stored. Default value: odps_server. You can use the odps_server server that is created at the underlying layer of Hologres. For more information, see postgres_fdw. |
local_schema | The name of the schema to which the Hologres foreign tables belong, such as public. |
options | Hologres supports the following options:
|
Hologres supports only foreign tables that are sourced from MaxCompute. The created foreign tables are named the same as the MaxCompute source tables.
Examples
MaxCompute projects that use the two-layer model
In the examples, foreign tables are created in Hologres to map the tables in the public dataset public_data in MaxCompute.
Example 1: Create a foreign table in the schema named public. If the foreign table that you want to create already exists in Hologres, update the existing table.
IMPORT FOREIGN SCHEMA public_data LIMIT to (customer) FROM server odps_server INTO PUBLIC options(if_table_exist 'update');
Example 2: Create multiple foreign tables at a time in the schema named public.
IMPORT FOREIGN SCHEMA public_data LIMIT to( customer, customer_address, customer_demographics, inventory,item, date_dim, warehouse) FROM server odps_server INTO PUBLIC options(if_table_exist 'update');
Example 3: Create a schema named testdemo and create multiple foreign tables at a time in the schema.
create schema testdemo; IMPORT FOREIGN SCHEMA public_data LIMIT to( customer, customer_address, customer_demographics, inventory,item, date_dim, warehouse) FROM server odps_server INTO testdemo options(if_table_exist 'update'); set search_path to testdemo;
Example 4: Create multiple foreign tables at a time in the schema named public. If a foreign table that you want to create already exists, an error is returned.
IMPORT FOREIGN SCHEMA public_data LIMIT to (customer, customer_address) FROM server odps_server INTO PUBLIC options(if_table_exist 'error');
Example 5: Create multiple foreign tables at a time in the schema named public. If a foreign table that you want to create already exists, skip the creation of this foreign table.
IMPORT FOREIGN SCHEMA public_data LIMIT to (customer, customer_address) FROM server odps_server INTO PUBLIC options(if_table_exist 'ignore');
MaxCompute projects that use the three-layer model
In this example, a foreign table is created in Hologres to map the
odps_region_10g
table in thetpch_10g
schema of theodps_hologres
MaxCompute project.IMPORT FOREIGN SCHEMA "odps_hologres#tpch_10g" LIMIT to ( odps_region_10g ) FROM SERVER odps_server INTO public OPTIONS(if_table_exist 'error',if_unsupported_type 'error');
Create multiple foreign tables at a time in HoloWeb
You can use HoloWeb to create multiple foreign tables at a time in a visualized manner, without the need to write SQL statements. Procedure:
Log on to the Hologres console. In the left-side navigation pane, click Go to HoloWeb to go to the HoloWeb page. For more information, see Connect to HoloWeb.
In the top navigation bar of the HoloWeb page, choose
and select Create Foreign Table.You can also click Instances Connected in the left-side navigation pane of the Metadata Management tab. Click the instance and the database that you want to manage. Right-click the schema that you want to manage and select Create Multiple Foreign Tables.
On the Create Multiple Foreign Tables tab, configure the parameters as required.
Section
Parameter
Description
MaxCompute Data Source
Project Name
The name of the MaxCompute project.
Schema Name
The name of the schema in MaxCompute. If your MaxCompute project uses the two-layer model, this parameter is not displayed by default. If your MaxCompute project uses the three-layer model, you can select an authorized schema from the drop-down list.
Destination Table Position
Schema Name
The name of the schema.
You can select the default schema named public or a custom schema.
Advanced Settings
Data Source
Entire Project: creates foreign tables for all the tables in the MaxCompute project at a time.
Selected Tables: creates foreign tables only for specified tables in the MaxCompute project. You can search for required tables based on table names or keywords.
NoteIf you select Selected Tables and search for required tables, a maximum of 200 tables are displayed in the search results. The excess tables are not displayed, but foreign tables can be created for the excess tables.
For example, the MaxCompute project has 203 tables whose names contain test. When you enter test to search for tables, only 200 tables are displayed in the search results. However, foreign tables can be created for all 203 tables.
Processing Rule for Table Name Conflicts
Ignore Conflicts and Continue Creating Tables: If a foreign table that you want to create is named the same as an existing foreign table in the database, the system skips the creation of this table and continues to create other tables.
Change Table Names: If a foreign table that you want to create is named the same as an existing foreign table in the database, the system updates data in the existing foreign table.
Report Error and Create No Table: If a foreign table that you want to create is named the same as an existing foreign table in the database, an error is reported to prevent repeated creation.
Processing Rule for Unsupported Data Types
Report Error and Stop Import: If specific data types in the source tables are not supported by Hologres, an error is reported and data import fails.
Ignore and Skip Table of Unsupported Fields: If specific data types in the source tables are not supported by Hologres, the system imports data from all fields except for fields of the unsupported data types.
Click Run. Multiple foreign tables are created at a time.