-
Notifications
You must be signed in to change notification settings - Fork 24.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ML][Inference] adding .ml-inference* index and storage (#47267)
* [ML][Inference] adding .ml-inference* index and storage * Addressing PR comments * Allowing null definition, adding validation tests for model config * fixing line length
- Loading branch information
Showing
31 changed files
with
1,643 additions
and
65 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
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
34 changes: 34 additions & 0 deletions
34
...t-high-level/src/main/java/org/elasticsearch/client/ml/inference/NamedXContentObject.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,34 @@ | ||
/* | ||
* 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.inference; | ||
|
||
import org.elasticsearch.common.xcontent.ToXContentObject; | ||
|
||
/** | ||
* Simple interface for XContent Objects that are named. | ||
* | ||
* This affords more general handling when serializing and de-serializing this type of XContent when it is used in a NamedObjects | ||
* parser. | ||
*/ | ||
public interface NamedXContentObject extends ToXContentObject { | ||
/** | ||
* @return The name of the XContentObject that is to be serialized | ||
*/ | ||
String getName(); | ||
} |
57 changes: 57 additions & 0 deletions
57
...-level/src/main/java/org/elasticsearch/client/ml/inference/NamedXContentObjectHelper.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,57 @@ | ||
/* | ||
* 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.inference; | ||
|
||
import org.elasticsearch.common.xcontent.ToXContent; | ||
import org.elasticsearch.common.xcontent.XContentBuilder; | ||
|
||
import java.io.IOException; | ||
import java.util.List; | ||
|
||
public final class NamedXContentObjectHelper { | ||
|
||
private NamedXContentObjectHelper() {} | ||
|
||
public static XContentBuilder writeNamedObjects(XContentBuilder builder, | ||
ToXContent.Params params, | ||
boolean useExplicitOrder, | ||
String namedObjectsName, | ||
List<? extends NamedXContentObject> namedObjects) throws IOException { | ||
if (useExplicitOrder) { | ||
builder.startArray(namedObjectsName); | ||
} else { | ||
builder.startObject(namedObjectsName); | ||
} | ||
for (NamedXContentObject object : namedObjects) { | ||
if (useExplicitOrder) { | ||
builder.startObject(); | ||
} | ||
builder.field(object.getName(), object, params); | ||
if (useExplicitOrder) { | ||
builder.endObject(); | ||
} | ||
} | ||
if (useExplicitOrder) { | ||
builder.endArray(); | ||
} else { | ||
builder.endObject(); | ||
} | ||
return builder; | ||
} | ||
} |
Oops, something went wrong.