-
Notifications
You must be signed in to change notification settings - Fork 275
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]: Investigate performance degradation between 2.3.0 and 2.4.0 version #2888
Comments
I can see the latency increased on 2.4 on 10/21/2022. @adnapibar may be Rabi if we can see what was merged on that date. |
Do we know why there is a significant difference in the p99 between the perf tests ran today vs 11/10? |
The NYC taxis dataset does define a couple geo_point data types. This change to add support for GeoJSON was backported to the 2.x branch on October 21, so it lines up with the regression. @heemin32 is there any chance this change resulted in a performance regression during indexing? The throughput graph shows the change in performance a little more clearly, in my opinion: |
The change in question defines a new way of inputting the geo point. It doesn't make any change in the indexing. Will be doing deep dive on this. |
The change include creation of XContent for array format so that it can be extendible by plugin correctly. This might have caused the index delay for point data in array format. |
NYC taxis dataset contains geopoint in array format. I suspect the degradation is from the change that I made in AbstractPointGeometryFieldMapper.java. Instead of reverting the entire commit, I am going to revert the change in |
Closing this issue as we found the root cause of the degradation. You can view more info on this PR |
Describe the bug
Performance test results showed increase of indexing latency in 2.4.0 version compared to 2.3.0 version as listed here. We need to identify the root cause if the degradation ( i.e. Is the degradation caused due to perf tool setup OR related to OpenSearch core changes)
To reproduce
The results are published in 2.4.0 release issue
Expected behavior
No response
Screenshots
If applicable, add screenshots to help explain your problem.
Host / Environment
No response
Additional context
No response
Relevant log output
No response
The text was updated successfully, but these errors were encountered: