Hi a quick question. Is it the case that if a laun...
# ask-the-community
h
Hi a quick question. Is it the case that if a launch plan has custom setting of
output_location_prefix
, all the tasks in the launch plan will use that location to store and read task outputs, regardless of the type of the output (Python native, vs. complex structure), instead of using the default one that comes with Flyte installation? Or rather the type of the output matters?
y
output type matters
only offloaded types are sent there.
h
y
primitive values will continue to be stored in the same place
h
Do we have a full list of supported types?
h
All the schema, blob, FlyteFile, FlyteDirectory types?
k
yes, those will be offloaded to output_location_prefix, and pickle, structured dataset, and torch.Tensor.
output.pb (literal) will contain s3 path (output_location_prefix/…)
h
Thank you!