-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Implement support for reindex API [DATAES-955] #1529
Comments
sothawo commented related SO issue https://stackoverflow.com/questions/64350005/spring-elasticsearch-reindex-method/64365323#64365323 |
I am using reindex api, I can send pull request to implement this enhancement, the implementation is similar to putTemplate, but I have some confusion, reindex and putTemplate are not dependent on a specific index, but the implementation of IndexOperations is RestIndexTemplate which constructor must specify IndexCoordinates or boundClass, It doesn't make sense |
####about Elasticsearch has this under Index APIs that's the reason why it is in the We could introduce something like public class IndexCoordinates {
public static final IndexCoordinates UNSPECIFIED = IndexCoordinates.of("UNSPECIFIED");
// ...
} in order to be able to obtain an about
|
Reindex does need to be implemented in DocumentOperations so it seems reasonable. And yes, I will implement this. |
sothawo opened DATAES-955 and commented
IndexOperations
should support the reindex API, see linked referenceReference URL: https://www.elastic.co/guide/en/elasticsearch/reference/7.9/docs-reindex.html
The text was updated successfully, but these errors were encountered: