Giter Site home page Giter Site logo

Comments (4)

cmdlineluser avatar cmdlineluser commented on August 20, 2024

May be relevant: #16624 (comment)

Polars will resolve queries upon collection, not upon DSL creation. This is important as we want to be able to send the query to another machine. At that point the schema will be resolved not when you write the query.

from polars.

kszlim avatar kszlim commented on August 20, 2024

Ah should I close this?

from polars.

alexander-beedie avatar alexander-beedie commented on August 20, 2024

The call to "schema" will trigger the compute that establishes the execution plan, and that's when it finds out the column isn't present (a call to .explain() or .collect() would also raise an error for the same reason). Essentially lazy mode has become even lazier, so that it can better scale across more use-cases (cloud, for instance) 😅

from polars.

kszlim avatar kszlim commented on August 20, 2024

I wonder what the implications are for libraries like pandera/patito/etc. They'll have to be built to minimize the number of schema/column calls they make.

I wonder if it's possible to make columns relatively cheap vs schema. I believe columns is used fairly often in a programmatic manner (though perhaps selectors are the ideal/idiomatic way), but I'd imagine that it's a pattern that will be hard to steer users away from.

@ritchie46 @alexander-beedie what are your thoughts on that? I definitely think lots of ETL pipelines involve people doing something along the lines of and in potentially many stages of the pipeline:

exprs = []
for col in ldf.columns:
    exprs.append(pl.col(col)...)

from polars.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.