Takieddine Kadiri

Results 11 comments of Takieddine Kadiri

That looks good to me. It makes sense to delegate the entire session to the entity that created the run in the first place.

At our organisation we often needed to run a kedro session from outside kedro, for example from streamlit app or a rest api. For now, we don't manage to do...

@noklam the embeded web app start [inside a runner](https://github.com/kedro-org/kedro/blob/401dfe8f87c996fcc1be7e4831d880e6d1a9ffb3/kedro/framework/session/session.py#L421). At that time the KedroSession has already been created and the context, pipeliene and catalog are also already created. Inside the...

@noklam yes exactly, the WebServerRunner don't run pipeline but launch a webserver and **alterate** the pipeline and catalog at each HTTP call The input and output datasets are defined in...

It is indeed highly coupled with kedro, for the better or worst :) It can be ok to embed a thin web app that somehow extend kedro (serve a pipeline),...

So I took this thinking further by trying to solve this problem space (Integrating kedro project in a larger App/system, dynamic catalog, multiple runs without session initialization overhead, injecting data...

I would love to see Kedro fully support the "T", standing as an alternative for dbt for engine base transformation but with a python API. This could bring a huge...

This is really something needed when the codebase grow or when we do Monorepo with many pipelines that need/could be orchestrated independently with different scheduling contexts (for example : training,...

We're hitting this issue again, as we tried to deploy two pipelines that have slightly differents configs. When we run pipeline A, Kedro keep asking for a credential that is...

Enable running kedro project/package programatically was one of my main focus while developing kedro-boot. I enumerated these three entry points for running kedro : - Running kedro project with a...