NoSuchMethodError: org.elasticsearch.action.support.IndicesOptions.ignoreThrottled()Z
1591 단어 Elasticsearch7.x 학습노트
org.elasticsearch.client
elasticsearch-rest-high-level-client
7.2.0
public static void main(String[] agrs) throws IOException {
RestHighLevelClient client = new RestHighLevelClient(
RestClient.builder(
new HttpHost("localhost", 9200, "http")));
GetIndexRequest request = new GetIndexRequest("twitter");
request.local(false);
request.humanReadable(true);
request.includeDefaults(false);
boolean exists = client.indices().exists(request, RequestOptions.DEFAULT);
System.out.println(exists);
}
잘못 보고하다
Exception in thread "main" java.lang.NoSuchMethodError: org.elasticsearch.action.support.IndicesOptions.ignoreThrottled()Z
at org.elasticsearch.client.RequestConverters$Params.withIndicesOptions(RequestConverters.java:942)
at org.elasticsearch.client.IndicesRequestConverters.indicesExist(IndicesRequestConverters.java:467)
at org.elasticsearch.client.RestHighLevelClient.internalPerformRequest(RestHighLevelClient.java:1444)
at org.elasticsearch.client.RestHighLevelClient.performRequest(RestHighLevelClient.java:1433)
at org.elasticsearch.client.IndicesClient.exists(IndicesClient.java:782)
at com.example.restclient.IndexDemo.main(IndexDemo.java:34)
7.0.0 버전 및 7.1.1 버전으로 내려갈 때 프로그램이 정상적으로 실행되고 오류 메시지가 없습니다.초보적인 추측으로는 7.2.0 버전의 버그일 것이다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Embulk를 사용하여 ElasticCloud로 보내기Embulk에서 ElasticCloud에 보낼 수 있을까라고 생각비망록도 겸해 기술을 남깁니다 Embulk 설치 ElasticCloud (14 일 체험판) brew라면 아래 명령 입력 파일 만들기 파일 내용 seed...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.