Onur Satici
Onur Satici
@askeySnip can you describe the stuck driver pods and share the scheduling errors?
Hey @aleclerc-sonrai, sorry for the late reply here. From my latest knowledge about this cluster-autoscaler would treat pending pods and number of rescheduled pods as signal for scaling decisions. k8s-spark-scheduler...
@lovasoa should be good for a review, I haven't ran tests for older python versions though. Appreciate if you could kick off CI again
I have also added a test to cover @dairiki 's comment. It should support nested generics now and it should only work when the same concrete type is used for...
Thanks a lot @dairiki , it seems like `__name__` was not an attribute of generic alias prior to 3.10, I can have a look
Also this implementation has a bug for repeated use of the same generic dataclasses. Example: ```python # class B is a generic dataclass class A: a: B[str] a: B[int] c:...
@dairiki fixed conflicts and the failing tests for python < 3.10. Also added a test for my comment above
@dairiki py3.6 should be fine now based on my local testing. Would be nice to kick CI one more time 🤞
@dairiki here is my understanding: > Does this example depend on having the repeated a field? (Or could the second a field be named b?) my bad, the issue happens...
@dairiki Thanks for having a look! Yea caching the schema class makes sense to me. I can have a go at it, hopefully soon if I can make the time,...