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

Fix slow push #1392

Merged

Conversation

christian-schilling
Copy link
Member

To determine which files are part of a filtered subset, regardless of their potentially changed path a trick is used: The filter is applied and then the inverted filter is applied to the result.
The implementation of that trick was to simply chain the filter with the inverted one. However this caused flatten() to create a hughe intermediate representation (something like a cartesian product) that then has to be simplified down again by optimize()/simplify(). While that worked, it was very computationally expensive making push extremly slow in some cases.
Now instead of chaining apply() is called twice, avoiding the huge intermediate representation and thus expensive optimization.

Change: fix-slow-push

To determine which files are part of a filtered subset,
regardless of their potentially changed path a trick is used:
The filter is applied and then the inverted filter is applied
to the result.
The implementation of that trick was to simply chain the filter
with the inverted one. However this caused flatten() to create
a hughe intermediate representation (something like a cartesian product)
that then has to be simplified down again by optimize()/simplify().
While that worked, it was very computationally expensive making
push extremly slow in some cases.
Now instead of chaining apply() is called twice, avoiding the
huge intermediate representation and thus expensive optimization.

Change: fix-slow-push
@christian-schilling christian-schilling merged commit 7bc2eec into master Sep 24, 2024
1 check passed
@christian-schilling christian-schilling deleted the @changes/master/[email protected]/fix-slow-push branch September 24, 2024 15:25
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.

2 participants