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

Reduce memory usage during map creation #185

Open
JoshKarpel opened this issue Jan 24, 2020 · 0 comments
Open

Reduce memory usage during map creation #185

JoshKarpel opened this issue Jan 24, 2020 · 0 comments
Assignees
Labels
enhancement New feature or request internals Non-user-facing functionality

Comments

@JoshKarpel
Copy link
Contributor

Right now, we pre-process all of the map data in memory while writing the map out to disk. The primary offender is

def process_args_and_kwargs(args_and_kwargs: Iterator[Tuple[tuple, dict]]):
, but the ease of using the pre-processed data has downstream effects elsewhere.

Hopefully, we can completely remove the need for pre-processing. This would dramatically reduce memory usage during map creation.

@JoshKarpel JoshKarpel added enhancement New feature or request internals Non-user-facing functionality labels Jan 24, 2020
@JoshKarpel JoshKarpel self-assigned this Jan 24, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request internals Non-user-facing functionality
Projects
None yet
Development

No branches or pull requests

1 participant