![JAR search and dependency download from the Maven repository](/logo.png)
com.github.euler.elasticsearch.req.UpsertRequestFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of euler-elasticsearch Show documentation
Show all versions of euler-elasticsearch Show documentation
Euler - File Processing API - Elasticsearch module.
package com.github.euler.elasticsearch.req;
import java.util.Map;
import org.elasticsearch.action.update.UpdateRequest;
public class UpsertRequestFactory extends UpdateRequestFactory {
@Override
public UpdateRequest create(String index, String id, Map source) {
UpdateRequest req = super.create(index, id, source);
req.docAsUpsert(true);
return req;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy