跳到主要内容
版本:v3.0.x

listImportJobs()

This operation lists import jobs submitted through the HTTP import job API. Use it to review job IDs, collection names, progress, and state.

JavaScript
await milvusClient.listImportJobs(params: HttpBaseReq)

Request Syntax

JavaScript
await milvusClient.listImportJobs({
dbName?: string,
})

PARAMETERS:

  • dbName (string) -

    Specifies the database name.

RETURNS:

Promise<HttpImportListResponse>

Example

JavaScript
const jobs = await milvusClient.listImportJobs({
dbName: 'default',
});