There's a great guide on how to enable free-threaded support here: https://pyo3.rs/v0.26.0/free-threading.html ...for us that mostly means protecting the SedonaContext and DataFrame with locks and using Python::attach() instead of with_gil(). After #228 this in theory opens up Python UDFs that are executed in parallel.
There's a great guide on how to enable free-threaded support here: https://pyo3.rs/v0.26.0/free-threading.html ...for us that mostly means protecting the SedonaContext and DataFrame with locks and using
Python::attach()instead ofwith_gil(). After #228 this in theory opens up Python UDFs that are executed in parallel.