Having done a bit of data engineering in my day, I'm growing more and more allergic to the DataFrame API (which I used 24/7 for years). From what I've seen over the past ~10 years, 90+% of use cases would be better served by SQL, both from the development perspective as well as debugging, onboarding, sharing, migrating etc.<p>Give an analyst AWS Athena, DuckDB, Snowflake, whatever, and they won't have to worry about looking up what m6.xlarge is and how it's different from c6g.large.
I agree with this 100%. The creator of duckdb argues that people using pandas are missing out of the 50 years of progress in database research, in the first 5 minutes of his talk here [1].<p>I've been using Malloy [2], which compiles to SQL (like Typescript compiles to Javascript), so instead of editing a 1000 line SQL script, it's only 18 lines of Malloy.<p>I'd love to see a blog post comparing a pandas approach to cleaning to an SQL/Malloy approach.<p>[1] <a href="https://www.youtube.com/watch?v=PFUZlNQIndo" rel="nofollow">https://www.youtube.com/watch?v=PFUZlNQIndo</a>
[2] <a href="https://www.malloydata.dev/" rel="nofollow">https://www.malloydata.dev/</a>
> The creator of duckdb argues that people using pandas are missing out of the 50 years of progress in database research, in the first 5 minutes of his talk here.<p>That's pandas. Polars builds on much of the same 50 years of progress in database research by offering a lazy DataFrame API which does query optimization, morsel-based columnar execution, predicate pushdown into file I/O, etc, etc.<p>Disclaimer: I work for Polars on said query execution.
The DataFrame interface itself is the problem. It's incredibly hard to read, write, debug, and test. Too much work has gone into reducing keystrokes rather than developing a better tool.
Not sure what you mean by this. The table concept is the same age as computers. Here is a table, do something with it -> this is the high level df api. All the functions make sense, what is hard to read, write or debug here?<p>I have used Polars to process 600M of xml files (with a bit of a hack) and the polars part of the code is readable with minimal comments.<p>Polars has a better api than pandas, at least the intent is easier to understand. (lazyness, yay)
The problem with the dataframe API is that whenever you want to change a small part of your logic, you usually have to rethink and rewrite the whole solution. It is too difficult to write reusable code. Too many functions that try to do too many things with a million kwargs that each have their own nuances. This is because these libraries tend to favor fewer keystrokes over composable design. So the easy stuff is easy and makes for pretty docs, but the hard stuff is obnoxious to reason through.<p>This article explains it pretty well: <a href="https://dynomight.net/numpy/" rel="nofollow">https://dynomight.net/numpy/</a>
With all due respect, have you actually used the Polars expression API? We actually strive for composability of simple functions over dedicated methods with tons of options, where possible.<p>The original comment I responded to was confusing Pandas with Polars, and now your blog post refers to Numpy, but Polars takes a completely different approach to dataframes/data processing than either of these tools.
I have used numpy, but don't understand what it has to do with dataframe apis<p>Take two examples of dataframe apis, dplyr and ibis. Both can run on a range of SQL backends because dataframe apis are very similar to SQL DML apis.<p>Moreover, the SQL translation for tools for pivot_longer in R are a good illustration of complex dynamics dataframe apis can support, that you'd use something like dbt to implement in your SQL models. duckdb allows dynamic column selection in unpivot. But in some SQL dialects this is impossible. dataframe apis -> SQL tools (or dbt) enable them in these dialects.
Assuming you’re comparing polars/data frames to sql… SQL has literally the worst debugging experience imaginable.
Just wanted to say I'm a huge fan of your work. Been using Polars for my team's main project for years and it just keeps getting better.
In the same talk, Mark acknowledges that "for data science workflows, database systems are frustrating and slow." Granted DuckDB is an attempt to fix that, most data scientists don't get to choose what database the data is stored in.
Have you used Malloy in a pipeline, e.g., with Airflow? If so, how was the experience?
That is a false dichotomy. You can use SQL tools but still have to choose the instance type.<p>Especially when considering testability and composability, using a DataFrame API inside regular languages like Python is far superior IMO.
Yeah it makes no sense.<p>Why is the dataframe approach getting hate when you’re talking about runtime details?<p>That folks understand the almost conversational aspect of SQL vs. that of the dataframe api but the other points make no difference.<p>If you’re a competent dev/data person and are productive with the dataframe then yay. Also setup and creating test data and such it’s all objects and functions after all — if anything it’s better than the horribad experience of ORMs.
As a user? No, I don't have to choose. What I'm saying is that analysts (who this Polars Cloud targets, just like Coiled or Databricks) shouldn't worry about instance types, shuffling performance, join strategies, JVM versions, cross-AZ pricing etc. In most cases, they should just get a connection string and/or a web UI to run their queries, everything abstracted from them.<p>Sure, Python code is more testable and composable (and I do love that). Have I seen _any_ analysts write tests or compose their queries? I'm not saying these people don't exist, but I have yet to bump into any.
You were talking about data engineering. If you do not write tests as a data engineer what are you doing then? Just hoping that you don't fuck up editing a 1000 > line SQL script?<p>If you use Athena you still have to worry about shuffling and joining, it is just hidden.. It is Trino / Presto under the hood and if you click explain you can see the execution plan, which is essentially the same as looking into the SparkUI.<p>Who cares about JVM versions nowadays? No one is hosting Spark themselves.<p>Literally every tool now supports DataFrame AND SQL APIs and to me there is no reason to pick up SQL if you are familiar with a little bit of Python
Way too many data engineers are running in clown mode just eyeballing the results of 1000 line SQL scripts....<p><a href="https://ludic.mataroa.blog/blog/get-me-out-of-data-hell/" rel="nofollow">https://ludic.mataroa.blog/blog/get-me-out-of-data-hell/</a>
I was talking about data engineering, because that was my job and all analysts were downstream of me. And I could see them struggle with handling infrastructure and way too many toggles that our platform provided them (Databricks at the time).<p>Yes, I did write tests and no, I did not write 1000-line SQL (or any SQL for that matter). But I could see analysts struggle and I could see other people in other orgs just firing off simple SQL queries that did the same as non-portable Python mess that we had to keep alive. (Not to mention the far superior performance of database queries.)<p>But I knew how this all came to be - a manager wanted to pad their resume with some big data acronyms and as a result, we spent way too much time and money migrating to an architecture, that made everyone worse off.
With Polars Cloud you don't have to choose those either. You can pick cpu/memory and we will offer autoscaling in a few months.<p>Cluster configuration is optional if you want this control. Anyhow, this doesn't have much to do with the query API, be it SQL or DataFrame.
I really doubt that Polars Cloud targets analysts doing ad-hoc analyses. It is much more likely towards people who build data pipelines for downstream tasks (ML etc).
> analysts (who this Polars Cloud targets, just like Coiled or Databricks) shouldn't worry about instance types, shuffling performance, join strategies,<p>I think this part(query optimizations) in general not solved/solvable, and it is sometimes/often(depending on domain) necessary to digg into details to make data transformation working.
Analysts don’t because it’s not part of the training & culture. If you’re writing tests you’re doing engineering.<p>That said the last Python code I wrote as a data engineer was to run tests on an SQL database, because the equivalent in SQL would have been tens of thousands of lines of wallpaper code.
Again the issue you’re having is the skill level of the audience you keep bringing up not the tool.
We all have allergies. I'm allergic to 1000 line SQL queries which include functions that are only usable for a specific flavor and version of SQL.
Fun aside - I actually used polars for a bit - first time I tried it, I actually thought it was broken, because it finished processing so quickly I thought it silently exited or something.<p>So I'm definitely a fan, IF you need the DataFrame API. My point was that most people don't need it and it's oftentimes standing in the way. That's all.
Polars is very nice. I’ve used it off and on. The option to write rust udf’s for performance, easy integration of rust with Python with pyo3 will make it a real contender.<p>Yes, I know spark and scala exist. I use it. But the underlying Java engines and the tacky Python gateway impact performance and capacity usage. Having your primary processing engine in the same process compiled natively always helps.
I think your argument focuses a lot on the scenario where you already have cleaned data (i.e., data warehouse). I and many other data engineers agree, you're better off with hosting it on SQL RDBMS.<p>However, before that, you need a lot of code to clean the data and raw data does not fit well into a structured RDBMS. Here you choose to either map your raw data into row view or a table view. You're now left with the choice of either inventing your own domain object (row view) or use a dataframe (table view).
I agree, but there are other possibilities in between those two extremes, like Quivr [1]. Schemas are good, but they can be defined in Python and you get a lot more composability and modularity than you would find in SQL (or pandas, realistically).<p>1: <a href="https://github.com/B612-Asteroid-Institute/quivr" rel="nofollow">https://github.com/B612-Asteroid-Institute/quivr</a>
100% agree. I've also worked as a data engineer and came to the same conclusion. I wrote up a blog which went into a bit more depth on the topic here: <a href="https://www.robinlinacre.com/recommend_sql/" rel="nofollow">https://www.robinlinacre.com/recommend_sql/</a>
I recently had to create a reproducible version of incredibly complicated and messy R concoctions our data scientists came up with.<p>I did it with pandas without much experience with it and a lot of AI help (essentially to fill in the blanks the data scientists had left, because they only had to do the calculation once).<p>I then created a polars version which uses lazyframes. It ended up being about 20x faster than the first version. I did try to do some optimizations by hand to make the execution planner work even better which I believe paid off.<p>If you have to do a large non interactive analytical calculation (i.e. not in a notebook) polars seems to be way ahead imo!<p>I do wish that it was just as easy to use as a rust library though.. the focus however seems to be on being competitive in python land mainly.
OG polars announcement: <a href="https://news.ycombinator.com/item?id=23768227">https://news.ycombinator.com/item?id=23768227</a>
I absolutely love Polars. I work on some unholy dirty data and the ease of use, chaining, speed are a godsend. One dataset that previously took 40 minutes in Pandas now takes two minutes in Polars. Granted, the Pandas query could be optimized, but out of the box, Polars eats pandas when it comes to speed and efficiency.<p>I basically ditched SQL for most of my analytical work because it's way easier to understand for my juniors (we're not technically a tech team) so it's a total win in my eyes.
Love it!<p>Still don't get why one of the biggest player in the space, Databricks is overinvesting in Spark. For startups, Polars or DuckDB are completely sufficient. Other companies like Palantir already support bring your own compute.
That's a good question! Especially after Frank McSherry's COST paper [1], it's hard to imagine where the sweet spot for Spark is. I guess for Databricks it makes sense to push Spark, since they are the ones who created it. In a way, it's their competitive advantage.<p>[1]: <a href="https://www.usenix.org/system/files/conference/hotos15/hotos15-paper-mcsherry.pdf" rel="nofollow">https://www.usenix.org/system/files/conference/hotos15/hotos...</a>
Databricks is targeting large enterprises, who have a variety of users. Having both Python and SQL as first class languages is a selling point.
Been a polars fan for a <i>loooong</i> time. Happy to see the team ship their product and I hope it does well!
Polars is certainly better than pandas doing things locally. But that is a low bar. I’ve not had great experience using Polars on large enough datasets. I almost always end up using duckdb. If I am using SQL at the end of the day, why bother starting with Polars? With AI these days, it’s ridiculously fast to put together performant SQLs. Heck you can even make your own grammar and be done with it.
SQL is definitely easier and faster to compose than any dataframe syntax but I think pandas syntax (via slicing API) is faster to type and in most cases more intuitive but I still use polars for all df-related tasks in my workflow since it's more structured and composable (although needs more time to construct but that's a cost I'm willing to take when not simply prototyping). When in an ipython session, sql via duckdb is king. Also: python -m chdb "describe 'file.parquet'" (or any query) is wonderful
I guess if it’s too large to be performant than SQL can be the way to go. I avoid sql for one off tasks though as I can more easily grok transformations in polars code than sql queries.
you can use Ibis if you want a dataframe UI on top of DuckDB (or a number of other query engines, including Polars)
I don't understand. Can I use distributed Polars with my own machines or do I have to buy cloud compute to run distributed queries (I don't want that). If not, is this planned?
Polars is great, absolute best of luck with the launch
Hmm so how does the polars SQLContext stack up against duckdb? And can both cope with a distributed polars?<p>It feels like we are on the path to reinventing BigQuery.
Hi, I am the original author and CEO of Polars. We are not focused on SQL at this time and provide a DataFrame native API.<p>Polars cloud will for the moment only support our DataFrame API. SQL might come later on the roadmap, but since this market is very saturated, we don't feel there is much need there.
I guess could be a good contender for replacing spark, however, I suspect the fact spark is free and open source, which forms a community around it, means that dpolars might struggle to gain traction, when it's gated by a credit card.
Out of curiosity and because I don't want to create a test account right now:<p>How does billing with "Deploy on AWS" work? Do I need to bring my own AWS account and Polars is payed for the image through AWS or am I billed by Polars and they pass a share to AWS. In other words do I have a contract primarily with AWS or Polars?
Cool. But abstract away the infra knowledge to the actual instance types. Instead I’d expect the polars cloud abstraction to find me the most cost effective (spot instance) that meets my cpu and memory reqs and disk reqs. Why do I have to give it — looking at the example — the AWS instance type?
Maybe just me, but for anyone else who was confused<p>- Polars (Pola.rs) - the DataFrames library that now has a cloud version<p>- Polar (Polar.sh) - Payments and MoR service built on top of Stripe
Is there any distributed polars for non Polars Cloud?<p>EDIT: nevermind see same question in this thread. The answer is no!
How does Polars compare to FireDucks?
I thought this was about my favorite sparkling water brand at first glance.
can i run a distributed computation in pola.rs cloud on my own AWS infra? or do I need to run it on-prem?
So competing with SnowFlake?
EDIT: I think the below is correct, but I’ve just seen in the main product landing page that for a certain benchmark it’s an order of magnitude cheaper AND faster than AWS glue, so that’s the target market by the looks of things.<p>——<p>I don’t think so - probably more in the realms of spark and, based on the roadmap, airflow.<p>For me it would be about doing big data analytics / dashboarding / ML or DS data prep.<p>My understanding is that Snowflake plays a lot in the data warehouse/lakehouse space, so is more central to data ops / cataloguing / SSOT type work.<p>But hey that’s all first impressions from the press release.
moreso competing with Coiled Computing (Dask version, very similar, you can run Polars there too). and then Databricks more than Snowflake, but all of these data platforms converge on similar features. also competing with Fivetran eventually after their acquisition yesterday
SnowFlake, Polars, DucksDB, FireBase, FireDuck...
I guess the next product will be IceDuck.<p>What is wrong with you DB people :))).
can you dive a bit deeper into the comparison with spark rdd
I am not an expert on Spark RDDs, but AFAIK they are a more low-level data structure that offer resilience and a lower level map-reduce API.<p>Polars Cloud maps the Polars API/DSL to distributed compute. This is more akin to Spark's high level DataFrame API.<p>With regard to implementation, we create stages that run parts of Polars IR (internal representation) on our OSS streaming engine. Those stages run on 1 or many workers create data that will be shuffled in between stages. The scheduler is responsible for creating the distributed query plan and work distribution.
[dead]
[dead]