Giter Site home page Giter Site logo

Comments (5)

stinodego avatar stinodego commented on August 18, 2024 1

While the panic exception itself apparently does not subclass Exception intentionally, Polars should not panic here. Broadcasting a literal of type List(Object) is the culprit here:

import polars as pl

df = pl.DataFrame({"x": [1, 2]}).with_columns(pl.lit([object()]))

from polars.

mesner avatar mesner commented on August 18, 2024

Ok I think this is related to #5606
Adding a catch for polars panic error results in what I expect.
Rethrowing as an exception causes the multiprocessing to finish gracefully.

except pl.PolarsPanicError as ex:
     print(f"PolarsPanicError error: {ex}")
     raise ValueError("PolarsPanicError error: {ex}")

This seems to be a trap. If end users are never supposed to see panics, then a catch-all and rethrow seems appropriate (perhaps for production builds or gated behind an env var). If users are expected to see panics, then having to catch a custom error seems inconvenient and error prone. Additionally, I've not confirmed, but it seems that generic error-catching assumptions of the multiprocessing library might extend to other libraries as well, and polars' (or any py03 library?) compatibility with them is degraded.

I admit that this could be argued as expected behavior and not a bug, but I still contend that it is not ideal.

I'll leave it open for comments. Many thanks for a great library.

from polars.

stinodego avatar stinodego commented on August 18, 2024

Simpler reproducer:

import polars as pl

try:
    raise pl.PolarsPanicError()
except Exception:
    print("hello")
# pyo3_runtime.PanicException

Indeed, I think this should be a proper Exception. The exception does subclass BaseException, so the following code will work:

import polars as pl

try:
    raise pl.PolarsPanicError()
except BaseException:
    print("hello")
# hello

The Python docs mention that exceptions should generally prefer to subclass Exception rather than BaseException.

programmers are encouraged to derive new exceptions from the Exception class or one of its subclasses, and not from BaseException.

Perhaps this is a bug in PyO3. I'll check with them to see if there is anything we can do. We cannot really solve this in Polars I think.

from polars.

stinodego avatar stinodego commented on August 18, 2024

I reported this to PyO3: PyO3/pyo3#3918

I will close this for now as I don't think there's anything Polars can do about this.

from polars.

mesner avatar mesner commented on August 18, 2024

@stinodego Any response to my interpretation in PyO3/pyo3#3918 (comment) ?

Edit: Thanks for the response and for looking into this!

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.