ai-rnatour

Results 13 comments of ai-rnatour

> Related to #5079 I posted a workaround we've been using in this Issue. We haven't seen any bugs from it yet but I wouldn't want to use this monkeypatch...

We're seeing a similar issue - in our case we have dataclasses that may contain arbitrary JSON user input, and Flyte keeps converting ints to floats every time we pass...

> > We're seeing a similar issue - in our case we have dataclasses that may contain arbitrary JSON user input, and Flyte keeps converting ints to floats every time...

> I noticed that `Union` is also a valid univariate type for the default dict type transformer. Thus this also works: > > ```python > from typing import Union >...

Picking this work back up, this is something else I've noticed. In the following code: ```python import marshmallow as mm @dataclass class Foo(DataClassJsonMixin): x: int y: float z: Any =...

I found a quick fix that seems to be working for us, any reason why it would be a bad idea to do this? ```python from flytekit.types.pickle import FlytePickle @dataclass...

> If you really, really want to be able to store the type of the value, you could use a more complex data class that also stores the type of...

> I do not believe you understand the functionality of `MyOutput` as it is implemented above. In the above example, it will automatically coerce those floats back to integers upon...

We are also seeing this issue. Overriding `container_image` with a `map_task` worked in 1.10.7 but the override is not working in 1.11.0.

> Just to expand on ^, if you're looking at the Task Template (in the flyteconsole task details tab) then you'll see the wrong info, as the container image (and...