mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
issue: #30000 related to: [milvus-proto #202](https://github.com/milvus-io/milvus-proto/pull/202) 1. replace collSchema.AutoID with primaryField.AutoID 2. show `enableDynamic` & `enableDynamicField` at the same time 3. avoid data race about the access to metacache Signed-off-by: PowderLi <min.li@zilliz.com>
76 lines
2.8 KiB
Go
76 lines
2.8 KiB
Go
package httpserver
|
|
|
|
type CreateCollectionReq struct {
|
|
DbName string `json:"dbName"`
|
|
CollectionName string `json:"collectionName" validate:"required"`
|
|
Dimension int32 `json:"dimension" validate:"required"`
|
|
Description string `json:"description"`
|
|
MetricType string `json:"metricType"`
|
|
PrimaryField string `json:"primaryField"`
|
|
VectorField string `json:"vectorField"`
|
|
EnableDynamicField bool `json:"enableDynamicField"`
|
|
}
|
|
|
|
type DropCollectionReq struct {
|
|
DbName string `json:"dbName"`
|
|
CollectionName string `json:"collectionName" validate:"required"`
|
|
}
|
|
|
|
type QueryReq struct {
|
|
DbName string `json:"dbName"`
|
|
CollectionName string `json:"collectionName" validate:"required"`
|
|
OutputFields []string `json:"outputFields"`
|
|
Filter string `json:"filter" validate:"required"`
|
|
Limit int32 `json:"limit"`
|
|
Offset int32 `json:"offset"`
|
|
}
|
|
|
|
type GetReq struct {
|
|
DbName string `json:"dbName"`
|
|
CollectionName string `json:"collectionName" validate:"required"`
|
|
OutputFields []string `json:"outputFields"`
|
|
ID interface{} `json:"id" validate:"required"`
|
|
}
|
|
|
|
type DeleteReq struct {
|
|
DbName string `json:"dbName"`
|
|
CollectionName string `json:"collectionName" validate:"required"`
|
|
ID interface{} `json:"id"`
|
|
Filter string `json:"filter"`
|
|
}
|
|
|
|
type InsertReq struct {
|
|
DbName string `json:"dbName"`
|
|
CollectionName string `json:"collectionName" validate:"required"`
|
|
Data []map[string]interface{} `json:"data" validate:"required"`
|
|
}
|
|
|
|
type SingleInsertReq struct {
|
|
DbName string `json:"dbName"`
|
|
CollectionName string `json:"collectionName" validate:"required"`
|
|
Data map[string]interface{} `json:"data" validate:"required"`
|
|
}
|
|
|
|
type UpsertReq struct {
|
|
DbName string `json:"dbName"`
|
|
CollectionName string `json:"collectionName" validate:"required"`
|
|
Data []map[string]interface{} `json:"data" validate:"required"`
|
|
}
|
|
|
|
type SingleUpsertReq struct {
|
|
DbName string `json:"dbName"`
|
|
CollectionName string `json:"collectionName" validate:"required"`
|
|
Data map[string]interface{} `json:"data" validate:"required"`
|
|
}
|
|
|
|
type SearchReq struct {
|
|
DbName string `json:"dbName"`
|
|
CollectionName string `json:"collectionName" validate:"required"`
|
|
Filter string `json:"filter"`
|
|
Limit int32 `json:"limit"`
|
|
Offset int32 `json:"offset"`
|
|
OutputFields []string `json:"outputFields"`
|
|
Vector []float32 `json:"vector"`
|
|
Params map[string]float64 `json:"params"`
|
|
}
|