Kevin Kho
10/06/2021, 7:30 PMhugo bowne-anderson
10/19/2021, 10:53 PMAndrew Black
10/22/2021, 3:38 PMDonny Flynn
11/01/2021, 11:50 PMAmanda Robson
11/05/2021, 11:33 PMPierre Monico
11/17/2021, 2:53 PMJeremiah
11/24/2021, 4:24 PMJeremiah
11/24/2021, 4:27 PMSylvain Hazard
11/29/2021, 11:09 AMTilak Maddy
12/06/2021, 4:29 PMAlex Izydorczyk
12/15/2021, 12:28 AMTom Klein
12/16/2021, 4:33 PMYusuf Khan
01/04/2022, 9:29 PMTony Liberato
01/12/2022, 2:48 PMOliver Verran
01/18/2022, 12:07 PMMaximilian Rausch
01/19/2022, 3:33 PMPatrick Wyatt
01/20/2022, 7:37 AMRehan Razzaque Rajput
01/21/2022, 5:01 PMKevin Kho
01/31/2022, 7:24 PMOlivér Atanaszov
02/04/2022, 2:37 PMEvan Curtin
02/04/2022, 3:13 PMEvan Curtin
02/08/2022, 5:09 PM@dataclasses.dataclass
or maybe pydantic
and be able to pass around all attributes of the struct easily. Are people just using json or something?Olivér Atanaszov
02/10/2022, 4:57 PMFailed to load and execute Flow's environment: FlowStorageError('An error occurred while unpickling the flow:\n ModuleNotFoundError("No module named \'utils\'")\nThis may be due to a missing Python module in your current environment. Please ensure you have all required flow dependencies installed.')In my flow definition, I'm trying to import from this package called
utils
but apparently cloudpickle did not take care of these imports. I've checked this guide but couldn't figure the canonical way of composing flows using imports from other packages/modules: https://docs.prefect.io/orchestration/flow_config/storage.html#pickle-vs-script-based-storageEvan Curtin
02/11/2022, 2:33 PMResults
using mlflow as the storage layer?Kevin Kho
02/11/2022, 2:47 PMLeon Kozlowski
02/21/2022, 4:20 PMAnna Geller
02/22/2022, 12:28 PMHui Huang
02/25/2022, 7:26 PMAndrew Huang
02/27/2022, 6:57 PMApoorva Desai
02/28/2022, 10:09 PMApoorva Desai
02/28/2022, 10:09 PMKevin Kho
02/28/2022, 10:11 PMClient.create_flow_run
or the create_flow_run
taskAnna Geller
02/28/2022, 10:25 PM@task(name="Clone DBT repo")
def pull_dbt_repo(repo_url: str, branch: str = None):
pygit2.clone_repository(url=repo_url, path=DBT_PROJECT, checkout_branch=branch)
but if you are trying to build a CI/CD pipeline, you would usually register a flow on merge to e.g. master branch rather than triggering a flowApoorva Desai
03/01/2022, 8:56 AM