ende
06/02/2022, 11:59 PMpython -m
option I would still need to somehow tell kedro where the conf is ?bgereke
06/03/2022, 12:09 AMende
06/03/2022, 12:10 AMende
06/03/2022, 12:10 AMnoklam
06/06/2022, 10:19 AMantony.milne
06/06/2022, 4:37 PMpython -m
you can't run it from outside your project directory because you need conf
to be in the cwd. This seems quite silly and something we should fix, e.g. by providing a conf_path
CLI option on kedro run
.
Just for now you should indeed be able to hack something together by modifying CONF_SOURCE
in settings.py. I've done this before and it does work.
The PR that @bgereke unfortunately won't change this behaviour, but it's very much on my radar since that is still work in progress! In future this should be easier to do. For now your best option is to hack settings.py or write a custom Python script like @bgereke suggestedende
06/06/2022, 5:06 PMende
06/06/2022, 5:07 PMende
06/06/2022, 5:07 PMdatajoely
06/06/2022, 5:08 PMdatajoely
06/06/2022, 5:09 PMRamit
06/08/2022, 6:36 AM1) before_dataset_loaded
2) after_dataset_loaded
3) before_node_run
4) after_node_run
5) before_dataset_saved
6) after_dataset_saved
I'm wondering if there is any way to change it to work in the following order:
1) before_node_run
2) before_dataset_loaded
3) after_dataset_loaded
4) before_dataset_saved
5) after_dataset_saved
6) after_node_run
Essentially, I need to encapsulate all Dataset operations such that they happen within a given node's lifecycle, not the other way around. Any tips would be greatly appreciated 🙂datajoely
06/08/2022, 7:23 AMantony.milne
06/08/2022, 8:36 AMavan-sh
06/10/2022, 6:22 AMpip install -r src/requirements.lock
instead of .txt file?antony.milne
06/10/2022, 8:11 AMpip-sync
to install them. This isn't in the docs because build-reqs
is no longer called automatically when you do kedro install
(because that doesn't exist any more), and the future of kedro build-reqs
isn't clear (it's just a thin wrapper for pip tools).antony.milne
06/10/2022, 8:12 AMrequirements.txt
, remove build-reqs
and leave it up to users to decided if they want to go down the piptools route or not.datajoely
06/10/2022, 8:24 AMDIVINE
06/15/2022, 12:44 PMDIVINE
06/15/2022, 12:46 PMdatajoely
06/15/2022, 1:56 PMDIVINE
06/15/2022, 1:59 PMDIVINE
06/15/2022, 2:01 PMdatajoely
06/15/2022, 2:41 PMDIVINE
06/15/2022, 2:47 PMDIVINE
06/15/2022, 3:15 PMDIVINE
06/15/2022, 3:35 PMnoklam
06/15/2022, 8:01 PMDIVINE
06/15/2022, 10:41 PMDIVINE
06/15/2022, 10:41 PM