Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix bugged singleton implementation #32218

Merged
merged 3 commits into from
Jun 29, 2023
Merged

Conversation

mobuchowski
Copy link
Contributor

Singleton implementation using overloaded __new__ did not work - it always called init on instance creation.

If new() does not return an instance of cls, then the new instance’s init() method will not be invoked.

But it is an cls instance in this case.

Python 3.9.9 (main, Nov 29 2021, 15:18:55)
[Clang 13.0.0 (clang-1300.0.29.3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> class A:
...     _instance = None
...     def __new__(cls):
...         if cls._instance is None:
...             cls._instance = super().__new__(cls)
...         return cls._instance
...
>>> class A:
...     _instance = None
...     def __new__(cls):
...         if cls._instance is None:
...             cls._instance = super().__new__(cls)
...         return cls._instance
...     def __init__(self):
...         print("init")
...
>>> A()
init
<__main__.A object at 0x1028c4a60>
>>> A()
init
<__main__.A object at 0x1028c4a60>
>>>

This changes it to metaclass-based approach that does not have this bug.

Python 3.9.9 (main, Nov 29 2021, 15:18:55)
[Clang 13.0.0 (clang-1300.0.29.3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> class Singleton(type):
...     """Metaclass that allows to implement singleton pattern."""
...     _instances: dict = {}
...     def __call__(cls, *args, **kwargs):
...         if cls not in cls._instances:
...             cls._instances[cls] = super().__call__(*args, **kwargs)
...         return cls._instances[cls]
...
>>> class A(metaclass=Singleton):
...     def __init__(self):
...         print("init")
...
>>> A()
init
<__main__.A object at 0x10268b0a0>
>>> A()
<__main__.A object at 0x10268b0a0>
>>>

I would prefer to have singletons implemented as modules, as in some other places, but in this case those are already classes - I think metaclass based approach it does not change their API while fixing the issue.

@boring-cyborg boring-cyborg bot added provider:cncf-kubernetes Kubernetes provider related issues area:Scheduler Scheduler or dag parsing Issues labels Jun 27, 2023
Copy link
Member

@potiuk potiuk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, very interesting. TIL!

looks like we had "ALMOST singletons"

@uranusjr
Copy link
Member

It is unclear to me why a metaclass is needed. From what I can tell this can be most simply solved by calling __init__ in ProvidersManager.__new__ (and ResourceVersion doesn’t need initialisation to begin with)

@potiuk
Copy link
Member

potiuk commented Jun 28, 2023

It is unclear to me why a metaclass is needed. From what I can tell this can be most simply solved by calling __init__ in ProvidersManager.__new__ (and ResourceVersion doesn’t need initialisation to begin with)

I think there are various approaches, I actually like the metaclass approach, it's cleaner and it also allows to avoid duplication.

@potiuk
Copy link
Member

potiuk commented Jun 28, 2023

I also really like the explicitness of it. Previously we had to make a comment "Hey this class is singleton". now we do not have to - it's obvious from the class definition that it's singleton.

@potiuk
Copy link
Member

potiuk commented Jun 28, 2023

And we have a test covering the expected behaviour as well.

I see only positives.

@potiuk
Copy link
Member

potiuk commented Jun 28, 2023

Interestingly - seems that this approach has an interesting (apparently unrelated) side-effect of the www test failing. I wonder what's the reason ?

@mobuchowski
Copy link
Contributor Author

@potiuk Trying to debug this, but this is totally foreign part of Airflow for me 🙂

@dstandish
Copy link
Contributor

dstandish commented Jun 28, 2023

It is unclear to me why a metaclass is needed. From what I can tell this can be most simply solved by calling __init__ in ProvidersManager.__new__ (and ResourceVersion doesn’t need initialisation to begin with)

Can you show what your code would look like @uranusjr (i.e. code for your __new__)? i'm curious

@potiuk
Copy link
Member

potiuk commented Jun 28, 2023

@potiuk Trying to debug this, but this is totally foreign part of Airflow for me 🙂

I am not sure I am familiar with it, but well might be time to excercise some puzzle solving skills :)

@potiuk
Copy link
Member

potiuk commented Jun 29, 2023

Fix to the failing tests here: #32248

Very interesting edge-case. I think it has not been triggered before because effectively singleton was not really used and each entry was only accessed once. With fixing the singleton, the "invalid" entry was accessed twice during the same test and the second time it returned functools.partial object instead of None.

Signed-off-by: Maciej Obuchowski <obuchowski.maciej@gmail.com>
@potiuk
Copy link
Member

potiuk commented Jun 29, 2023

I rebased it after merging the fix in #32248

Signed-off-by: Maciej Obuchowski <obuchowski.maciej@gmail.com>
Signed-off-by: Maciej Obuchowski <obuchowski.maciej@gmail.com>
@mobuchowski mobuchowski merged commit e2e707c into apache:main Jun 29, 2023
42 checks passed
@ephraimbuddy ephraimbuddy added the type:bug-fix Changelog: Bug Fixes label Jul 6, 2023
@ephraimbuddy ephraimbuddy added this to the Airlfow 2.6.3 milestone Jul 6, 2023
ephraimbuddy pushed a commit that referenced this pull request Jul 6, 2023
* fix bugged singleton implementation

Signed-off-by: Maciej Obuchowski <obuchowski.maciej@gmail.com>
(cherry picked from commit e2e707c)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:Scheduler Scheduler or dag parsing Issues provider:cncf-kubernetes Kubernetes provider related issues type:bug-fix Changelog: Bug Fixes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants