Mohamed El Guendouz
04/14/2025, 4:00 PMValueError: Failed to find the pipeline named 'XXXXXX'. It needs to be generated and returned by the 'register_pipelines' function.
However, when I run kedro run --pipeline <pipeline>
locally on my machine, the pipeline is correctly detected and executed.
Just to clarify, I do have an __init__.py
file in the pipeline directory, and my register_pipelines()
function uses find_pipelines()
as shown below:
from kedro.framework.project import find_pipelines
from kedro.pipeline import Pipeline
def register_pipelines() -> dict[str, Pipeline]:
pipelines = find_pipelines()
pipelines["__default__"] = sum(pipelines.values())
return pipelines
Do you have any idea what could be causing this issue on the cluster? Any insights or suggestions would be greatly appreciated.
Thank you in advance!Ankita Katiyar
04/14/2025, 4:05 PMMohamed El guendouz
04/15/2025, 8:02 AMAnkita Katiyar
04/15/2025, 8:06 AMMohamed El Guendouz
04/15/2025, 11:07 AMAnkita Katiyar
04/15/2025, 11:15 AM