forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add async_search get and delete APIs to HLRC (elastic#53828)
This commit adds the "_async_searhc" get and delete APIs to the AsyncSearchClient in the High Level Rest Client. Relates to elastic#49091 Backport of elastic#53828
- Loading branch information
Christoph Büscher
committed
Mar 23, 2020
1 parent
0528e2b
commit 47fc864
Showing
8 changed files
with
341 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
...gh-level/src/main/java/org/elasticsearch/client/asyncsearch/DeleteAsyncSearchRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
|
||
package org.elasticsearch.client.asyncsearch; | ||
|
||
import org.elasticsearch.client.Validatable; | ||
|
||
import java.util.Objects; | ||
|
||
public class DeleteAsyncSearchRequest implements Validatable { | ||
|
||
private final String id; | ||
|
||
public DeleteAsyncSearchRequest(String id) { | ||
this.id = id; | ||
} | ||
|
||
public String getId() { | ||
return this.id; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
DeleteAsyncSearchRequest request = (DeleteAsyncSearchRequest) o; | ||
return Objects.equals(getId(), request.getId()); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(getId()); | ||
} | ||
} |
93 changes: 93 additions & 0 deletions
93
...-high-level/src/main/java/org/elasticsearch/client/asyncsearch/GetAsyncSearchRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
|
||
package org.elasticsearch.client.asyncsearch; | ||
|
||
import org.elasticsearch.client.Validatable; | ||
import org.elasticsearch.client.ValidationException; | ||
import org.elasticsearch.common.unit.TimeValue; | ||
|
||
import java.util.Objects; | ||
import java.util.Optional; | ||
|
||
public class GetAsyncSearchRequest implements Validatable { | ||
|
||
private TimeValue waitForCompletion; | ||
private TimeValue keepAlive; | ||
|
||
public static final long MIN_KEEPALIVE = TimeValue.timeValueMinutes(1).millis(); | ||
|
||
private final String id; | ||
|
||
public GetAsyncSearchRequest(String id) { | ||
this.id = id; | ||
} | ||
|
||
public String getId() { | ||
return this.id; | ||
} | ||
|
||
public TimeValue getWaitForCompletion() { | ||
return waitForCompletion; | ||
} | ||
|
||
public void setWaitForCompletion(TimeValue waitForCompletion) { | ||
this.waitForCompletion = waitForCompletion; | ||
} | ||
|
||
public TimeValue getKeepAlive() { | ||
return keepAlive; | ||
} | ||
|
||
public void setKeepAlive(TimeValue keepAlive) { | ||
this.keepAlive = keepAlive; | ||
} | ||
|
||
@Override | ||
public Optional<ValidationException> validate() { | ||
final ValidationException validationException = new ValidationException(); | ||
if (keepAlive != null && keepAlive.getMillis() < MIN_KEEPALIVE) { | ||
validationException.addValidationError("keep_alive must be greater than 1 minute, got: " + keepAlive.toString()); | ||
} | ||
if (validationException.validationErrors().isEmpty()) { | ||
return Optional.empty(); | ||
} | ||
return Optional.of(validationException); | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
GetAsyncSearchRequest request = (GetAsyncSearchRequest) o; | ||
return Objects.equals(getId(), request.getId()) | ||
&& Objects.equals(getKeepAlive(), request.getKeepAlive()) | ||
&& Objects.equals(getWaitForCompletion(), request.getWaitForCompletion()); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(getId(), getKeepAlive(), getWaitForCompletion()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.