s.hedayati
06/30/2022, 11:20 AMuser
07/01/2022, 3:42 PMantony.milne
07/01/2022, 5:03 PMgui42
07/01/2022, 6:21 PMdo_step_a=True
in the yaml add the step_a
node to a pipeline object? My intuition says that this is a counter pattern.antony.milne
07/01/2022, 9:26 PMafter_context_created
hook like this: https://github.com/kedro-org/kedro/discussions/1436#discussioncomment-2789761
If it suits your use case, better would be to register two pipelines in `pipeline_registry.py`:
pipeline_1 = pipeline(...)
pipeline_2 = pipeline_1 + [node_a]
and then run the pipeline you want through kedro run -p
Another alternative is to keep the node in the pipeline but just change the logic inside the node function itself to skip using something like on if not do_step_a: return
youmaaz
07/04/2022, 8:23 PMdatajoely
07/04/2022, 8:32 PMyoumaaz
07/04/2022, 8:35 PMdatajoely
07/04/2022, 8:35 PMyoumaaz
07/05/2022, 11:43 AMyoumaaz
07/06/2022, 7:35 AMdatajoely
07/06/2022, 7:43 AMyoumaaz
07/06/2022, 7:48 AMdatajoely
07/06/2022, 7:50 AMadrian
07/06/2022, 8:33 PMnoklam
07/06/2022, 8:56 PMadrian
07/06/2022, 8:57 PMkradja
07/11/2022, 1:17 AMwise009
07/11/2022, 11:15 AMadrian
07/11/2022, 4:06 PMGoss
07/11/2022, 4:47 PMsession_store.db
There are, however, metrics-related files under 09_tracking
. Did I possibly misconfigure something?
Also,
$ cat src/settings.py
from kedro_viz.integrations.kedro.sqlite_store import SQLiteStore
from pathlib import Path
SESSION_STORE_CLASS = SQLiteStore
SESSION_STORE_ARGS = {"path": str(Path(__file__).parents[2] / "data")}
noklam
07/11/2022, 4:51 PMnoklam
07/11/2022, 4:51 PMnoklam
07/11/2022, 4:53 PMadrian
07/11/2022, 4:55 PMGoss
07/11/2022, 5:05 PM./data/session_store.db
and did a general find for any *.db files. Nothing was found.
In case version info helps:
kedro 0.18.1
kedro-telemetry 0.2.1
kedro-viz 4.7.1
noklam
07/11/2022, 5:12 PMadrian
07/11/2022, 5:21 PMkradja
07/11/2022, 8:20 PMnoklam
07/11/2022, 9:14 PM