-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
WIP: Parallelize Invariants #12775
WIP: Parallelize Invariants #12775
Conversation
I think it's only the can-withdraw to be super slow, all the other invariants get completed quite quickly |
This is my understanding as well. #9876 this encapsulates that's |
if err := eg.Wait(); err != nil { | ||
panic(err) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if err := eg.Wait(); err != nil { | |
panic(err) | |
} | |
} | |
} | |
if err := eg.Wait(); err != nil { | |
panic(err) | |
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code needs tests.
closing this as @odeke-em and team are working on fixing the performance |
Need to test this, and maybe this is too dumb but worth trying at least.