-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 memory pool dtor race in VeloxSubstraitRoundTripPlanConverterTest #2828
Conversation
✅ Deploy Preview for meta-velox canceled.
|
@xiaoxmeng has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
744bf46
to
58eff60
Compare
@xiaoxmeng has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@xiaoxmeng has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
…acebookincubator#2828) Summary: This is caused by the async task deletion (task dtor triggered by async driver removal). The fix is to add memory counting wait in Substrait2VeloxValuesNodeConversionTest dtor. Pull Request resolved: facebookincubator#2828 Differential Revision: D40332245 Pulled By: xiaoxmeng fbshipit-source-id: 7b433274385b9ed0e08cec06cd658e2a5f012a62
This pull request was exported from Phabricator. Differential Revision: D40332245 |
@xiaoxmeng has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
…facebookincubator#2828) Summary: This is caused by the async task deletion (task dtor triggered by async driver removal). The fix is to add memory counting wait in Substrait2VeloxValuesNodeConversionTest dtor. Pull Request resolved: facebookincubator#2828 Differential Revision: D40332245 Pulled By: xiaoxmeng fbshipit-source-id: 3344c92d57e98d38f3ba860c75125039b6c4b0b7
This pull request was exported from Phabricator. Differential Revision: D40332245 |
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.
@xiaoxmeng Thanks.
This is caused by the async task deletion (task dtor triggered by
async driver removal). The fix is to add memory counting wait in
Substrait2VeloxValuesNodeConversionTest dtor.