Matheus Moreno
05/10/2022, 3:06 PMStarting Docker daemon...
Done.
Starting k3s cluster...
Done.
Deploying Flyte...
"flyteorg" has been added to your repositories
Release "flyte" does not exist. Installing it now.
Error: timed out waiting for the condition
Alex Bain
05/10/2022, 6:47 PM1.0.1
and now workflows executed with flyte-cli execute-launch-plan
(with flytekit 0.26.0) lose their k8s service account that was declared with flyte-cli register-files --kubernetes-service-account
. When I execute the same workflow from Flyte Console the k8s service account is fine.Alex Bain
05/11/2022, 1:13 AMAlessandro Liparoti
05/11/2022, 11:54 AMdind
tag but it seems I can’t find it anymore, any idea?Matheus Moreno
05/11/2022, 4:10 PM/etc/flyte/secrets
eitherAlex Pozimenko
05/12/2022, 7:03 PMflyte-admin-task.execution.manager-task.executions.terminated.counter
Sonja Ericsson
05/13/2022, 10:29 AMgrpc_client_handled_total
but I only see requests to the AdminService, is there a way to see requests to datacatalog as well?George Odette
05/16/2022, 9:34 AMSandra Youssef
George Odette
05/16/2022, 6:25 PMRuksana Kabealo
05/16/2022, 6:39 PMSandra Youssef
Sandra Youssef
Alex Bain
05/18/2022, 8:10 AMFlyteRemote
to execute a workflow launch plan where one of the parameters is my custom class (assume that I have a good reason why I want to do this). For example, I have:
@dataclass_json
@dataclass
class WrappedList:
files: str
and the workflow
@flytekit.workflow
def LocalSlam(input_list: WrappedList)
and that I want to use FlyteRemote
to execute this worklow like
lp = remote.fetch_launch_plan(name=workflow_name, version=workflow_version)
e = remote.execute(lp, inputs=inputs)
Bernhard Stadlbauer
05/18/2022, 8:54 AMPythonTask.pre_execute()
, so user_params: ExecutionParameters
would also be available if that helps.Luísa Braga Simões
05/18/2022, 5:31 PMflytectl sandbox start
and exported the env vars for kube and flyte configuration.
I'm trying to run the hello world example from flytesnacks and I've created a virtual env using poetry, in which I installed pyflyte (1.0.2). I can run it locally no problem, but when I add the remote
flag, I get a connection reset by peer error.
Any ideas what is wrong on my setup?
I'm on WSL2Sandra Youssef
Nastya Rusina
05/19/2022, 1:54 AMStephen
05/19/2022, 10:55 AMMatheus Moreno
05/19/2022, 1:56 PMViktor Gerdin
05/20/2022, 9:33 AMStatus()
hook [interface explained].
We have noticed that this is very much depending on load. During low (normal) load Status()
is called multiple times per second. The Get()
hook is only executed once every 30s, so we consider any rate of Status()
higher than 15s to be a waste.
The webapi PluginConfig
contains configurations for a ReadRateLimiter
and WriteRateLimiter
[github] which I am unable to find being used in either propeller nor plugin machinery. We are not experiencing any throttling from the external API, only that the Status()
rate is very high.
Anyone have any pointers where to go from here?Badar Ahmed
05/20/2022, 6:26 PMAndrew Rubiano
05/23/2022, 3:55 PMIndicates a list of filters passed as string. More info on constructing filters : +optional.
but I don't see anywhere where it explains the structure of the filtersMike Ossareh
05/23/2022, 4:46 PMRobin Kahlow
05/24/2022, 9:15 AMrpc error: code = InvalidArgument desc = missing key in inputs
. Any ideas what could be wrong? More code in the thread.Sandra Youssef
Robert Everson
05/24/2022, 8:41 PMpyflyte register
command? I.E. I’m adding a new field in flytekit and in the Container IDL proto to add an architecture override, is there a way to force that during the register for all workflows in a github repo, rather than needing to modify all of the workflows one by one? @Anmol had mentioned this to me before, but we couldn’t find any docs about it.Lucas Rolim
05/24/2022, 9:41 PMRobin Kahlow
05/25/2022, 12:56 PMflytectl update launchplan -p flytesnacks -d development <launch plan name> --version <launch plan version> --archive
There's a success message "updated launchplan successfully on <launch plan name>" and the Flyte console doesn't show anything under Schedules anymore but my workflow is still being executed every hour. Am I missing something or is this a bug?Jake Neyer
05/25/2022, 5:40 PM