gray-pharmacist-29868
02/08/2024, 10:29 AM@kubernetes(secrets="s3", memory=500, cpu=0.1)
@step
def start(self):
self.my_var = "hello world"
self.next(self.a)
@kubernetes(secrets="s3", memory=500, cpu=0.1)
@step
def a(self):
print("the data artifact is: %s" % self.my_var)
self.next(self.end)
In the above snippet, start created my_var and it was used in a. I cannot find the visualization of this dataflow in the UI. Is this intended?
I have added a reference screenshot from Flyte as an example.bulky-afternoon-92433
02/08/2024, 10:57 AMcards as part of the flow, these are accessible through the UI as well
◦ https://docs.metaflow.org/metaflow/visualizing-results
• enabling artifact search for the UI. This will allow filtering the tasks on the timeline by artifact name&value
◦ enable this by adding the FEATURE_ARTIFACT_SEARCH=1 environment variable for the ui backend service deployment.
• you can also enable an artifact table for the task view, which will try to list artifacts and their values with a best-effort basis (some values don't translate well to text)
◦ enable this by adding the FEATURE_ARTIFACT_TABLE=1 environment variable for the UI backend servicegray-pharmacist-29868
02/08/2024, 10:58 AMenable this by adding the FEATURE_ARTIFACT_TABLE=1 environment variable for the UI backend serviceLet me try this.
gray-pharmacist-29868
02/08/2024, 11:05 AMbulky-afternoon-92433
02/08/2024, 11:12 AMmy_var:hello world