Skip to content
New issue

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

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

Already on GitHub? # to your account

Fix cyclic dependency between clients and sub clients #2858

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

pquentin
Copy link
Member

@pquentin pquentin commented Mar 24, 2025

While the Python GC can handle those dependencies, it can cause latency spikes when .option() is used for each query, which causes many clients to be garbage collected, which can be slower in the presence of cycles.

https://github.com/python/cpython/blob/main/InternalDocs/garbage_collector.md

objgraph backrefs, before and after

Namespaced sub clients reference back to the main client:

refs-main

No backreferences:

refs-cyclic-dependency-fixed

10 000 calls to client.options().info(), before and after

histogram-main

histogram-cyclic-fixed

Calling options() in a loop is 15% faster on average, and 2x faster for P100.

Copy link

@gioboa gioboa left a comment

Choose a reason for hiding this comment

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

👍 it looks nice

While the Python GC can handle those dependencies, it can cause latency spikes
when .option() is used for each query, which causes many clients to be garbage
collected, which can be slower in the presence of cycles.
@pquentin pquentin force-pushed the cyclic-dependency branch from 071563d to e6c68bb Compare March 24, 2025 22:20
@pquentin
Copy link
Member Author

👍 it looks nice

Thank you for the review! So it looked nice with 14 changed lines, but it did not work. :)

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants