bulkInsert()
This operation imports the data from a specified data file into Milvus.
bulkInsert(data): Promise<ImportResponse>
Request Syntax
milvusClient.bulkInsert({
db_name?: string,
collection_name: string,
partition_name?: string,
files: string[],
timeout?: number,
options?: KeyValuePair<string, string | number>[]
})
PARAMETERS:
db_name (string) -
The name of the database to which the target collection belongs.
collection_name (string) -
[REQUIRED]
The name of the target collection.
partition_name (string) -
The name of the target partition.
files (string[]) -
A list of paths to the data files from which the import is conducted.
timeout (number) -
The timeout duration for this operation.
Setting this to None indicates that this operation timeouts when any response arrives or any error occurs.
options (KeyValuePair
[] ) -Extra options for the current operation in key-value pairs.
RETURN TYPE:
Promise<ImportResponse>
RETURNS:
This method returns a promise that resolves to an ImportResponse object.
{
tasks: number[],
status: {
code: number,
error_code: string | number,
reason: string
}
}
PARAMETERS:
tasks (number) -
The IDs of all the import tasks created.
status (ResStatus)
code (number) -
A code that indicates the operation result. It remains 0 if this operation succeeds.
error_code (string | number) -
An error code that indicates an occurred error. It remains Success if this operation succeeds.
reason (string) -
The reason that indicates the reason for the reported error. It remains an empty string if this operation succeeds.
Examples
const milvusClient = new milvusClient(MILUVS_ADDRESS);
const importResponse = await milvusClient.bulkInsert({
collection_name: 'my_collection',
files: ['path-to-data-file.json'],
});