Vlad Efanov
05/25/2022, 10:00 AMrex
05/25/2022, 5:07 PMsean
05/25/2022, 5:31 PMMetadata.url
?Vlad Efanov
05/26/2022, 4:59 AMMetadataValue.url
works? Now I'm using dagster 0.13.16rex
05/26/2022, 5:05 AMEventMetadata.url
. See the 0.13.16 docs:
https://docs.dagster.io/0.13.16/concepts/ops-jobs-graphs/op-events#attaching-metadata-to-outputs-Vlad Efanov
05/26/2022, 5:49 AMlink = EventMetadata.url("<https://google.com>")
yield Output(link, output_name='result')
I tried this: <http://context.log.info|context.log.info>(link)
but it prints plane textrex
05/26/2022, 6:12 AMresult = "my_result"
yield Output(
result,
metadata={
"dashboard_url": EventMetadata.url("<http://mycoolsite.com/url_for_my_data>"),
},
)
Vlad Efanov
05/26/2022, 6:22 AM