Iceberg catalog
Introduction
Apache Gravitino provides the ability to manage Apache Iceberg metadata.
Requirements and limitations
Builds with Apache Iceberg 1.5.2
. The Apache Iceberg table format version is 2
by default.
Catalog
Catalog capabilities
- Works as a catalog proxy, supporting
Hive
,JDBC
andREST
as catalog backend. - Supports DDL operations for Iceberg schemas and tables.
- Doesn't support snapshot or table management operations.
- Supports multi storage.
- S3
- HDFS
- OSS
- Supports Kerberos or simple authentication for Iceberg catalog with Hive backend.
Catalog properties
Property name | Description | Default value | Required | Since Version |
---|---|---|---|---|
catalog-backend | Catalog backend of Gravitino Iceberg catalog. Supports hive or jdbc or rest . | (none) | Yes | 0.2.0 |
uri | The URI configuration of the Iceberg catalog. thrift://127.0.0.1:9083 or jdbc:postgresql://127.0.0.1:5432/db_name or jdbc:mysql://127.0.0.1:3306/metastore_db or http://127.0.0.1:9001 . | (none) | Yes | 0.2.0 |
warehouse | Warehouse directory of catalog. file:///user/hive/warehouse-hive/ for local fs or hdfs://namespace/hdfs/path for HDFS. | (none) | Yes | 0.2.0 |
catalog-backend-name | The catalog name passed to underlying Iceberg catalog backend. Catalog name in JDBC backend is used to isolate namespace and tables. | The property value of catalog-backend , like jdbc for JDBC catalog backend. | No | 0.5.2 |
Any property not defined by Gravitino with gravitino.bypass.
prefix will pass to Iceberg catalog properties and HDFS configuration. For example, if specify gravitino.bypass.list-all-tables
, list-all-tables
will pass to Iceberg catalog properties.
If you are using the Gravitino with Trino, you can pass the Trino Iceberg connector configuration using prefix trino.bypass.
. For example, using trino.bypass.iceberg.table-statistics-enabled
to pass the iceberg.table-statistics-enabled
to the Gravitino Iceberg catalog in Trino runtime.
If you are using the Gravitino with Spark, you can pass the Spark Iceberg connector configuration using prefix spark.bypass.
. For example, using spark.bypass.io-impl
to pass the io-impl
to the Spark Iceberg connector in Spark runtime.
JDBC backend
If you are using JDBC backend, you must provide properties like jdbc-user
, jdbc-password
and jdbc-driver
.
Property name | Description | Default value | Required | Since Version |
---|---|---|---|---|
jdbc-user | JDBC user name | (none) | Yes | 0.2.0 |
jdbc-password | JDBC password | (none) | Yes | 0.2.0 |
jdbc-driver | com.mysql.jdbc.Driver or com.mysql.cj.jdbc.Driver for MySQL, org.postgresql.Driver for PostgreSQL | (none) | Yes | 0.3.0 |
jdbc-initialize | Whether to initialize meta tables when create JDBC catalog | true | No | 0.2.0 |
If you have a JDBC Iceberg catalog prior, you must set catalog-backend-name
to keep consistent with your Jdbc Iceberg catalog name to operate the prior namespace and tables.
You must download the corresponding JDBC driver and place it to the catalogs/lakehouse-iceberg/libs
directory If you are using JDBC backend.
S3
Supports using static access-key-id and secret-access-key to access S3 data.
Configuration item | Description | Default value | Required | Since Version |
---|---|---|---|---|
io-impl | The io implementation for FileIO in Iceberg, use org.apache.iceberg.aws.s3.S3FileIO for s3. | (none) | No | 0.6.0-incubating |
s3-access-key-id | The static access key ID used to access S3 data. | (none) | No | 0.6.0-incubating |
s3-secret-access-key | The static secret access key used to access S3 data. | (none) | No | 0.6.0-incubating |
s3-endpoint | An alternative endpoint of the S3 service, This could be used for S3FileIO with any s3-compatible object storage service that has a different endpoint, or access a private S3 endpoint in a virtual private cloud. | (none) | No | 0.6.0-incubating |
s3-region | The region of the S3 service, like us-west-2 . | (none) | No | 0.6.0-incubating |
For other Iceberg s3 properties not managed by Gravitino like s3.sse.type
, you could config it directly by gravitino.bypass.s3.sse.type
.
To configure the JDBC catalog backend, set the warehouse
parameter to s3://{bucket_name}/${prefix_name}
. For the Hive catalog backend, set warehouse
to s3a://{bucket_name}/${prefix_name}
. Additionally, download the Iceberg AWS bundle and place it in the catalogs/lakehouse-iceberg/libs/
directory.
OSS
Gravitino Iceberg REST service supports using static access-key-id and secret-access-key to access OSS data.
Configuration item | Description | Default value | Required | Since Version |
---|---|---|---|---|
io-impl | The IO implementation for FileIO in Iceberg, use org.apache.iceberg.aliyun.oss.OSSFileIO for OSS. | (none) | No | 0.6.0-incubating |
oss-access-key-id | The static access key ID used to access OSS data. | (none) | No | 0.7.0-incubating |
oss-secret-access-key | The static secret access key used to access OSS data. | (none) | No | 0.7.0-incubating |
oss-endpoint | The endpoint of Aliyun OSS service. | (none) | No | 0.7.0-incubating |
For other Iceberg OSS properties not managed by Gravitino like client.security-token
, you could config it directly by gravitino.bypass.client.security-token
.
Please set the warehouse
parameter to oss://{bucket_name}/${prefix_name}
. Additionally, download the Aliyun OSS SDK and copy aliyun-sdk-oss-3.10.2.jar
, hamcrest-core-1.1.jar
, jdom2-2.0.6.jar
in the catalogs/lakehouse-iceberg/libs/
directory.
GCS
Supports using google credential file to access GCS data.
Configuration item | Description | Default value | Required | Since Version |
---|---|---|---|---|
io-impl | The io implementation for FileIO in Iceberg, use org.apache.iceberg.gcp.gcs.GCSFileIO for GCS. | (none) | No | 0.6.0-incubating |
For other Iceberg GCS properties not managed by Gravitino like gcs.project-id
, you could config it directly by gravitino.bypass.gcs.project-id
.
Please make sure the credential file is accessible by Gravitino, like using export GOOGLE_APPLICATION_CREDENTIALS=/xx/application_default_credentials.json
before Gravitino server is started.
Please set warehouse
to gs://{bucket_name}/${prefix_name}
, and download Iceberg GCP bundle jar and place it to catalogs/lakehouse-iceberg/libs/
.
Other storages
For other storages that are not managed by Gravitino directly, you can manage them through custom catalog properties.
Configuration item | Description | Default value | Required | Since Version |
---|---|---|---|---|
io-impl | The IO implementation for FileIO in Iceberg, please use the full qualified classname. | (none) | No | 0.6.0-incubating |
To pass custom properties such as security-token
to your custom FileIO
, you can directly configure it by gravitino.bypass.security-token
. security-token
will be included in the properties when the initialize method of FileIO
is invoked.
Please set the warehouse
parameter to {storage_prefix}://{bucket_name}/${prefix_name}
. Additionally, download corresponding jars in the catalogs/lakehouse-iceberg/libs/
directory.
Catalog backend security
Users can use the following properties to configure the security of the catalog backend if needed. For example, if you are using a Kerberos Hive catalog backend, you must set authentication.type
to Kerberos
and provide authentication.kerberos.principal
and authentication.kerberos.keytab-uri
.
Property name | Description | Default value | Required | Since Version |
---|---|---|---|---|
authentication.type | The type of authentication for Iceberg catalog backend. This configuration only applicable for for Hive backend, and only supports Kerberos , simple currently. As for JDBC backend, only username/password authentication was supported now. | simple | No | 0.6.0-incubating |
authentication.impersonation-enable | Whether to enable impersonation for the Iceberg catalog | false | No | 0.6.0-incubating |
hive.metastore.sasl.enabled | Whether to enable SASL authentication protocol when connect to Kerberos Hive metastore. This is a raw Hive configuration | false | No, This value should be true in most case(Some will use SSL protocol, but it rather rare) if the value of gravitino.iceberg-rest.authentication.type is Kerberos. | 0.6.0-incubating |
authentication.kerberos.principal | The principal of the Kerberos authentication | (none) | required if the value of authentication.type is Kerberos. | 0.6.0-incubating |
authentication.kerberos.keytab-uri | The URI of The keytab for the Kerberos authentication. | (none) | required if the value of authentication.type is Kerberos. | 0.6.0-incubating |
authentication.kerberos.check-interval-sec | The check interval of Kerberos credential for Iceberg catalog. | 60 | No | 0.6.0-incubating |
authentication.kerberos.keytab-fetch-timeout-sec | The fetch timeout of retrieving Kerberos keytab from authentication.kerberos.keytab-uri . | 60 | No | 0.6.0-incubating |
Catalog operations
Please refer to Manage Relational Metadata Using Gravitino for more details.
Schema
Schema capabilities
- doesn't support cascade drop schema.
Schema properties
You could put properties except comment
.
Schema operations
Please refer to Manage Relational Metadata Using Gravitino for more details.
Table
Table capabilities
- Doesn't support column default value.
Table partitions
Supports transforms:
IdentityTransform
BucketTransform
TruncateTransform
YearTransform
MonthTransform
DayTransform
HourTransform
Iceberg doesn't support multi fields in BucketTransform
.
Iceberg doesn't support ApplyTransform
, RangeTransform
, and ListTransform
.
Table sort orders
supports expressions:
FieldReference
FunctionExpression
bucket
truncate
year
month
day
hour
For bucket
and truncate
, the first argument must be integer literal, and the second argument must be field reference.
Table distributions
- Gravitino used by default
NoneDistribution
.
- JSON
- Java
{
"strategy": "none",
"number": 0,
"expressions": []
}
Distributions.NONE;
- Support
HashDistribution
, Hash distribute by partition key.
- JSON
- Java
{
"strategy": "hash",
"number": 0,
"expressions": []
}
Distributions.HASH;
- Support
RangeDistribution
, You can passrange
as values through the API. Range distribute by partition key or sort key if table has an SortOrder.
- JSON
- Java
{
"strategy": "range",
"number": 0,
"expressions": []
}
Distributions.RANGE;
Iceberg automatically distributes the data according to the partition or table sort order. It is forbidden to specify distribution expressions.
Apache Iceberg doesn't support Gravitino EvenDistribution
type.
Table column types
Gravitino Type | Apache Iceberg Type |
---|---|
Struct | Struct |
Map | Map |
List | Array |
Boolean | Boolean |
Integer | Integer |
Long | Long |
Float | Float |
Double | Double |
String | String |
Date | Date |
Time | Time |
TimestampType withZone | TimestampType withZone |
TimestampType withoutZone | TimestampType withoutZone |
Decimal | Decimal |
Fixed | Fixed |
Binary | Binary |
UUID | UUID |
Apache Iceberg doesn't support Gravitino Varchar
Fixedchar
Byte
Short
Union
type.
Meanwhile, the data types other than listed above are mapped to Gravitino External Type that represents an unresolvable data type since 0.6.0-incubating.
Table properties
You can pass Iceberg table properties to Gravitino when creating an Iceberg table.
The Gravitino server doesn't allow passing the following reserved fields.
Configuration item | Description | Since Version |
---|---|---|
comment | The table comment, please use comment field in table meta instead. | 0.2.0 |
creator | The table creator. | 0.2.0 |
current-snapshot-id | The snapshot represents the current state of the table. | 0.2.0 |
cherry-pick-snapshot-id | Selecting a specific snapshot in a merge operation. | 0.2.0 |
sort-order | Iceberg table sort order, please use SortOrder in table meta instead. | 0.2.0 |
identifier-fields | The identifier fields for defining the table. | 0.2.0 |
write.distribution-mode | Defines distribution of write data, please use distribution in table meta instead. | 0.2.0 |
Gravitino server doesn't allow to change such properties:
Configuration item | Description | Default value | Required | Since Version |
---|---|---|---|---|
location | Iceberg location for table storage. | None | No | 0.2.0 |
Table indexes
- Doesn't support table indexes.
Table operations
Please refer to Manage Relational Metadata Using Gravitino for more details.
Alter table operations
Supports operations:
RenameTable
SetProperty
RemoveProperty
UpdateComment
AddColumn
DeleteColumn
RenameColumn
UpdateColumnType
UpdateColumnPosition
UpdateColumnNullability
UpdateColumnComment
The default column position is LAST
when you add a column. If you add a non nullability column, there may be compatibility issues.
If you update a nullability column to non nullability, there may be compatibility issues.
HDFS configuration
You can place core-site.xml
and hdfs-site.xml
in the catalogs/lakehouse-iceberg/conf
directory to automatically load as the default HDFS configuration.
Builds with Hadoop 2.10.x, there may be compatibility issues when accessing Hadoop 3.x clusters. When writing to HDFS, the Gravitino Iceberg REST server can only operate as the specified HDFS user and doesn't support proxying to other HDFS users. See How to access Apache Hadoop for more details.