Daniel Gafni

Results 323 comments of Daniel Gafni

Perhaps just logging the partition_keys being mapped would be enough?

This isn't really a solution. I **want** to use buildkit, it provides cache volumes which speed up builds a lot. Right now I'm building with `docker-compose` and running the containers...

Exactly (this is literally the original issue lol).

@ritchie46 > Polars should be able to write partitioned datasets as well. Is there a way Polars could support `pyarrow.parquet.write_dataset`? It has partitioned writing. Right now only `pyarrow.parquet.write_table` is supported...

I think this is a big missing feature which is really important for complex K8s workloads. I want to be able to specify from config: - if to run on...

Hey @PatrickShaw! I've tried doing what you suggested but am still getting errors like ```rust > error[E0599]: no method named `drain_filter` found for struct `std::collections::HashMap` in the current scope >...

I ended up subclassing it and overriding a few methods to fix some issues. Is anyone else interested in a stable and well-tested Python client? If so, I can look...

Hey guys! Not sure what is the state of this issue, but the bug is still there: ```python >>> pytest.approx([{"a": 0.1}], rel=1e-1) == [{"a": 0.11}] False >>> pytest.approx(0.1, rel=1e-1) ==...