getImportProgress()
Addedv2.5.x
This operation gets the progress of the specified bulk-import job.
public static String getImportProgress(String url, BaseDescribeImportRequest request)
Request Syntax
bulkImport.getImportProgress(
url,
request
)
PARAMETERS:
-
url (String) -
Zilliz Cloud's Control Plane API endpoint. The endpoint URL should be in the following format:
https://api.cloud.zilliz.com -
request (BaseDescribeImportRequest) -
A BaseImportRequest instance.
RETURN TYPE:
String
RETURNS:
The import progress of the specified import job.
BaseDescribeImportRequest
A BaseDescribeImportRequest instance is implemented in CloudDescribeImportRequest.
CloudDescribeImportRequest
CloudDescribeImportRequest.builder()
.apiKey(String apiKey)
.jobId(String jobId)
.build()
BUILDER METHODS:
-
apiKey(String apiKey)A valid Zilliz Cloud API key with sufficient permissions to manipulate the cluster.
-
jobId(String jobId)The ID of an existing import job.
Example