Я следую по этой ссылке для пробной версии Elastic Search.
String host = "????";
String index = "movies";
String type = "movie";
String id = "6";
String json = "{" + "\"title\":\"Walk the Line\"," + "\"director\":\"James Mangold\"," + "\"year\":\"2005\""
+ "}";
RestClient client = RestClient.builder(new HttpHost(host, 443, "https")).build();
HttpEntity entity = new NStringEntity(json, ContentType.APPLICATION_JSON);
Response response = client.performRequest("PUT", "/" + index + "/" + type + "/" + id,
Collections.<String, String>emptyMap(), entity);
System.out.println(response.toString());
Мне нужно проверить это на моей локальной машине. Каким должен быть адрес хоста / Как это выяснить?
Если я упомяну хост как http://localhost:9200
,
Я вижу ошибку -
java.net.UnknownHostException: http://localhost:9200: nodename nor servname provided, or not known