-
Notifications
You must be signed in to change notification settings - Fork 37
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
Memory Usage #5
Comments
Descendants and ancestors get cached which (depending on the graph) may eat up a lot of memory (in fact, if fully populated, it is the transitive closure). As caches are populated, querying is really fast - a property I need. Currently I don't see a way to lower the memory footprint. But I'm happy to review Pull Requests. ;) |
Can you provide your test and how you executed it? |
I'm use dag as service. So i have some service that receives payload and dag name. After that it loads dag from database and run execution. |
after using caching, memory usage is small. so this is not the issue now |
mostly memory usage can be lower without maps and use slices or some other optimized stuff. |
another stuff that over allocate memory (i'm run benchmark for 100000 count)
can we lower the memory usage?
The text was updated successfully, but these errors were encountered: