Skip to content
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

optimize driver memory #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

zhmin
Copy link

@zhmin zhmin commented Mar 29, 2023

What type of PR is this?

enhancements:reduce driver memory usage

What this PR does / why we need it:

When running large data task,spark driver offen encounters oom error. By analyzing the heap dump,I found there are 185,657,950 PartitionInfo instances that occupy 4GB memory. Most PartitionInfo instances are referenced by ShuffleTaskManager.shuffleEpochSetMap attribute. This attribute type is ConcurrentHashMap[String, ConcurrentHashMap[Int, util.List[PartitionInfo]]]. It's only used to check shuffle data loss.
We can change List to Set, remove duplicate PartitionInfo. After doing this, the memory is used much less than before.

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

Successfully merging this pull request may close these issues.

None yet

1 participant