Mike Zhong
create_node()
@tasks
@workflow
@dynamic
Babis Kiosidis
Haytham Amin
Mike Ossareh
seedProjects
George Horrell
pyflyte
flytectl
flyte-package.tgz
seunggs
Victor Gustavo da Silva Oliveira
ValueError: Only generic univariate typing.List[T] type is supported.
Eduardo Matus
from flytekit import Email, LaunchPlan from flytekit.models.core.execution import WorkflowExecutionPhase from flytekit.remote import FlyteRemote from flytekit.configuration import Config remote = FlyteRemote( config=Config.for_endpoint(endpoint="dns:///flyte.eks.tech"), default_project="flytesnacks", default_domain="development", ) wf = remote.fetch_workflow(name="parent_workflows.workflows.example.my_wf", version="Mh7JCmzuS6MJr2XWw5ST-Q==", project="flytesnacks", domain="development") print(wf) #prints correctly lp = LaunchPlan.get_or_create(wf) print(lp) #prints correctly execution = remote.execute(lp, inputs={}, execution_name="test lanuch plan", wait=False) #fails here 'NoneType' object has no attribute 'inputs' print(execution)
Tarmily Wen
Flyte enables production-grade orchestration for machine learning workflows and data processing created to accelerate local workflows to production.