fix(irc): changing prefix for tblproperties (#14402)

This commit is contained in:
Chakru 2025-08-10 11:19:22 +05:30 committed by GitHub
parent 1bc58d6b40
commit afccda66c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -509,7 +509,7 @@ Once you create tables in iceberg, each of those tables show up in DataHub as a
<img width="70%" src="https://raw.githubusercontent.com/datahub-project/static-assets/cec184aa1e3cb15c087625ffc997b4345a858c8b/imgs/iceberg-dataset-schema.png"/>
</p>
Some of the standard metadata fields are populated in the Dataset Properties. Additionally, any Iceberg `TBLPROPERTIES` set via DDL on tables or views are also shown in DatasetProperties with a prefix `iceberg:`
Some of the standard metadata fields are populated in the Dataset Properties. Additionally, any Iceberg `TBLPROPERTIES` set via DDL on tables or views are also shown in DatasetProperties with a prefix `TBLPROPERTIES:`
The iceberg 'TBLPROPERTIES' can only be set via DDL and is a one way sync. Changes to iceberg `TBLPROPERTIES` properties via datahub APIs do not get written to the Iceberg table or view properties.
## Troubleshooting

View File

@ -39,7 +39,7 @@ public class DataHubIcebergWarehouse {
public static final String DATAPLATFORM_INSTANCE_ICEBERG_WAREHOUSE_ASPECT_NAME =
"icebergWarehouseInfo";
public static final String ICEBERG_PROPERTY_PREFIX = "iceberg:";
public static final String ICEBERG_PROPERTY_PREFIX = "TBLPROPERTIES:";
private final EntityService entityService;
private final SecretService secretService;