Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
/*
* 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 org.apache.camel.component.milvus.rag;

import io.milvus.grpc.DataType;
import io.milvus.param.collection.CreateCollectionParam;
import io.milvus.param.collection.FieldType;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.component.milvus.MilvusAction;
import org.apache.camel.component.milvus.MilvusHeaders;

public class RAGCreateCollection implements Processor {

private String collectionName = "rag_collection";
private String collectionDescription = "RAG collection";
private String idFieldName = "id";
private String dimension = "768";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why are int/long types Strings?

private String textFieldName = "content";
private String textFieldDataType = "VarChar";
private String vectorFieldName = "embedding";
private String textFieldMaxLength = "2048";
private String additionalTextFields;

@Override
public void process(Exchange exchange) throws Exception {
int vectorDim = Integer.parseInt(dimension);
int maxLength = Integer.parseInt(textFieldMaxLength);
DataType textDataType = DataType.valueOf(textFieldDataType);

FieldType idField = FieldType.newBuilder()
.withName(idFieldName)
.withDataType(DataType.Int64)
.withPrimaryKey(true)
.withAutoID(true)
.build();

FieldType.Builder textFieldBuilder = FieldType.newBuilder()
.withName(textFieldName)
.withDataType(textDataType);
if (textDataType == DataType.VarChar) {
textFieldBuilder.withMaxLength(maxLength);
}
FieldType textField = textFieldBuilder.build();

FieldType vectorField = FieldType.newBuilder()
.withName(vectorFieldName)
.withDataType(DataType.FloatVector)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should it be configurable?

.withDimension(vectorDim)
.build();

CreateCollectionParam.Builder builder = CreateCollectionParam.newBuilder()
.withCollectionName(collectionName)
.withDescription(collectionDescription)
.addFieldType(idField)
.addFieldType(textField);

if (additionalTextFields != null && !additionalTextFields.isBlank()) {
for (String fieldName : additionalTextFields.split(",")) {
String trimmed = fieldName.trim();
if (!trimmed.isEmpty()) {
FieldType extraField = FieldType.newBuilder()
.withName(trimmed)
.withDataType(DataType.VarChar)
.withMaxLength(maxLength)
.build();
builder.addFieldType(extraField);
}
}
}

builder.addFieldType(vectorField);

exchange.getIn().setBody(builder.build());
exchange.getIn().setHeader(MilvusHeaders.ACTION, MilvusAction.CREATE_COLLECTION);
}

public String getCollectionName() {
return collectionName;
}

public void setCollectionName(String collectionName) {
this.collectionName = collectionName;
}

public String getCollectionDescription() {
return collectionDescription;
}

public void setCollectionDescription(String collectionDescription) {
this.collectionDescription = collectionDescription;
}

public String getIdFieldName() {
return idFieldName;
}

public void setIdFieldName(String idFieldName) {
this.idFieldName = idFieldName;
}

public String getDimension() {
return dimension;
}

public void setDimension(String dimension) {
this.dimension = dimension;
}

public String getTextFieldName() {
return textFieldName;
}

public void setTextFieldName(String textFieldName) {
this.textFieldName = textFieldName;
}

public String getTextFieldDataType() {
return textFieldDataType;
}

public void setTextFieldDataType(String textFieldDataType) {
this.textFieldDataType = textFieldDataType;
}

public String getVectorFieldName() {
return vectorFieldName;
}

public void setVectorFieldName(String vectorFieldName) {
this.vectorFieldName = vectorFieldName;
}

public String getTextFieldMaxLength() {
return textFieldMaxLength;
}

public void setTextFieldMaxLength(String textFieldMaxLength) {
this.textFieldMaxLength = textFieldMaxLength;
}

public String getAdditionalTextFields() {
return additionalTextFields;
}

public void setAdditionalTextFields(String additionalTextFields) {
this.additionalTextFields = additionalTextFields;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/*
* 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 org.apache.camel.component.milvus.rag;

import io.milvus.param.IndexType;
import io.milvus.param.MetricType;
import io.milvus.param.index.CreateIndexParam;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.component.milvus.MilvusAction;
import org.apache.camel.component.milvus.MilvusHeaders;

public class RAGCreateIndex implements Processor {

private String collectionName = "rag_collection";
private String vectorFieldName = "embedding";
private String indexType = "IVF_FLAT";
private String metricType = "COSINE";
private String extraParam = "{\"nlist\": 128}";

@Override
public void process(Exchange exchange) throws Exception {
IndexType idxType = IndexType.valueOf(indexType);
MetricType metric = MetricType.valueOf(metricType);

CreateIndexParam param = CreateIndexParam.newBuilder()
.withCollectionName(collectionName)
.withFieldName(vectorFieldName)
.withIndexType(idxType)
.withMetricType(metric)
.withExtraParam(extraParam)
.withSyncMode(Boolean.TRUE)
.build();

exchange.getIn().setBody(param);
exchange.getIn().setHeader(MilvusHeaders.ACTION, MilvusAction.CREATE_INDEX);
}

public String getCollectionName() {
return collectionName;
}

public void setCollectionName(String collectionName) {
this.collectionName = collectionName;
}

public String getVectorFieldName() {
return vectorFieldName;
}

public void setVectorFieldName(String vectorFieldName) {
this.vectorFieldName = vectorFieldName;
}

public String getIndexType() {
return indexType;
}

public void setIndexType(String indexType) {
this.indexType = indexType;
}

public String getMetricType() {
return metricType;
}

public void setMetricType(String metricType) {
this.metricType = metricType;
}

public String getExtraParam() {
return extraParam;
}

public void setExtraParam(String extraParam) {
this.extraParam = extraParam;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/*
* 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 org.apache.camel.component.milvus.rag;

import io.milvus.param.dml.DeleteParam;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.component.milvus.MilvusAction;
import org.apache.camel.component.milvus.MilvusHeaders;

public class RAGDelete implements Processor {

private String collectionName = "rag_collection";
private String filter;

@Override
public void process(Exchange exchange) throws Exception {
DeleteParam.Builder builder = DeleteParam.newBuilder()
.withCollectionName(collectionName);

if (filter != null && !filter.isEmpty()) {
builder.withExpr(filter);
}

exchange.getIn().setBody(builder.build());
exchange.getIn().setHeader(MilvusHeaders.ACTION, MilvusAction.DELETE);
}

public String getCollectionName() {
return collectionName;
}

public void setCollectionName(String collectionName) {
this.collectionName = collectionName;
}

public String getFilter() {
return filter;
}

public void setFilter(String filter) {
this.filter = filter;
}
}
Loading
Loading