Description
Hello,
Datahub setup is done using:
python3 -m datahub docker quickstart --arch arm64
python -m datahub docker ingest-sample-data
Issue:
I tried to associate a Structured Property with Dataset using the following mutation graphql:
mutation upsertStructuredProperties {
upsertStructuredProperties(
input: {
assetUrn: "urn:li:dataset:(urn:li:dataPlatform:hive,SampleHiveDataset,PROD)",
structuredPropertyInputParams: [
{
structuredPropertyUrn: "urn:li:structuredProperty:PIIROWS",
values: [
{
stringValue: "event_name-event_data"
}
]
}
]
}
) {
properties{
structuredProperty{
urn
}
}
}
}
After this I am not able to see anything on UI.
http://localhost:9002/dataset/urn:li:dataset:(urn:li:dataPlatform:hive,SampleHiveDataset,PROD)
DataHub
Something went wrong.
An unexpected error occurred. Please try again later, or reach out to your administrator
Need support? Check out these resources:
DataHub Project
DataHub Docs
DataHub GitHub (edited)