Cory Grinstead
Cory Grinstead
closing as stale & unable to properly reproduce
Has anyone considered using FFI or Neon for JS bindings instead of WASM? Obviously it wouldnt work with browser side JS, but I think the larger use case would be...
@ritchie46 Was hoping to get some feedback on the POC i suggested when you have some time. I didn't know if you had strong opinions on using WASM and supporting...
related to #3716
so this is actually partially fixed on main If i run the same code pointing to the latest commit I get the following error instead ``` thread 'main' panicked at...
So some updates, I've been refactoring the json logic to use the same code as the row reader, so you should see the same results as using dicts. One thing...
just wanted to add a note: this is the fork that is currently being used for https://github.com/pola-rs/js-polars, so we can switch that to the main repo afterwards.
It looks like what is happening is when you use `scan_parquet().with_streaming(true).select([all()])` it is converting the logical plan to a `UdfExec` physical plan during the conversion in `physical_plan/streaming/convert.rs`. This uses the...
Since the bindings are very time consuming they are primarily developed & maintained by the community. IIRC, there were some discussions in the polars discord channel about adding JVM bindings.
Similar to the CSV reader, we can't scan compressed files. But we can add compression to the `JsonLineReader`, and wildcard to `JazyJsonLineReader`. As far as a more generic API, We...