Skip to main content
Version: 0.5.0

Iceberg REST catalog service

Background

The Gravitino Iceberg REST Server follows the Apache Iceberg REST API specification and acts as an Iceberg REST catalog server.

Capabilities

  • Supports the Apache Iceberg REST API defined in Iceberg 1.3.1, and supports all namespace and table interfaces. Token, and Config interfaces aren't supported yet.
  • Works as a catalog proxy, supporting Hive and JDBC as catalog backend.
  • Provides a pluggable metrics store interface to store and delete Iceberg metrics.
  • When writing to HDFS, the Gravitino Iceberg REST catalog service 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.
info

Builds with Apache Iceberg 1.3.1. The Apache Iceberg table format version is 1 by default. Builds with Hadoop 2.10.x. There may be compatibility issues when accessing Hadoop 3.x clusters.

Gravitino Iceberg REST catalog service configuration

Assuming the Gravitino server is deployed in the GRAVITINO_HOME directory, you can locate the configuration options in $GRAVITINO_HOME/conf/gravitino.conf. There are four configuration properties for the Iceberg REST catalog service:

  1. REST Catalog Server Configuration: you can specify the HTTP server properties like host and port.

  2. Gravitino Iceberg metrics store Configuration: you could implement a custom Iceberg metrics store and set corresponding configuration.

  3. Gravitino Iceberg Catalog backend Configuration: you have the option to set the specified catalog-backend to either jdbc or hive.

  4. Other Iceberg Catalog Properties Defined by Apache Iceberg: allows you to configure additional properties defined by Apache Iceberg.

Please refer to the following sections for details.

REST catalog server configuration

Configuration itemDescriptionDefault valueRequiredSince Version
gravitino.auxService.namesThe auxiliary service name of the Gravitino Iceberg REST catalog service. Use iceberg-rest.(none)Yes0.2.0
gravitino.auxService.iceberg-rest.classpathThe classpath of the Gravitino Iceberg REST catalog service; includes the directory containing jars and configuration. It supports both absolute and relative paths, for example, catalogs/lakehouse-iceberg/libs, catalogs/lakehouse-iceberg/conf(none)Yes0.2.0
gravitino.auxService.iceberg-rest.hostThe host of the Gravitino Iceberg REST catalog service.0.0.0.0No0.2.0
gravitino.auxService.iceberg-rest.httpPortThe port of the Gravitino Iceberg REST catalog service.9001No0.2.0
gravitino.auxService.iceberg-rest.minThreadsThe minimum number of threads in the thread pool used by the Jetty web server. minThreads is 8 if the value is less than 8.Math.max(Math.min(Runtime.getRuntime().availableProcessors() * 2, 100), 8)No0.2.0
gravitino.auxService.iceberg-rest.maxThreadsThe maximum number of threads in the thread pool used by the Jetty web server. maxThreads is 8 if the value is less than 8, and maxThreads must be greater than or equal to minThreads.Math.max(Runtime.getRuntime().availableProcessors() * 4, 400)No0.2.0
gravitino.auxService.iceberg-rest.threadPoolWorkQueueSizeThe size of the queue in the thread pool used by Gravitino Iceberg REST catalog service.100No0.2.0
gravitino.auxService.iceberg-rest.stopTimeoutThe amount of time in ms for the Gravitino Iceberg REST catalog service to stop gracefully. For more information, see org.eclipse.jetty.server.Server#setStopTimeout.30000No0.2.0
gravitino.auxService.iceberg-rest.idleTimeoutThe timeout in ms of idle connections.30000No0.2.0
gravitino.auxService.iceberg-rest.requestHeaderSizeThe maximum size of an HTTP request.131072No0.2.0
gravitino.auxService.iceberg-rest.responseHeaderSizeThe maximum size of an HTTP response.131072No0.2.0
gravitino.auxService.iceberg-rest.customFiltersComma-separated list of filter class names to apply to the APIs.(none)No0.4.0

The filter in customFilters should be a standard javax servlet filter. You can also specify filter parameters by setting configuration entries in the style gravitino.auxService.iceberg-rest.<class name of filter>.param.<param name>=<value>.

Iceberg metrics store configuration

Gravitino provides a pluggable metrics store interface to store and delete Iceberg metrics. You can develop a class that implements com.datastrato.gravitino.catalog.lakehouse.iceberg.web.metrics and add the corresponding jar file to the Iceberg REST service classpath directory.

Configuration itemDescriptionDefault valueRequiredSince Version
gravitino.auxService.iceberg-rest.metricsStoreThe Iceberg metrics storage class name.(none)No0.4.0
gravitino.auxService.iceberg-rest.metricsStoreRetainDaysThe days to retain Iceberg metrics in store, the value not greater than 0 means retain forever.-1No0.4.0
gravitino.auxService.iceberg-rest.metricsQueueCapacityThe size of queue to store metrics temporally before storing to the persistent storage. Metrics will be dropped when queue is full.1000No0.4.0

Gravitino Iceberg catalog backend configuration

info

The Gravitino Iceberg REST catalog service uses the memory catalog backend by default. You can specify a Hive or JDBC catalog backend for production environment.

Hive backend configuration

Configuration itemDescriptionDefault valueRequiredSince Version
gravitino.auxService.iceberg-rest.catalog-backendThe Catalog backend of the Gravitino Iceberg REST catalog service. Use the value hive for a Hive catalog.memoryYes0.2.0
gravitino.auxService.iceberg-rest.uriThe Hive metadata address, such as thrift://127.0.0.1:9083.(none)Yes0.2.0
gravitino.auxService.iceberg-rest.warehouse The warehouse directory of the Hive catalog, such as /user/hive/warehouse-hive/.(none)Yes0.2.0

JDBC backend configuration

Configuration itemDescriptionDefault valueRequiredSince Version
gravitino.auxService.iceberg-rest.catalog-backendThe Catalog backend of the Gravitino Iceberg REST catalog service. Use the value jdbc for a JDBC catalog.memoryYes0.2.0
gravitino.auxService.iceberg-rest.uriThe JDBC connection address, such as jdbc:postgresql://127.0.0.1:5432 for Postgres, or jdbc:mysql://127.0.0.1:3306/ for mysql.(none)Yes0.2.0
gravitino.auxService.iceberg-rest.warehouse The warehouse directory of JDBC catalog. Set the HDFS prefix if using HDFS, such as hdfs://127.0.0.1:9000/user/hive/warehouse-jdbc(none)Yes0.2.0
gravitino.auxService.iceberg-rest.jdbc.userThe username of the JDBC connection.(none)Yes0.2.0
gravitino.auxService.iceberg-rest.jdbc.passwordThe password of the JDBC connection.(none)Yes0.2.0
gravitino.auxService.iceberg-rest.jdbc-initializeWhether to initialize the meta tables when creating the JDBC catalog.trueNo0.2.0
gravitino.auxService.iceberg-rest.jdbc-drivercom.mysql.jdbc.Driver or com.mysql.cj.jdbc.Driver for MySQL, org.postgresql.Driver for PostgreSQL.(none)Yes0.3.0
caution

You must download the corresponding JDBC driver to the catalogs/lakehouse-iceberg/libs directory.

Other Apache Iceberg catalog properties

You can add other properties defined in Iceberg catalog properties. The clients property for example:

Configuration itemDescriptionDefault valueRequired
gravitino.auxService.iceberg-rest.clientsThe client pool size of the catalog.2No
info

catalog-impl has no effect.

HDFS configuration

The Gravitino Iceberg REST catalog service adds the HDFS configuration files core-site.xml and hdfs-site.xml from the directory defined by gravitino.auxService.iceberg-rest.classpath, for example, catalogs/lakehouse-iceberg/conf, to the classpath.

Starting the Gravitino Iceberg REST catalog service

To start the service:

./bin/gravitino.sh start

To verify whether the service has started:

curl  http://127.0.0.1:9001/iceberg/v1/config

Normally you will see the output like {"defaults":{},"overrides":{}}%.

Exploring the Gravitino and Apache Iceberg REST catalog service with Apache Spark

Deploying Apache Spark with Apache Iceberg support

Follow the Spark Iceberg start guide to set up Apache Spark's and Apache Iceberg's environment.

Starting the Apache Spark client with the Apache Iceberg REST catalog

Configuration itemDescription
spark.sql.catalog.${catalog-name}.typeThe Spark catalog type; should set to rest.
spark.sql.catalog.${catalog-name}.uriSpark Iceberg REST catalog URI, such as http://127.0.0.1:9001/iceberg/.

For example, we can configure Spark catalog options to use Gravitino Iceberg REST catalog with the catalog name rest.

./bin/spark-sql -v \
--packages org.apache.iceberg:iceberg-spark-runtime-3.4_2.12:1.3.1 \
--conf spark.sql.extensions=org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions \
--conf spark.sql.catalog.rest=org.apache.iceberg.spark.SparkCatalog \
--conf spark.sql.catalog.rest.type=rest \
--conf spark.sql.catalog.rest.uri=http://127.0.0.1:9001/iceberg/

You may need to adjust the Iceberg Spark runtime jar file name according to the real version number in your environment.

Exploring Apache Iceberg with Apache Spark SQL

// First change to use the `rest` catalog
USE rest;
CREATE DATABASE IF NOT EXISTS dml;
CREATE TABLE dml.test (id bigint COMMENT 'unique id') using iceberg;
DESCRIBE TABLE EXTENDED dml.test;
INSERT INTO dml.test VALUES (1), (2);
SELECT * FROM dml.test;

You could try Spark with Gravitino REST catalog service in our playground.