Erin Drummond

Results 50 comments of Erin Drummond

I can't believe you're still working on this. Keep fighting the good fight 💕

I am also experiencing this. Its trying to make a request to `/streams//throughput` and is getting a 404. ``` user@host ~ $ curl http://graylog-api/streams/57390a30ba0b330001edc45c/throughput {"type":"ApiError","message":"HTTP 404 Not Found"} user@host ~...

@izeigerman I had a go at implementing your suggestions on the Airflow scheduler code but I ran out of time to add a test case that proves I implemented them...

This would also help with having less tables for the janitor to clean up. Recent changes have made the [actual snapshot deployability](https://github.com/TobikoData/sqlmesh/blob/main/sqlmesh/core/snapshot/evaluator.py#L685) available in the strategy `create()` method (previously, only...

It would be a new concept for SQLMesh, right now its concept of partitioning is "tell the underlying engine what columns to partition on and let it handle it transparently"....

Indeed it does, and even with Declarative Partitioning you still have to manually create the partitions (you just don't have to manually attach and detach them). For example: ``` create...

Yes, for incremental models partitioned by time, the plan is to use RANGE-based partitioning. I'm debating whether to make it multiples of the interval unit specifically or copy what Iceberg...

It's still on our roadmap but we aren't actively working on it right now

With the initial implementation: - Partitioned Iceberg tables are supported - Partitioned Hive tables are partially supported. They can be created but operations that need to delete data will currently...

Yep, still working on it. I'll link to this issue in the next PR when it's raised