Daniel Gafni

Results 323 comments of Daniel Gafni

Yes, it can work similarly to how currently `partition_key` is actually passed as Run tag. There can be a special interface like: ```python @asset(storage_kind="parquet", compute_kind="polars", labels={"foo": "bar"}) ``` and internally...

I also believe that actually storage_kind should be a property of Out. So a multi_asset could have different storage kinds for different outputs

Seems like right now even specific-length tuples are not supported in the Pythonic config system? ```python from dagster import asset, materialize, Config def test_tuple_config(): class MyConfig(Config): tuple_field: Tuple[int, int] =...

Found a similar issue at #12, the implementation above is a working `post_mortem`

ohh was wondering why was `enabledPackages` missing too.. I just had to update the flake :)

I can confirm this currently works on `2024.5.0` with `GOOGLE_APPLICATION_CREDENTIALS` pointing to a `service_account.json` file.

Happens for me with multiple assets on 1.7.3 ``` AssetKey(s) [...] were selected, but no AssetsDefinition objects supply these keys ``` **re-executing the same Run works without any errors** I'm...

Seems like a really big issue! Around 50% of my Runs randomly fail and work after re-running (sometimes). Tagging my friend @tacastillo because why not

This is extremely weird. I have this problem with all my assets. Again, the Runs sometimes fails, and sometimes complete without any issues. I can re-execute a failed run and...