[Embeddable] embeddable schema cache#271959
Merged
Merged
Conversation
Contributor
Author
|
/ci |
Contributor
💛 Build succeeded, but was flaky
Failed CI StepsMetrics [docs]
|
|
Pinging @elastic/kibana-presentation (Team:Presentation) |
ThomThomson
approved these changes
May 29, 2026
Contributor
ThomThomson
left a comment
There was a problem hiding this comment.
Nice clean local cache
Contributor
|
Starting backport for target branches: 9.4 |
Contributor
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
kibanamachine
added a commit
that referenced
this pull request
May 29, 2026
# Backport This will backport the following commits from `main` to `9.4`: - [[Embeddable] embeddable schema cache (#271959)](#271959) <!--- Backport version: 9.6.6 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sorenlouv/backport) <!--BACKPORT [{"author":{"name":"Nathan Reese","email":"reese.nathan@elastic.co"},"sourceCommit":{"committedDate":"2026-05-29T19:08:40Z","message":"[Embeddable] embeddable schema cache (#271959)\n\nDashboard transforms call `getTransforms` for each panel in the\ndashboard. The current implementation of this function builds the\nembeddable schema on each call. This can put a lot of CPU and memory\npressure on the Kibana server for large dashboards. Instead, embeddable\nschemas should only be created once.","sha":"660e108aba340fdf3fd93a0725981831da7dfb82","branchLabelMapping":{"^v9.5.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Feature:Embedding","Team:Presentation","release_note:skip","Feature:Drilldowns","backport:version","Project:Dashboards API","v9.5.0","v9.4.3"],"title":"[Embeddable] embeddable schema cache","number":271959,"url":"https://github.com/elastic/kibana/pull/271959","mergeCommit":{"message":"[Embeddable] embeddable schema cache (#271959)\n\nDashboard transforms call `getTransforms` for each panel in the\ndashboard. The current implementation of this function builds the\nembeddable schema on each call. This can put a lot of CPU and memory\npressure on the Kibana server for large dashboards. Instead, embeddable\nschemas should only be created once.","sha":"660e108aba340fdf3fd93a0725981831da7dfb82"}},"sourceBranch":"main","suggestedTargetBranches":["9.4"],"targetPullRequestStates":[{"branch":"main","label":"v9.5.0","branchLabelMappingKey":"^v9.5.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/271959","number":271959,"mergeCommit":{"message":"[Embeddable] embeddable schema cache (#271959)\n\nDashboard transforms call `getTransforms` for each panel in the\ndashboard. The current implementation of this function builds the\nembeddable schema on each call. This can put a lot of CPU and memory\npressure on the Kibana server for large dashboards. Instead, embeddable\nschemas should only be created once.","sha":"660e108aba340fdf3fd93a0725981831da7dfb82"}},{"branch":"9.4","label":"v9.4.3","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT--> Co-authored-by: Nathan Reese <reese.nathan@elastic.co>
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.
Dashboard transforms call
getTransformsfor each panel in the dashboard. The current implementation of this function builds the embeddable schema on each call. This can put a lot of CPU and memory pressure on the Kibana server for large dashboards. Instead, embeddable schemas should only be created once.