A user reported on Reddit that they were unable to use EnvVar nested within the Icerberg catalog configuration.
defs = Definitions(
assets=[breaks_files],
resources={
'iceberg_io_manager': PyArrowIcebergIOManager(
name="default",
config=IcebergCatalogConfig(
properties={
"type": "hive",
"uri": EnvVar('HIVE_METASTORE_URI'),
"warehouse": EnvVar('HOT_STORAGE_ENDPOINT_URL'),
"s3.access_key_id": EnvVar('S3_ACCESS_KEY_ID_ICEBERG'),
"s3.secret_access_key": EnvVar('S3_SECRET_ACCESS_KEY_ICEBERG'),
}
),
namespace="default",
),
}
)
@JasperHG90 , are you familiar with any limitations in the configuration properties in this regard? Thanks.
A user reported on Reddit that they were unable to use
EnvVarnested within the Icerberg catalog configuration.@JasperHG90 , are you familiar with any limitations in the configuration properties in this regard? Thanks.