Batch upstream map-length lookups when resolving mapped kwargs - #70620
Open
rjgoyln wants to merge 5 commits into
Open
Batch upstream map-length lookups when resolving mapped kwargs#70620rjgoyln wants to merge 5 commits into
rjgoyln wants to merge 5 commits into
Conversation
Member
|
This only covers the batching part, not memoizing, so “closing” is wrong. |
Contributor
Author
OK. I got it. Thanks. |
uranusjr
reviewed
Jul 29, 2026
uranusjr
reviewed
Jul 29, 2026
uranusjr
reviewed
Jul 29, 2026
uranusjr
reviewed
Jul 29, 2026
uranusjr
reviewed
Jul 29, 2026
The local imports were carried over from the neighbouring lookup rather than required by anything: no import cycle forces them, and airflow.models is already a top-level dependency of this module. Feeding update() straight from the result rows avoids allocating a mapping that is discarded immediately.
rjgoyln
force-pushed
the
batch-map-length-lookups
branch
from
July 29, 2026 12:08
0e9b9c6 to
4eeacca
Compare
uranusjr
reviewed
Jul 31, 2026
Member
|
Is it possible to further reduce the query with |
uranusjr
reviewed
Jul 31, 2026
Contributor
Author
Thanks for the suggestion. I benchmarked the Advantages
Disadvantages
I have the prototype ready. Let me know if you think the 0.8ms speedup is worth the added complexity, and I can push it! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolving mapped task kwargs previously issued one database query per
XComArg, causing N+1 queries for expanded kwargs (especially with nestedzip()/concat()). This change replaces those repeated lookups with a bulk prefetch, addressing the long-standing TODO inSchedulerDictOfListsExpandInput._get_map_lengths.Upstream map lengths are now resolved in a fixed number of queries, improving both scheduler expansion and execution API argument binding.
Changes
prefetch_map_lengths()to resolve all referenced upstream map lengths in bulk.lengthsparameter toget_task_map_length()and use prefetched results when available.SchedulerDictOfListsExpandInputandSchedulerListOfDictsExpandInput.Testing
mypy-airflow-coreand pre-commit checks pass.-->
Was generative AI tooling used to co-author this PR?
Drafted-by: Claude Code (Opus 5)
{pr_number}.significant.rst, in airflow-core/newsfragments. You can add this file in a follow-up commit after the PR is created so you know the PR number.