Closed
Description
Spring Boot Version: 2.7.3 (Issue exists in 2.7.2, tried in that)
Elasticsearch Server Version: 8.1.2
The update path that spring data elastic search uses is:
POST /index/_doc/{docId}/_update
which gives error: no handler found for uri
Instead the path should be:
POST /index/_update/{docId}
Please fix this. I've to do a lot of workarounds to fix it.