![JAR search and dependency download from the Maven repository](/logo.png)
io.milvus.param.dml.InsertParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector search engine.
update grpc to 1.42.1
update protobuf to 3.19.1
restore the calcDistance interface that is removed in 2.1.0-beta4
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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 io.milvus.param.dml;
import io.milvus.exception.ParamException;
import io.milvus.param.ParamUtils;
import lombok.Getter;
import lombok.NonNull;
import java.util.List;
/**
* Parameters for insert
interface.
*/
@Getter
public class InsertParam {
private final List fields;
private final String collectionName;
private final String partitionName;
private final int rowCount;
private InsertParam(@NonNull Builder builder) {
this.collectionName = builder.collectionName;
this.partitionName = builder.partitionName;
this.fields = builder.fields;
this.rowCount = builder.rowCount;
}
public static Builder newBuilder() {
return new Builder();
}
/**
* Builder for {@link InsertParam} class.
*/
public static class Builder {
private String collectionName;
private String partitionName = "_default";
private List fields;
private int rowCount;
private Builder() {
}
/**
* Sets the collection name. Collection name cannot be empty or null.
*
* @param collectionName collection name
* @return Builder
*/
public Builder withCollectionName(@NonNull String collectionName) {
this.collectionName = collectionName;
return this;
}
/**
* Set partition name (Optional).
*
* @param partitionName partition name
* @return Builder
*/
public Builder withPartitionName(@NonNull String partitionName) {
this.partitionName = partitionName;
return this;
}
/**
* Sets the data to insert. The field list cannot be empty.
* @see InsertParam.Field
*
* @param fields insert data
* @return Builder
*/
public Builder withFields(@NonNull List fields) {
this.fields = fields;
return this;
}
/**
* Verifies parameters and creates a new {@link InsertParam} instance.
*
* @return {@link InsertParam}
*/
public InsertParam build() throws ParamException {
ParamUtils.CheckNullEmptyString(collectionName, "Collection name");
if (fields.isEmpty()) {
throw new ParamException("Fields cannot be empty");
}
for (InsertParam.Field field : fields) {
if (field == null) {
throw new ParamException("Field cannot be null." +
" If the field is auto-id, just ignore it from withFields()");
}
ParamUtils.CheckNullEmptyString(field.getName(), "Field name");
if (field.getValues() == null || field.getValues().isEmpty()) {
throw new ParamException("Field value cannot be empty." +
" If the field is auto-id, just ignore it from withFields()");
}
}
// check row count
int count = fields.get(0).getValues().size();
for (InsertParam.Field field : fields) {
if (field.getValues().size() != count) {
throw new ParamException("Row count of fields must be equal");
}
}
this.rowCount = count;
if (count == 0) {
throw new ParamException("Zero row count is not allowed");
}
// this method doesn't check data type, the insert() api will do this work
return new InsertParam(this);
}
}
/**
* Constructs a String
by {@link InsertParam} instance.
*
* @return String
*/
@Override
public String toString() {
return "InsertParam{" +
"collectionName='" + collectionName + '\'' +
", partitionName='" + partitionName + '\'' +
", row_count=" + rowCount +
", fields=" + fields +
'}';
}
/**
* Internal class for insert data.
* If dataType is Bool, values is List of Boolean;
* If dataType is Int64, values is List of Long;
* If dataType is Float, values is List of Float;
* If dataType is Double, values is List of Double;
* If dataType is Varchar, values is List of String;
* If dataType is FloatVector, values is List of List Float;
* If dataType is BinaryVector, values is List of ByteBuffer;
*
* Note:
* If dataType is Int8/Int16/Int32, values is List of Integer or Short
* (why? because the rpc proto only support int32/int64 type, actually Int8/Int16/Int32 use int32 type to encode/decode)
*
*/
public static class Field {
private final String name;
private final List> values;
public Field(String name, List> values) {
this.name = name;
this.values = values;
}
/**
* Return name of the field.
*
* @return String
*/
public String getName() {
return name;
}
/**
* Return data of the field, in column-base.
*
* @return List
*/
public List> getValues() {
return values;
}
/**
* Constructs a String
by {@link InsertParam.Field} instance.
*
* @return String
*/
@Override
public String toString() {
return "Field{" +
"fieldName='" + name + '\'' +
", row_count=" + values.size() +
'}';
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy