Hi Kedro team, I am brand new to kedro and have be...
# beginners-need-help
j
Hi Kedro team, I am brand new to kedro and have been trying to figure out what exactly I need to modify such that I only run the parts of the pipeline that are missing. I have seen the multiple pull requests for this feature, which have indicated that one can modify the KedroContext in order to make this happen. Do you happen to have any good examples of someone modifying the KedroContext in this way? I also tried to create a custom runner to solve this issue and when I follow the example to use the DryRunner, I'm getting the following error: "_run() takes 3 positional arguments but 4 were given" I am using this version of Kedro: kedro @ git+https://github.com/quantumblacklabs/kedro.git@7c537f919b84d0cce7aa5a2343554700c28bb2bb My launch.json file looks like this:
Copy code
{
            "name": "Kedro: Run Project",
            "type": "python",
            "cwd": "${workspaceFolder}/my-working-dir>",
            "request": "launch",
            "program": "${workspaceFolder}/venv39/bin/kedro",
            "args": [
                "run",
                "--runner=src.<my-package>.runner.DryRunner"
            ],
            "console": "integratedTerminal"
        },