Skip to main content
Version: 1.3.0

Credential Vending

Background

Gravitino credential vending is used to generate temporary or static credentials for accessing data. With credential vending, Gravitino provides an unified way to control the access to diverse data sources in different platforms.

Capabilities

  • Supports Gravitino Iceberg REST server.

  • Supports Gravitino server with the following catalog types:

    Catalog typeSupported credential typesSince version
    Hadoop (Fileset)S3, OSS, GCS, ADLS0.7.0-incubating
    HiveS3, OSS, GCS, ADLS1.3.0
    IcebergS3, OSS, GCS, ADLS1.3.0
    GlueS31.3.0
    JDBCJDBC user/password (jdbc-user-password)1.3.0
    PaimonS3, OSS, JDBC user/password (jdbc-user-password)1.3.0
  • Supports pluggable credentials with build-in credentials:

    • S3: S3TokenCredential, S3SecretKeyCredential, AwsIrsaCredential
    • GCS: GCSTokenCredential
    • ADLS: ADLSTokenCredential, AzureAccountKeyCredential
    • OSS: OSSTokenCredential, OSSSecretKeyCredential
  • Spark, Flink, and Trino connectors automatically consume vended credentials for Hive, Iceberg, Glue, JDBC, and Paimon catalogs since 1.3.0.

General Configurations

Gravitino server catalog propertiesGravitino Iceberg REST server configurationsDescriptionDefault valueRequiredSince Version
credential-provider-typegravitino.iceberg-rest.credential-provider-typeDeprecated; use credential-providers instead.(none)Yes0.7.0-incubating
credential-providersgravitino.iceberg-rest.credential-providersThe credential provider types, separated by comma.(none)Yes0.8.0-incubating
credential-cache-expire-ratiogravitino.iceberg-rest.credential-cache-expire-ratioRatio of the credential's expiration time when Gravitino remove credential from the cache.0.15No0.8.0-incubating
credential-cache-max-sizegravitino.iceberg-rest.cache-max-sizeMax size for the credential cache.10000No0.8.0-incubating

Build-in Credentials Configurations

S3 Credentials

S3 IRSA Credential

A credential using AWS IAM Roles for Service Accounts (IRSA) to access S3 with temporary credentials, typically used in EKS environments. This provider supports both basic IRSA credentials and fine-grained path-based access control with dynamically generated IAM policies.

Features:

  • Basic IRSA mode: Returns credentials with full permissions of the associated IAM role (for non-path-based contexts)
  • Fine-grained mode: Generates path-specific credentials with minimal required permissions (for table access with X-Iceberg-Access-Delegation: vended-credentials)
  • Automatic policy generation: Creates custom IAM policies scoped to specific table paths including data, metadata, and write locations
  • EKS integration: Leverages existing IRSA setup while providing enhanced security through path-based restrictions
Gravitino server catalog propertiesGravitino Iceberg REST server configurationsDescriptionDefault valueRequiredSince Version
credential-providersgravitino.iceberg-rest.credential-providersaws-irsa for AWS IRSA credential provider.(none)Yes1.0.0
s3-role-arngravitino.iceberg-rest.s3-role-arnThe ARN of the IAM role to assume. Required for fine-grained path-based access control.(none)Yes*1.0.0
s3-regiongravitino.iceberg-rest.s3-regionThe AWS region for STS operations. Used for fine-grained access control.(none)No1.0.0
s3-token-expire-in-secsgravitino.iceberg-rest.s3-token-expire-in-secsToken expiration time in seconds for fine-grained credentials. Cannot exceed role's max session duration.3600No1.0.0
s3-token-service-endpointgravitino.iceberg-rest.s3-token-service-endpointAlternative STS endpoint for fine-grained credential generation. Useful for S3-compatible services.(none)No1.0.0

Note: s3-role-arn is required only when using fine-grained path-based access control with vended credentials. For basic IRSA usage without path restrictions, only credential-providers=aws-irsa is needed.

Prerequisites for fine-grained mode:

  • EKS cluster with IRSA properly configured
  • AWS_WEB_IDENTITY_TOKEN_FILE environment variable pointing to the service account token
  • IAM role with permissions to assume the target role specified in s3-role-arn
  • Target IAM role with necessary S3 permissions for the data locations

S3 Secret Key Credential

A credential with static S3 access key id and secret access key.

Gravitino server catalog propertiesGravitino Iceberg REST server configurationsDescriptionDefault valueRequiredSince Version
credential-providersgravitino.iceberg-rest.credential-providerss3-secret-key for S3 secret key credential provider.(none)Yes0.8.0-incubating
s3-access-key-idgravitino.iceberg-rest.s3-access-key-idThe static access key ID used to access S3 data.(none)Yes0.6.0-incubating
s3-secret-access-keygravitino.iceberg-rest.s3-secret-access-keyThe static secret access key used to access S3 data.(none)Yes0.6.0-incubating

S3 Token Credential

An S3 token is a token credential with scoped privileges, by leveraging STS Assume Role. To use an S3 token credential, you should create a role and grant it proper privileges.

Gravitino server catalog propertiesGravitino Iceberg REST server configurationsDescriptionDefault valueRequiredSince Version
credential-providersgravitino.iceberg-rest.credential-providerss3-token for S3 token credential provider.(none)Yes0.8.0-incubating
s3-access-key-idgravitino.iceberg-rest.s3-access-key-idThe static access key ID used to access S3 data.(none)Yes0.6.0-incubating
s3-secret-access-keygravitino.iceberg-rest.s3-secret-access-keyThe static secret access key used to access S3 data.(none)Yes0.6.0-incubating
s3-role-arngravitino.iceberg-rest.s3-role-arnThe ARN of the role to access the S3 data.(none)Yes0.7.0-incubating
s3-regiongravitino.iceberg-rest.s3-regionThe region of the S3 service, like us-west-2.(none)No0.6.0-incubating
s3-external-idgravitino.iceberg-rest.s3-external-idThe S3 external id to generate token.(none)No0.7.0-incubating
s3-token-expire-in-secsgravitino.iceberg-rest.s3-token-expire-in-secsThe S3 session token expire time in secs, it couldn't exceed the max session time of the assumed role.3600No0.7.0-incubating
s3-token-service-endpointgravitino.iceberg-rest.s3-token-service-endpointAn alternative endpoint of the S3 token service, This could be used with s3-compatible object storage service like MINIO that has a different STS endpoint.(none)No0.8.0-incubating

OSS Credentials

OSS Secret Key Credential

A credential with static OSS access key id and secret access key.

Gravitino server catalog propertiesGravitino Iceberg REST server configurationsDescriptionDefault valueRequiredSince Version
credential-providersgravitino.iceberg-rest.credential-providersoss-secret-key for OSS secret credential.(none)Yes0.8.0-incubating
oss-access-key-idgravitino.iceberg-rest.oss-access-key-idThe static access key ID used to access OSS data.(none)Yes0.7.0-incubating
oss-secret-access-keygravitino.iceberg-rest.oss-secret-access-keyThe static secret access key used to access OSS data.(none)Yes0.7.0-incubating

OSS Token Credential

An OSS token is a token credential with scoped privileges, by leveraging STS Assume Role. To use an OSS token credential, you should create a role and grant it proper privileges.

Gravitino server catalog propertiesGravitino Iceberg REST server configurationsDescriptionDefault valueRequiredSince Version
credential-providersgravitino.iceberg-rest.credential-providersoss-token for s3 token credential.(none)Yes0.8.0-incubating
oss-access-key-idgravitino.iceberg-rest.oss-access-key-idThe static access key ID used to access OSS data.(none)Yes0.7.0-incubating
oss-secret-access-keygravitino.iceberg-rest.oss-secret-access-keyThe static secret access key used to access OSS data.(none)Yes0.7.0-incubating
oss-role-arngravitino.iceberg-rest.oss-role-arnThe ARN of the role to access the OSS data.(none)Yes0.8.0-incubating
oss-regiongravitino.iceberg-rest.oss-regionThe region of the OSS service, like oss-cn-hangzhou, only used when credential-providers is oss-token.(none)No0.8.0-incubating
oss-external-idgravitino.iceberg-rest.oss-external-idThe OSS external id to generate token.(none)No0.8.0-incubating
oss-token-expire-in-secsgravitino.iceberg-rest.oss-token-expire-in-secsThe OSS security token expire time in secs.3600No0.8.0-incubating

ADLS Credentials

Azure Account Key Credential

A credential with static Azure storage account name and key.

Gravitino server catalog propertiesGravitino Iceberg REST server configurationsDescriptionDefault valueRequiredSince Version
credential-providersgravitino.iceberg-rest.credential-providersazure-account-key for Azure account key credential.(none)Yes0.8.0-incubating
azure-storage-account-namegravitino.iceberg-rest.azure-storage-account-nameThe static storage account name used to access ADLS data.(none)Yes0.8.0-incubating
azure-storage-account-keygravitino.iceberg-rest.azure-storage-account-keyThe static storage account key used to access ADLS data.(none)Yes0.8.0-incubating

ADLS Token Credential

An ADLS token is a token credential with scoped privileges, by leveraging Azure User Delegation Sas. To use an ADLS token credential, you should create a Microsoft Entra ID service principal and grant it proper privileges.

Gravitino server catalog propertiesGravitino Iceberg REST server configurationsDescriptionDefault valueRequiredSince Version
credential-providersgravitino.iceberg-rest.credential-providersadls-token for ADLS token credential.(none)Yes0.8.0-incubating
azure-storage-account-namegravitino.iceberg-rest.azure-storage-account-nameThe static storage account name used to access ADLS data.(none)Yes0.8.0-incubating
azure-storage-account-keygravitino.iceberg-rest.azure-storage-account-keyThe static storage account key used to access ADLS data.(none)Yes0.8.0-incubating
azure-tenant-idgravitino.iceberg-rest.azure-tenant-idAzure Active Directory (AAD) tenant ID.(none)Yes0.8.0-incubating
azure-client-idgravitino.iceberg-rest.azure-client-idAzure Active Directory (AAD) client ID used for authentication.(none)Yes0.8.0-incubating
azure-client-secretgravitino.iceberg-rest.azure-client-secretAzure Active Directory (AAD) client secret used for authentication.(none)Yes0.8.0-incubating
adls-token-expire-in-secsgravitino.iceberg-rest.adls-token-expire-in-secsThe ADLS SAS token expire time in secs.3600No0.8.0-incubating

GCS Credentials

GCS Token Credential

An GCS token is a token credential with scoped privileges, by leveraging GCS Credential Access Boundaries. To use an GCS token credential, you should create an GCS service account and grant it proper privileges.

Gravitino server catalog propertiesGravitino Iceberg REST server configurationsDescriptionDefault valueRequiredSince Version
credential-providersgravitino.iceberg-rest.credential-providersgcs-token for GCS token credential.(none)Yes0.8.0-incubating
gcs-credential-file-pathgravitino.iceberg-rest.gcs-credential-file-pathDeprecated; use gcs-service-account-file instead.GCS Application default credential.No0.7.0-incubating
gcs-service-account-filegravitino.iceberg-rest.gcs-service-account-fileThe location of GCS credential file.GCS Application default credential.No0.8.0-incubating
note

For the Gravitino Iceberg REST server, ensure that the credential file is accessible by the server. For example, the server may be running on a GCE machine, or you may set the environment variable export GOOGLE_APPLICATION_CREDENTIALS=/xx/application_default_credentials.json even when gcs-service-account-file is already configured.

Custom Credentials

Gravitino supports custom credentials, you can implement the org.apache.gravitino.credential.CredentialProvider interface to support custom credentials, and place the corresponding jar to the classpath of Iceberg catalog server or Fileset catalog.

Deployment

Besides setting credentials-related configuration, download the related cloud bundle jar and place it in the classpath of the Iceberg REST server or Fileset catalog.

For the Fileset catalog, use the Gravitino cloud bundle jar with Hadoop and cloud packages:

For the Iceberg REST catalog server, download the corresponding Gravitino cloud packages.

note

Since Gravitino 1.1.0, the above Gravitino Iceberg cloud bundle jars have already included the Iceberg cloud bundle jars, no need to download and include them separately.

The classpath of the server:

  • Iceberg REST server: the classpath differs by deployment mode; see the Deployment section.
  • Fileset catalog: catalogs/fileset/libs/

Credential Vending for Catalogs

Hive, Iceberg, Glue, JDBC, and Paimon catalogs support server-side credential vending since Gravitino 1.4.0. This section explains how credential vending works for these catalog types and how it differs from the Hadoop Fileset and Iceberg REST server cases.

Auto-Detection of Credential Providers

Relational catalogs do not require an explicit credential-providers property in the catalog configuration. Instead, Gravitino automatically detects which credential providers to enable based on the catalog properties you supply:

  • If s3-access-key-id / s3-secret-access-key are present, the S3 secret-key credential provider is enabled.
  • If s3-role-arn is also present, the S3 token (STS) credential provider is enabled instead.
  • If oss-access-key-id / oss-secret-access-key are present, the OSS secret-key or token credential provider is enabled.
  • For JDBC catalogs (and Paimon with catalog-backend=jdbc), if jdbc-user / jdbc-password are set, the JDBC credential provider is enabled.
  • Paimon additionally supports OSS and S3 credential vending when the corresponding cloud properties are set.

No extra configuration is required beyond the catalog's normal properties.

Security: Sensitive Properties Hidden from REST API

To protect credentials, all sensitive catalog properties (such as s3-access-key-id, s3-secret-access-key, jdbc-user, jdbc-password, etc.) are excluded from the GET /api/metalakes/{metalake}/catalogs/{catalog} response. Clients retrieve credentials through the dedicated credential vending endpoint instead.

Credential Vending REST API

Clients retrieve vended credentials from:

GET /api/metalakes/{metalake}/objects/catalog/{catalog}/credentials

The server returns short-lived or static credentials that the client can use to access the underlying storage directly.

The Gravitino Spark and Flink connectors automatically call the credential vending API and inject the returned credentials into the connector's configuration, so no connector-side credential configuration is needed. For example, GravitinoHiveCatalog, GravitinoGlueCatalog, GravitinoJdbcCatalog, and GravitinoIcebergCatalog all consume the vended credentials transparently.

Backward Compatibility: gravitino.catalog.credential.backfillToProperties

During a rolling upgrade from Gravitino < 1.4.0 to 1.4.0, older clients that read catalog properties directly (rather than calling /credentials) would lose access to credentials because the properties are now hidden. To allow a zero-downtime migration, set the following property in gravitino.conf:

gravitino.catalog.credential.backfillToProperties = true

When enabled, the server re-includes hidden credential properties in GET /catalogs/{catalog} responses for backward compatibility.

caution

gravitino.catalog.credential.backfillToProperties = true exposes credentials in plaintext in catalog GET responses. Disable it once all clients have been upgraded to use the credential vending API.

Example

Credential Vending for Iceberg REST Server

Suppose the Iceberg table data is stored in S3, follow the steps below:

  1. Download the Gravitino Iceberg AWS bundle JAR, and place it in the classpath of Iceberg REST server.

  2. Add s3 token credential configurations.

gravitino.iceberg-rest.warehouse = s3://{bucket_name}/{warehouse_path}
gravitino.iceberg-rest.io-impl= org.apache.iceberg.aws.s3.S3FileIO
gravitino.iceberg-rest.credential-providers = s3-token
gravitino.iceberg-rest.s3-access-key-id = xxx
gravitino.iceberg-rest.s3-secret-access-key = xxx
gravitino.iceberg-rest.s3-region = {region_name}
gravitino.iceberg-rest.s3-role-arn = {role_arn}
  1. Explore the Iceberg table with a Spark client with credential vending enabled.
./bin/spark-sql -v \
--packages org.apache.iceberg:iceberg-spark-runtime-3.4_2.12:1.3.1 \
--conf spark.jars={path}/iceberg-aws-bundle-1.5.2.jar \
--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/ \
--conf spark.sql.catalog.rest.header.X-Iceberg-Access-Delegation=vended-credentials