-
Notifications
You must be signed in to change notification settings - Fork 46
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
[BUG] Dashboards-maps: documents size limit #587
Comments
@cbeaujoin-stellar Thanks reporting, @BionIT When we support multi data source, do you think if it's possible to read the value from |
Hi @junqiu-lei, |
Assign to @vamshin to decide the priority. |
@cbeaujoin-stellar we are looking to have this delivered for 2.15. |
Do not forget that for next release, it's still very boring to manualy export edit import Maps objects Json file. |
@cbeaujoin-stellar After we looked into this issue, rendering issues can occur when large number of documents are visualized same time, which is why we have set the default document size to 1000. Additionally, the Maps app uses index patterns instead of single indices for data layers. An index pattern can encompass multiple indices, making it impractical to apply a single index's max_result_window setting in this context. |
I'm running it with 4 indices with 500k documents each, it's working fine. |
It should at least be configurable according to management/opensearch-dashboards/settings > Custom vector map size |
Any update ? |
What is the bug?
As described here: #141
Update default query document size limit to 1000, the max is from index.max_result_window size,
But in fact limitation is set to 10000 and is not aligned with
index.max_result_window
:dashboards-maps/public/components/layer_config/documents_config/document_layer_source.tsx
Line 212 in 811e8b0
How can one reproduce the bug?
Create a map based on an index with number of documents and index.max_result_window greather than 10000.
You can't set a Number of Document greater than 10k.
What is the expected behavior?
UI should be aligned with the spec:
index.max_result_window
Idealy, maybe the maps plugin should use the scroll API when index.max_result_window > 10k
What is your host/environment?
docker, v2.11.1
Do you have any screenshots?
Do you have any additional context?
https://forum.opensearch.org/t/dashboards-maps-documents-size-limit/17983
The text was updated successfully, but these errors were encountered: