-
Notifications
You must be signed in to change notification settings - Fork 903
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[spike] Investigate suitability of Kedro for EL pipelines and incremental data loading #3578
Comments
Ibis has to be central to this |
To give a specific example of how this is posing a problem to users: https://linen-slack.kedro.org/t/16366189/tldr-is-there-a-suggested-pattern-for-converting-vanilla-par#23c36a9d-7bea-40f9-a21f-cc6def7e9ccf User tries to convert a Parquet file to a Delta table with a Kedro pipeline, only to see that Going through the PR again, I found a comment that spells the problem in detail #964 (comment)
This is the problem we're addressing. |
Upsert is mostly supported by database backends. You could simulate it in data frames using concat with indices, e.g. in pandas or spark, but it's not very clean. For database backends, it is on the radar for Ibis support.
Why can Kedro not be at least as good at ELT as it is at ETL? As long as you can interact with databases natively using SQL under the hood, I think it can be a great option for the people who are going to use Python anyway (or prefer to). Also, I'm not recent enough on this perhaps, but has there been any momentum back towards people wanting to do ETL? If ELT is still where "modern data engineering" is at, doing ETL well isn't that exciting.
💯 If Kedro is a tool that supports both data pipelines and ML pipelines, it makes sense that people are educated on how to write each, and don't use the same approach for the disparate problems. |
We could discuss whether the Modern Data Stack was a real industry trend or only happened on Data Twitter - but I'll only do so over beer 😄 |
I'm not denying this. What I'm saying that, in theory1,
is the optimal open-source, CLI-based, EL experience, and I don't think Kedro can match this at the moment or in the near future (very happy to be proven wrong). Edit: Meltano would be EL, then for example dbt would be T, or as Lauren Balik jokingly says, TTTTTTT Footnotes
|
We've implemented an in-house
The |
I've never used meltano, but this covers only EL in ELT, right? Kedro+ibis could slot in very nicely into the T, and also provide more-than-good-enough performance for the EL side, though it does seem hard to beat specialized tools like meltano. |
Oh, correct. I meant "the optimal [...] EL experience". |
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 value for some Data teams that need to juggle between two (or more) differents Technologies/frameworks and throws their works over the wall for others teams, dependencing on the stages of their Data pipelines (DE, DS/ML). This could significally enlarge Kedro user base, as there is much more volume of work in Data & Analytics engineering than Data science & ML. As for the "E" and "L" part Kedro could be just good enough. |
To achieve this I really believe we should go all in on Ibis as a first class citizen / prefered approach in Kedro. One syntax for broadly the backends we care about enabling the interdisciplinary collaboration @takikadiri mentions. |
(From phone) To clarify, I don't think T is the problem, but rather E & L. I suspect some changes in philosophy of even API might be required that go beyond adopting Ibis, the task here is to investigate. |
Although T might also require some improvements in how we approach upserts. |
At PyData London I spoke to 2 different users about how they were using Kedro for their ETL pipelines and they both have challenges:
Also, while discussing this in person with @deepyaman, I realised that both EL and T data pipelines need upserts anyway, so probably my comments above were somewhat misguided. |
Inspiration: "Incremental loads should be replayable by design" (source) |
I wonder if we could make |
Sometimes it would be date, sometimes it would be id... Don't think we can anticipate all possible pagination options. But regardless, I think this is more or less achievable already thanks to runtime parameters, right? The difficult thing is the upsert logic. Not from a technical perspective but from a product philosophy perspective, shifting from a focus on reproducibility to a focus on idempotency (data pipelines and machine learning pipelines might require different approaches) |
I think you can generalise upserts into the need for a conditional node... |
BTW about Ibis and upserts ibis-project/ibis#5391 cc @deepyaman |
Kept thinking and thinking about the reproducibility idea. From #3979 (comment) (by @datajoely) and some conversations I had during EuroPython (and the fact that I've been mulling over this almost since I joined the project): We should acknowledge that the reproducibility principle has never been explicit. In fact, it's mentioned zero times in https://github.com/kedro-org/kedro/wiki/Kedro-Principles (established roughly 3 years ago #824). It was said in kedro-org/kedro-plugins#471 (comment) that "pure functions + DAG + static catalog = reproducible", but as I already hinted in that thread, that only holds if you assume that the catalog points to files that are tracked by version control alongside the code itself. The moment you refer to a remote location LLMs aren't hugely different from any other REST APIs in that regard. Even under my "1. Frozen inputs" scenario there, models and APIs aren't versioned, there's randomness without the possibility to set the seed, etc. Hence remote data locations, database connection strings, REST APIs, LLMs... all of them can break reproducibility. We should of course continue to try to keep functions as pure as possible (always a good thing to do) and push the I/O part to the datasets, but users are demanding a better answer to data pipelines and dynamic catalogs, so I think it's time to break free from the illusion that Kedro in itself and by itself can guarantee the reproducibility of the pipelines. |
This is true of any upstream data outside of your control, a SQL table/view which is changing frequently also applies. In my mind all of these roads lead back to some sort of conditional construct... you need it to do UPSERTS and a bunch of other things. |
FYI, we're considering giving dlt a try and see how it works alongside Kedro. |
Also renamed this issue to hopefully make it less confusing. |
Intro and context
As per kedro-org/kedro-devrel#94, these "data engineering and data science pipelines" actually reflect the broad categories that people have in mind when talking about "pipelines", which are
The focus of this issue is on data pipelines.
Data pipelines
Data pipelines are important because they are the beginning of any data project: you need to get your data from somewhere, to then start doing analysis, machine learning, and the like.
Data pipelines are tricky. For ETL architectures, the Transformation needs to be executed carefully, and it's coupled to both the source (Extraction) and target (Loading). ELT is touted as the "modern" approach, but creates a big overhead of often denormalised tables on the data warehouse.
According to industry surveys kedro-org/kedro-devrel#94, most teams use in-house tools, or just no recognizable tools at all (a mess of Python scripts, Jupyter notebooks, and the like), which suggests that most teams are doing ETL as opposed to ELT. The most recognizable tools and vendors focus on ELT and are commercial (Fivetran, Azure Data Factory) whereas the existing open source tools have mixed reviews (Airbyte, Meltano).
Kedro for data pipelines
We have evidence of users using Kedro for authoring data pipelines https://linen-slack.kedro.org/t/16312377/hi-everyone-here-luca-ds-from-italy-happy-kedro-user-for-3-y#2d666fee-5385-45d2-b2f8-4282ef22c2f9
However, there are also some signs that hint that there's margin for improvement for Kedro to be suitable for creating data pipelines:
IncrementalDataset
with non file-based datasets? kedro-plugins#471 (comment)UPSERT
(akaMERGE
aka "INSERT
orUPDATE
") operations [KED-2891] Implementspark.DeltaTable
dataset #964The fact that Kedro is not mentioned in any industry survey we have found kedro-org/kedro-devrel#94 is probably a symptom, rather than a cause, of all the above.
There's two sides of this problem:
Next steps
Part of this intersects with #1778, #1936 cc @merelcht
From a product perspective it's worth asking whether we want to pursue making Kedro a suitable tool for ETL/ELT pipelines at all. Regarding ELT, Kedro will probably never be as convenient as the Singer ecosystem and derivatives could theoretically be - however, the practical application of Meltano and Airbyte leaves some gaps, and maybe Kedro could be a satisfying tool for some users. Regarding ETL, I think Kedro could be a perfect framework for this, provided that the datasets, the crucial bits that perform the I/O, are up to the task or at least we provide clear guidance of what is the "Kedronic" way of achieving idempotent data ingestion pipelines that can support cold starts, behave well under changes of the source schema, and any other desirable properties of data pipelines.
From a technical perspective, on the other hand, we need to develop an understanding of how Kedro can be used nowadays for ELT/ETL pipelines following modern data architecture patterns, and evaluate to what extent the pains described above are real or are just a matter of having better docs.
On a related note, discussion in kedro-org/kedro-plugins#471 surfaced that we might have to make some of the Kedro principles more explicit.
Finally, we should execute on messaging/value proposition updates based on the conclusions of our investigation, and probably generate appropriate educational material in the form of documentation, blog posts, and videos.
The text was updated successfully, but these errors were encountered: