Merge pull request #197 from maartenjanvangool/patch-1

Update java-rest-high-level.md
This commit is contained in:
Daniel Doubrovkine (dB.) 2021-10-04 12:20:44 -04:00 committed by GitHub
commit b55e3f7e95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ public class RESTClientSample {
HashMap<String, Object> mapping = new HashMap<String, Object>(); HashMap<String, Object> mapping = new HashMap<String, Object>();
mapping.put("properties", ageMapping); mapping.put("properties", ageMapping);
createIndexRequest.mapping(mapping); createIndexRequest.mapping(mapping);
CreateIndexResponse createIndexResponse = client.indices().create(createIndexRequest, RequestOptions.DEFAULT CreateIndexResponse createIndexResponse = client.indices().create(createIndexRequest, RequestOptions.DEFAULT);
//Adding data to the index. //Adding data to the index.
IndexRequest request = new IndexRequest("custom-index"); //Add a document to the custom-index we created. IndexRequest request = new IndexRequest("custom-index"); //Add a document to the custom-index we created.