跳到主要内容
版本:v2.5.x

listImportJobs()

This operation lists all existing import jobs regarding the specified collection.

Java
public static String listImportJobs(String url, BaseListImportJobsRequest request)

Request Syntax

Java
bulkImport.listImportJobs(
url,
request
)

PARAMETERS:

  • url (String) -

    The endpoint of the connected Milvus instance.

  • request (BaseListImportRequest) -

    A BaseImportRequest instance.

RETURN TYPE:

String

RETURNS:

A list of import job IDs of the specified collection.

BaseListImportRequest

A BaseListImportRequest instance is implemented in MilvusListImportRequest.

MilvusListImportRequest

Java
MilvusListImportRequest.builder()
.collectionName(String collectionName)
.build()

BUILDER METHODS:

  • collectionName(String collectionName)

    The name of the target collection of this operation.

Example