Class Catalogs
Catalog API.
 If the catalog name is provided, get the catalog type from iceberg.catalog.catalogName
 .type config.
 
In case the catalog name is location_based_table, type is
 ignored and tables will be loaded using HadoopTables.
 
In case the value of catalog type is null, iceberg.catalog.catalogName
 .catalog-impl config is used to determine the catalog implementation class.
 
If catalog name is null, get the catalog type from catalog type config:
 
- hive: HiveCatalog
- location: HadoopTables
- hadoop: HadoopCatalog
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionstatic TablecreateTable(org.apache.hadoop.conf.Configuration conf, Properties props) Creates an Iceberg table using the catalog specified by the configuration.static booleandropTable(org.apache.hadoop.conf.Configuration conf, Properties props) Drops an Iceberg table using the catalog specified by the configuration.static booleanhiveCatalog(org.apache.hadoop.conf.Configuration conf, Properties props) Returns true if HiveCatalog is usedstatic TableloadTable(org.apache.hadoop.conf.Configuration conf) Load an Iceberg table using the catalog and table identifier (or table path) specified by the configuration.static TableloadTable(org.apache.hadoop.conf.Configuration conf, Properties props) Load an Iceberg table using the catalog specified by the configuration.
- 
Field Details- 
ICEBERG_DEFAULT_CATALOG_NAME- See Also:
 
- 
ICEBERG_HADOOP_TABLE_NAME- See Also:
 
- 
NAME- See Also:
 
- 
LOCATION- See Also:
 
 
- 
- 
Method Details- 
loadTableLoad an Iceberg table using the catalog and table identifier (or table path) specified by the configuration.- Parameters:
- conf- a Hadoop conf
- Returns:
- an Iceberg table
 
- 
loadTableLoad an Iceberg table using the catalog specified by the configuration.The table identifier ( NAME) and the catalog name (InputFormatConfig.CATALOG_NAME), or table path (LOCATION) should be specified by the controlling properties.Used by HiveIcebergSerDe and HiveIcebergStorageHandler - Parameters:
- conf- a Hadoop
- props- the controlling properties
- Returns:
- an Iceberg table
 
- 
createTableCreates an Iceberg table using the catalog specified by the configuration.The properties should contain the following values: - Table identifier (NAME) or table path (LOCATION) is required
- Table schema (InputFormatConfig.TABLE_SCHEMA) is required
- Partition specification (InputFormatConfig.PARTITION_SPEC) is optional. Table will be unpartitioned if not provided
 Other properties will be handled over to the Table creation. The controlling properties above will not be propagated. - Parameters:
- conf- a Hadoop conf
- props- the controlling properties
- Returns:
- the created Iceberg table
 
- Table identifier (
- 
dropTableDrops an Iceberg table using the catalog specified by the configuration.The table identifier ( NAME) or table path (LOCATION) should be specified by the controlling properties.- Parameters:
- conf- a Hadoop conf
- props- the controlling properties
- Returns:
- the created Iceberg table
 
- 
hiveCatalogReturns true if HiveCatalog is used- Parameters:
- conf- a Hadoop conf
- props- the controlling properties
- Returns:
- true if the Catalog is HiveCatalog
 
 
-