Andrew Achkar
Andrew Achkar
> @hajapy Have you looked into using [AWS Fleet API](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instant-fleet.html) instead of current `RunInstances`? From what I can tell, Fleet API could also help with #82? @jpalomaki Interesting, no I...
Could also be as simple as: https://github.com/hajapy/ec2-github-runner/commit/de9824c96b4fb54e7a7ac113463bec541ffc2935
> @hajapy Out of curiosity: have you investigated if it'd be possible to use GitHub's job [matrix](https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix) strategy (which'd just invoke this action several times) to spawn multiple runners? @jpalomaki...
Pypi seems to now have 0.9.3, but GitHub is lacking a corresponding tag and release.
What is the origin of the `typing.TypeVar('csv')` mechanism? As far as I can tell tracing through https://github.com/flyteorg/flytekit/blob/master/flytekit/types/file/file.py#L151-L167, both `FlyteFile['csv']` and `FlyteFile[typing.TypeVar('csv')]` are essentially normalized to the same thing. ```python FlyteFile['csv'].extension()...
Given the discussion about how using a plain `str` isn't valid and causes issues with mypy, I think this solution is not truly an improvement over the status quo, where...
~~Should the project dependencies change to declare dep on typing_extensions?~~ ~~Should we only use this for python
It seems like it would open doors in terms of what type of workflows users could author that leverage more of Sagemaker while still using flyte to orchestrate and run...
By the way, AWS has made the deprecation of the original sagemaker-operator official: https://docs.aws.amazon.com/sagemaker/latest/dg/kubernetes-sagemaker-operators-eos-announcement.html End of technical support for sagemaker-operator is slated for Feb 15, 2023
I locally patched pip-tools with this change and confirmed it eliminated a lot of downloading and hashing work when using pip-compile with AWS CodeArtifact. I still noticed there is a...