boundless-pizza-95864
03/17/2022, 10:10 AMFlyteDirectory
as final output. Via flyteconsole/API I get a reference to the object, like so:
o0:
type:
multi-part
uri:
<gs://flyte-bucket/data/q1/pjziwgu55i-n1-0/48f7d1af2f65a6ff4c03fac9191cbea9>
If I try to fetch that workflow via FlyteRemote
I get a local path as output. It's empty though.
remote = FlyteRemote.from_config()
exec = remote.fetch_workflow_execution("abc")
print(exec.outputs)
// /tmp/flyte3eg_mcpz/control_plane_metadata/local_flytekit/6f2223e1c864f6d1e88c8dbad090f349
What is the purpose of this local path and is there a way to get the original output location via FlyteRemote
?freezing-airport-6809
freezing-airport-6809
boundless-pizza-95864
03/17/2022, 2:02 PMthankful-minister-83577
_remote_source
field (there might be a remote_source
property) should have the original path.thankful-minister-83577
Blob
literal into a FlyteFile
local object.thankful-minister-83577
thankful-minister-83577
download()
on it, or try to open
itboundless-pizza-95864
03/17/2022, 7:27 PMdownload()
on the output being a FlyteDirectory
! Thanks @thankful-minister-83577many-night-7107
03/17/2022, 7:43 PMthankful-minister-83577
thankful-minister-83577
many-night-7107
03/17/2022, 7:55 PM