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.
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
[Save Object Aggregation View] Fix for export all after scroll count response changed in PR#2656 #2696
[Save Object Aggregation View] Fix for export all after scroll count response changed in PR#2656 #2696
Changes from 12 commits
3625e09
807f26f
48229a9
eb5689e
83c4e09
cf8876b
fa850aa
e8e5e23
4a4905c
f64f499
ffb14fc
7fb17fc
a71ee82
8c1e851
32b7e51
718c1a0
57b98b0
bf6d8ad
17932b6
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I briefly looked into the idea of having a convention for
_all
namespaces to reduce the size of the body of the request, but it looks like this would require changes insrc/core/server/saved_objects/service/lib/repository.ts
(https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/src/core/server/saved_objects/service/lib/repository.ts#L722) and I wasn't able to determine what would be required to implement this.@cliu123 Can we include all registered namespaces in the request or should we look into providing an
_all
request?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, we cannot.
availableNamespaces
provides by security backend plugin that evaluates the user's tenant permissions. Not all users have permissions to all tenants.