-
Notifications
You must be signed in to change notification settings - Fork 25.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HLRC: Add ML get categories API #33465
Changes from 3 commits
2986afc
2eb8440
2911be3
02dba5b
6162894
95f335b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
/* | ||
* 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.ml; | ||
|
||
import org.elasticsearch.action.ActionRequest; | ||
import org.elasticsearch.action.ActionRequestValidationException; | ||
import org.elasticsearch.client.ml.job.config.Job; | ||
import org.elasticsearch.client.ml.job.util.PageParams; | ||
import org.elasticsearch.common.ParseField; | ||
import org.elasticsearch.common.xcontent.ObjectParser; | ||
import org.elasticsearch.common.xcontent.ToXContentObject; | ||
import org.elasticsearch.common.xcontent.XContentBuilder; | ||
|
||
import java.io.IOException; | ||
import java.util.Objects; | ||
|
||
/** | ||
* A request to retrieve categories of a given job | ||
*/ | ||
public class GetCategoriesRequest extends ActionRequest implements ToXContentObject { | ||
|
||
|
||
public static final ParseField CATEGORY_ID = new ParseField("category_id"); | ||
|
||
public static final ObjectParser<GetCategoriesRequest, Void> PARSER = | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be |
||
new ObjectParser<>("get_categories_request", GetCategoriesRequest::new); | ||
|
||
|
||
static { | ||
PARSER.declareString((GetCategoriesRequest, jobId) -> GetCategoriesRequest.jobId = jobId, Job.ID); | ||
PARSER.declareLong(GetCategoriesRequest::setCategoryId, CATEGORY_ID); | ||
PARSER.declareObject(GetCategoriesRequest::setPageParams, PageParams.PARSER, PageParams.PAGE); | ||
} | ||
|
||
private String jobId; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be |
||
private Long categoryId; | ||
private PageParams pageParams; | ||
|
||
private GetCategoriesRequest() {} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should not have this ctr, and just use the |
||
|
||
|
||
/** | ||
* Constructs a request to retrieve category information from a given job | ||
* @param jobId id of the job from which to retrieve results | ||
*/ | ||
public GetCategoriesRequest(String jobId) { | ||
this.jobId = Objects.requireNonNull(jobId); | ||
} | ||
|
||
public String getJobId() { | ||
return jobId; | ||
} | ||
|
||
public PageParams getPageParams() { | ||
return pageParams; | ||
} | ||
|
||
public Long getCategoryId() { | ||
return categoryId; | ||
} | ||
|
||
/** | ||
* Sets the category id | ||
* @param categoryId the category id | ||
*/ | ||
public void setCategoryId(Long categoryId) { | ||
this.categoryId = categoryId; | ||
} | ||
|
||
/** | ||
* Sets the paging parameters | ||
* @param pageParams the paging parameters | ||
*/ | ||
public void setPageParams(PageParams pageParams) { | ||
this.pageParams = pageParams; | ||
} | ||
|
||
@Override | ||
public ActionRequestValidationException validate() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException { | ||
builder.startObject(); | ||
builder.field(Job.ID.getPreferredName(), jobId); | ||
if (categoryId != null) { | ||
builder.field(CATEGORY_ID.getPreferredName(), categoryId); | ||
} | ||
if (pageParams != null) { | ||
builder.field(PageParams.PAGE.getPreferredName(), pageParams); | ||
} | ||
builder.endObject(); | ||
return builder; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object obj) { | ||
if (obj == null) { | ||
return false; | ||
} | ||
if (getClass() != obj.getClass()) { | ||
return false; | ||
} | ||
GetCategoriesRequest request = (GetCategoriesRequest) obj; | ||
return Objects.equals(jobId, request.jobId) | ||
&& Objects.equals(categoryId, request.categoryId) | ||
&& Objects.equals(pageParams, request.pageParams); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(jobId, categoryId, pageParams); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* 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.ml; | ||
|
||
import org.elasticsearch.client.ml.job.results.CategoryDefinition; | ||
import org.elasticsearch.common.ParseField; | ||
import org.elasticsearch.common.xcontent.ConstructingObjectParser; | ||
import org.elasticsearch.common.xcontent.XContentParser; | ||
|
||
import java.io.IOException; | ||
import java.util.List; | ||
import java.util.Objects; | ||
|
||
/** | ||
* A response containing the requested categories | ||
*/ | ||
public class GetCategoriesResponse extends AbstractResultResponse<CategoryDefinition> { | ||
|
||
public static final ParseField CATEGORIES = new ParseField("categories"); | ||
|
||
@SuppressWarnings("unchecked") | ||
public static final ConstructingObjectParser<GetCategoriesResponse, Void> PARSER = | ||
new ConstructingObjectParser<>("get_categories_response", true, | ||
a -> new GetCategoriesResponse((List<CategoryDefinition>) a[0], (long) a[1])); | ||
|
||
static { | ||
PARSER.declareObjectArray(ConstructingObjectParser.constructorArg(), CategoryDefinition.PARSER, CATEGORIES); | ||
PARSER.declareLong(ConstructingObjectParser.constructorArg(), COUNT); | ||
} | ||
|
||
public static GetCategoriesResponse fromXContent(XContentParser parser) throws IOException { | ||
return PARSER.parse(parser, null); | ||
} | ||
|
||
GetCategoriesResponse(List<CategoryDefinition> categories, long count) { | ||
super(CATEGORIES, categories, count); | ||
} | ||
|
||
/** | ||
* The retrieved categories | ||
* @return the retrieved categories | ||
*/ | ||
public List<CategoryDefinition> categories() { | ||
return results; | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(count, results); | ||
} | ||
|
||
@Override | ||
public boolean equals(Object obj) { | ||
if (obj == null) { | ||
return false; | ||
} | ||
if (getClass() != obj.getClass()) { | ||
return false; | ||
} | ||
GetCategoriesResponse other = (GetCategoriesResponse) obj; | ||
return count == other.count && Objects.equals(results, other.results); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know some methods add the
@throws
and others don't. I think we should still add the@throws
entry even if it is a checked exception.I have not been consistent about this myself either :(.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dimitris-athanasiou may have a different opinion around this ^, So I will defer to him.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right @benwtrent, we've been dropping the
@throws
clause in some of the methods in the client. We'll need to revisit and add them. I'll make a note to do that.