-
Notifications
You must be signed in to change notification settings - Fork 304
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
MGPropertyGraph: fix OOM when renumbering by type #3123
Conversation
Fixes rapidsai#3110 Previously, all data for a single type would be collected in a single partition, which could easily overwhelm a worker or GPU. We now sort by multiple columns to ensure data can be evenly distributed.
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.
👍
Looks good; was just wondering what the impact on runtime would be. |
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.
LGTM
/merge |
Codecov ReportBase: 55.31% // Head: 55.20% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## branch-23.02 #3123 +/- ##
================================================
- Coverage 55.31% 55.20% -0.11%
================================================
Files 148 142 -6
Lines 9423 9229 -194
================================================
- Hits 5212 5095 -117
+ Misses 4211 4134 -77 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Fixes #3110
Previously, all data for a single type would be collected in a single partition, which could easily overwhelm a worker or GPU.
We now sort by multiple columns to ensure data can be evenly distributed.