Package io.milvus.param.collection
Class CreateCollectionParam.Builder
- java.lang.Object
-
- io.milvus.param.collection.CreateCollectionParam.Builder
-
- Enclosing class:
- CreateCollectionParam
public static final class CreateCollectionParam.Builder extends java.lang.ObjectBuilder forCreateCollectionParamclass.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description CreateCollectionParam.BuilderaddFieldType(@NonNull FieldType fieldType)Deprecated.UsewithSchema(CollectionSchemaParam)repaceCreateCollectionParambuild()Verifies parameters and creates a newCreateCollectionParaminstance.CreateCollectionParam.BuilderwithCollectionName(@NonNull java.lang.String collectionName)Sets the collection name.CreateCollectionParam.BuilderwithConsistencyLevel(@NonNull ConsistencyLevelEnum consistencyLevel)Sets the consistency level.CreateCollectionParam.BuilderwithDatabaseName(java.lang.String databaseName)Sets the database name.CreateCollectionParam.BuilderwithDescription(@NonNull java.lang.String description)Sets the collection description.CreateCollectionParam.BuilderwithEnableDynamicField(boolean enableDynamicField)Deprecated.UsewithSchema(CollectionSchemaParam)repaceCreateCollectionParam.BuilderwithFieldTypes(@NonNull java.util.List<FieldType> fieldTypes)Deprecated.UsewithSchema(CollectionSchemaParam)repaceCreateCollectionParam.BuilderwithPartitionsNum(int partitionsNum)Sets the partitions number if there is partition key field.CreateCollectionParam.BuilderwithSchema(@NonNull CollectionSchemaParam schema)Sets the schema of collection.CreateCollectionParam.BuilderwithShardsNum(int shardsNum)Sets the shards number.
-
-
-
Method Detail
-
withCollectionName
public CreateCollectionParam.Builder withCollectionName(@NonNull @NonNull java.lang.String collectionName)
Sets the collection name. Collection name cannot be empty or null.- Parameters:
collectionName- collection name- Returns:
Builder
-
withDatabaseName
public CreateCollectionParam.Builder withDatabaseName(java.lang.String databaseName)
Sets the database name. database name can be nil.- Parameters:
databaseName- database name- Returns:
Builder
-
withShardsNum
public CreateCollectionParam.Builder withShardsNum(int shardsNum)
Sets the shards number. The number must be greater or equal to zero. The default value is 0, which means letting the server decide the value. The server set this value to 1 if user didn't specify it.- Parameters:
shardsNum- shards number to distribute insert data into multiple data nodes and query nodes.- Returns:
Builder
-
withEnableDynamicField
@Deprecated public CreateCollectionParam.Builder withEnableDynamicField(boolean enableDynamicField)
Deprecated.UsewithSchema(CollectionSchemaParam)repaceSets the collection if enableDynamicField.- Parameters:
enableDynamicField- enableDynamicField of the collection- Returns:
Builder
-
withDescription
public CreateCollectionParam.Builder withDescription(@NonNull @NonNull java.lang.String description)
Sets the collection description. The description can be empty. The default is "".- Parameters:
description- description of the collection- Returns:
Builder
-
withFieldTypes
@Deprecated public CreateCollectionParam.Builder withFieldTypes(@NonNull @NonNull java.util.List<FieldType> fieldTypes)
Deprecated.UsewithSchema(CollectionSchemaParam)repaceSets the schema of the collection. The schema cannot be empty or null.
-
addFieldType
@Deprecated public CreateCollectionParam.Builder addFieldType(@NonNull @NonNull FieldType fieldType)
Deprecated.UsewithSchema(CollectionSchemaParam)repaceAdds a field schema.
-
withConsistencyLevel
public CreateCollectionParam.Builder withConsistencyLevel(@NonNull @NonNull ConsistencyLevelEnum consistencyLevel)
Sets the consistency level. The default value isConsistencyLevelEnum.BOUNDED.- Parameters:
consistencyLevel- consistency level- Returns:
Builder- See Also:
ConsistencyLevelEnum
-
withPartitionsNum
public CreateCollectionParam.Builder withPartitionsNum(int partitionsNum)
Sets the partitions number if there is partition key field. The number must be greater than zero. The default value is 64(defined in server side). The upper limit is 4096(defined in server side). Not allow to set this value if none of field is partition key. Only one partition key field is allowed in a collection.- Parameters:
partitionsNum- partitions number- Returns:
Builder
-
withSchema
public CreateCollectionParam.Builder withSchema(@NonNull @NonNull CollectionSchemaParam schema)
Sets the schema of collection.- Parameters:
schema- the schema of collection- Returns:
Builder
-
build
public CreateCollectionParam build() throws ParamException
Verifies parameters and creates a newCreateCollectionParaminstance.- Returns:
CreateCollectionParam- Throws:
ParamException
-
-