README.md 54.7 KB
Newer Older
1 2 3 4 5 6
# Milvus RESTful API

<!-- TOC -->

- [Overview](#overview)
- [API Reference](#api-reference)
valerianian's avatar
valerianian 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
  - [`/state`](#state)
  - [`/devices`](#devices)
  - [`/config/advanced` (GET)](#configadvanced-get)
  - [`/config/advanced` (PUT)](#configadvanced-put)
  - [`/config/advanced` (OPTIONS)](#configadvanced-options)
  - [`/config/gpu_resources` (GET)](#configgpu_resources-get)
  - [`/config/gpu_resources` (PUT)](#configgpu_resources-put)
  - [`/config/gpu_resources` (OPTIONS)](#configgpu_resources-options)
  - [`/collections` (GET)](#collections-get)
  - [`/collections` (POST)](#collections-post)
  - [`/collections` (OPTIONS)](#collections-options)
  - [`/collections/{collection_name}` (GET)](#collectionscollection_name-get)
  - [`/collections/{collection_name}` (DELETE)](#collectionscollection_name-delete)
  - [`/collections/{collection_name}` (OPTIONS)](#collectionscollection_name-options)
  - [`/collections/{collection_name}/indexes` (GET)](#collectionscollection_nameindexes-get)
  - [`/collections/{collection_name}/indexes` (POST)](#collectionscollection_nameindexes-post)
  - [`/collections/{collection_name}/indexes` (DELETE)](#collectionscollection_nameindexes-delete)
  - [`/collections/{collection_name}/indexes` (OPTIONS)](#collectionscollection_nameindexes-options)
  - [`/collections/{collection_name}/partitions` (GET)](#collectionscollection_namepartitions-get)
  - [`/collections/{collection_name}/partitions` (POST)](#collectionscollection_namepartitions-post)
  - [`/collections/{collection_name}/partitions` (OPTIONS)](#collectionscollection_namepartitions-options)
  - [`/collections/{collection_name}/partitions` (DELETE)](#collectionscollection_namepartitions-delete)
  - [`/collections/{collection_name}/segments` (GET)](#collectionscollection_namesegments-get)
  - [`/collections/{collection_name}/segments/{segment_name}/vectors` (GET)](#collectionscollection_namesegmentssegment_namevectors-get)
  - [`/collections/{collection_name}/segments/{segment_name}/ids` (GET)](#collectionscollection_namesegmentssegment_nameids-get)
  - [`/collections/{collection_name}/vectors` (PUT)](#collectionscollection_namevectors-put)
  - [`/collections/{collection_name}/vectors` (POST)](#collectionscollection_namevectors-post)
  - [`/collections/{collection_name}/vectors` (GET)](#collectionscollection_namevectorsidvector_id-get)
  - [`/collections/{collection_name}/vectors` (OPTIONS)](#collectionscollection_namevectors-options)
  - [`/system/{msg}` (GET)](#systemmsg-get)
  - [`system/{op}` (PUT)](#systemop-put)
- [Error Codes](#error-codes)
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

<!-- /TOC -->

## Overview

With the RESTful API, you can use Milvus by sending HTTP requests to the Milvus server web port. The RESTful API is available as long as you have a running Milvus server. You can set the web port in the Milvus configuration file. Refer to [Milvus Configuration](https://www.milvus.io/docs/reference/milvus_config.md) for more information.

## API Reference

### `/state`

Checks whether the web server is running.

#### Request

valerianian's avatar
valerianian 已提交
54 55 56 57 58 59
| Request Component | Value                      |
| ----------------- | -------------------------- |
| Name              | `/state`                   |
| Header            | `accept: application/json` |
| Body              | N/A                        |
| Method            | GET                        |
60 61 62

#### Response

valerianian's avatar
valerianian 已提交
63 64 65
| Status code | Description                |
| ----------- | -------------------------- |
| 200         | The request is successful. |
66 67 68 69 70 71

#### Example

##### Request

```shell
Y
Yhz 已提交
72
$ curl -X GET "http://127.0.0.1:19121/state" -H "accept: application/json"
73 74 75 76 77
```

##### Response

```json
valerianian's avatar
valerianian 已提交
78
{ "message": "Success", "code": 0 }
79 80 81 82 83 84 85 86
```

### `/devices`

Gets CPU/GPU information from the host.

#### Request

valerianian's avatar
valerianian 已提交
87 88 89 90 91 92
| Request Component | Value                      |
| ----------------- | -------------------------- |
| Name              | `/devices`                 |
| Header            | `accept: application/json` |
| Body              | N/A                        |
| Method            | GET                        |
93 94 95

#### Response

valerianian's avatar
valerianian 已提交
96 97 98 99
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
100 101 102 103 104 105

#### Example

##### Request

```shell
Y
Yhz 已提交
106
$ curl -X GET "http://127.0.0.1:19121/devices" -H "accept: application/json"
107 108 109 110 111
```

##### Response

```json
valerianian's avatar
valerianian 已提交
112
{ "cpu": { "memory": 31 }, "gpus": { "GPU0": { "memory": 5 } } }
113 114 115 116 117 118 119 120
```

### `/config/advanced` (GET)

Gets the values of parameters in `cache_config` and `engine_config` of the Milvus configuration file.

#### Request

valerianian's avatar
valerianian 已提交
121 122 123 124 125 126
| Request Component | Value                      |
| ----------------- | -------------------------- |
| Name              | `/config/advanced`         |
| Header            | `accept: application/json` |
| Body              | N/A                        |
| Method            | GET                        |
127 128 129

#### Response

valerianian's avatar
valerianian 已提交
130 131 132 133
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
134 135 136 137 138 139

#### Example

##### Request

```shell
Y
Yhz 已提交
140
$ curl -X GET "http://127.0.0.1:19121/config/advanced" -H "accept: application/json"
141 142 143 144 145
```

##### Response

```json
valerianian's avatar
valerianian 已提交
146 147 148 149 150 151
{
  "cpu_cache_capacity": 4,
  "cache_insert_data": false,
  "use_blas_threshold": 1100,
  "gpu_search_threshold": 1000
}
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
```

### `/config/advanced` (PUT)

Updates the values of parameters in `cache_config` and `engine_config` of the Milvus configuration file.

#### Request

<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/config/advanced</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
  "cpu_cache_capacity": integer($int64),
  "cache_insert_data": boolean,
  "use_blas_threshold": integer($int64),
  "gpu_search_threshold": integer($int64)
} 
</code></pre> </td></tr>
<tr><td>Method</td><td>PUT</td></tr>

</table>

> Note: `gpu_search_config` is available only in GPU-supported Milvus.

##### Body Parameters

valerianian's avatar
valerianian 已提交
180 181 182 183 184 185
| Parameter              | Description                                                                            | Required? |
| ---------------------- | -------------------------------------------------------------------------------------- | --------- |
| `cpu_cache_capacity`   | Value of `cpu_cache_capacity` in the Milvus configuration file. The default is 4.      | No        |
| `cache_insert_data`    | Value of `cache_insert_data` in the Milvus configuration file. The default is false.   | No        |
| `use_blas_threshold`   | Value of `use_blas_threshold` in the Milvus configuration file. The default is 1100.   | No        |
| `gpu_search_threshold` | Value of `gpu_search_threshold` in the Milvus configuration file. The default is 1000. | No        |
186 187 188

#### Response

valerianian's avatar
valerianian 已提交
189 190 191 192
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
193 194 195 196 197 198

#### Example

##### Request

```shell
Y
Yhz 已提交
199
$ curl -X PUT "http://127.0.0.1:19121/config/advanced" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"cpu_cache_capacity\":4,\"cache_insert_data\":false,\"use_blas_threshold\":1100,\"gpu_search_threshold\":1000}"
200 201 202 203 204
```

##### Response

```json
valerianian's avatar
valerianian 已提交
205
{ "message": "OK", "code": 0 }
206 207 208 209 210 211 212 213
```

### `/config/advanced` (OPTIONS)

Use this API for Cross-Origin Resource Sharing (CORS).

#### Request

valerianian's avatar
valerianian 已提交
214 215 216 217 218 219
| Request Component | Value              |
| ----------------- | ------------------ |
| Name              | `/config/advanced` |
| Header            | N/A                |
| Body              | N/A                |
| Method            | OPTIONS            |
220 221 222 223 224 225

#### Example

##### Request

```shell
Y
Yhz 已提交
226
$ curl -X OPTIONS "http://127.0.0.1:19121/config/advanced"
227 228 229 230 231 232 233 234 235 236
```

### `/config/gpu_resources` (GET)

Gets the parameter values in `gpu_resource_config` of the Milvus configuration file.

> Note: This method is available only for GPU-supported Milvus.

#### Request

valerianian's avatar
valerianian 已提交
237 238 239 240 241 242
| Request Component | Value                      |
| ----------------- | -------------------------- |
| Name              | `/config/gpu_resources`    |
| Header            | `accept: application/json` |
| Body              | N/A                        |
| Method            | GET                        |
243 244 245

#### Response

valerianian's avatar
valerianian 已提交
246 247 248 249
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
250 251 252 253 254 255

#### Example

##### Request

```shell
Y
Yhz 已提交
256
$ curl -X GET "http://127.0.0.1:19121/config/gpu_resources" -H "accept: application/json"
257 258 259 260 261
```

##### Response

```json
valerianian's avatar
valerianian 已提交
262 263 264 265 266 267
{
  "enable": true,
  "cache_capacity": 1,
  "search_resources": ["GPU0"],
  "build_index_resources": ["GPU0"]
}
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
```

### `/config/gpu_resources` (PUT)

Updates the parameter values in `gpu_resource_config` of the Milvus configuration file.

> Note: This method is available only for GPU-supported Milvus.

#### Request

<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/config/gpu_resources</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
  "enable": boolean,
  "cache_capacity": integer($int64),
  "search_resources": [string],
  "build_index_resources": [string]
}
</code></pre> </td></tr>
<tr><td>Method</td><td>PUT</td></tr>

</table>

##### Body Parameters

valerianian's avatar
valerianian 已提交
296 297 298 299 300 301
| Parameter               | Description                                                        | Required? |
| ----------------------- | ------------------------------------------------------------------ | --------- |
| `enable`                | Specifies whether to enable GPU resources.                         | Yes       |
| `cache_capacity`        | Size of GPU memory per card used for cache in GBs.                 | Yes       |
| `search_resources`      | GPU devices used for search computation, must be in format `gpux`. | Yes       |
| `build_index_resources` | GPU devices used for index building, must be in format `gpux`.     | Yes       |
302 303 304

#### Response

valerianian's avatar
valerianian 已提交
305 306 307 308
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
309 310 311 312 313 314

#### Example

##### Request

```shell
Y
Yhz 已提交
315
$ curl -X PUT "http://127.0.0.1:19121/config/gpu_resources" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"enable\":true,\"cache_capacity\":1,\"search_resources\":[\"GPU0\"],\"build_index_resources\":[\"GPU0\"]}"
316 317 318 319 320
```

##### Response

```json
valerianian's avatar
valerianian 已提交
321
{ "message": "OK", "code": 0 }
322 323 324 325 326 327 328 329 330 331
```

### `/config/gpu_resources` (OPTIONS)

Use this API for Cross-Origin Resource Sharing (CORS).

> Note: This method is available only for GPU-supported Milvus.

#### Request

valerianian's avatar
valerianian 已提交
332 333 334 335 336 337
| Request Component | Value                   |
| ----------------- | ----------------------- |
| Name              | `/config/gpu_resources` |
| Header            | N/A                     |
| Body              | N/A                     |
| Method            | OPTIONS                 |
338 339 340 341 342 343

#### Example

##### Request

```shell
Y
Yhz 已提交
344
$ curl -X OPTIONS "http://127.0.0.1:19121/config/gpu_resources"
345 346
```

Y
Yhz 已提交
347
### `/collections` (GET)
348

Y
Yhz 已提交
349
Gets all collections starting from `offset` and ends with `page_size`.
350 351 352

#### Request

valerianian's avatar
valerianian 已提交
353 354 355 356 357 358
| Request Component | Value                      |
| ----------------- | -------------------------- |
| Name              | `/collections`             |
| Header            | `accept: application/json` |
| Body              | N/A                        |
| Method            | GET                        |
359 360 361

##### Query Parameters

valerianian's avatar
valerianian 已提交
362 363 364 365
| Parameter   | Description                                                   | Required? |
| ----------- | ------------------------------------------------------------- | --------- |
| `offset`    | Row offset from which the data page starts. The default is 0. | No        |
| `page_size` | Size of the data page. The default is 10.                     | No        |
366 367 368

#### Response

valerianian's avatar
valerianian 已提交
369 370 371 372
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
373 374 375 376 377 378

#### Example

##### Request

```shell
Y
Yhz 已提交
379
$ curl -X GET "http://127.0.0.1:19121/collections?offset=0&page_size=1" -H "accept: application/json"
380 381 382 383 384
```

##### Response

```json
valerianian's avatar
valerianian 已提交
385 386 387 388 389 390 391 392 393
{
  "collections": [
    {
      "collection_name": "test_collection",
      "dimension": 1,
      "index_file_size": 10,
      "metric_type": "L2",
      "count": 0,
      "index": "FLAT",
Y
Yhz 已提交
394
      "index_params": {"nlist":  4096}
valerianian's avatar
valerianian 已提交
395 396 397 398
    }
  ],
  "count": 58
}
399 400
```

Y
Yhz 已提交
401
### `/collections` (POST)
402

Y
Yhz 已提交
403
Creates a collection.
404 405 406 407 408 409 410 411 412

#### Request

<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/tables</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
Y
Yhz 已提交
413
  "collection_name": string,
414 415 416 417 418 419 420 421 422 423 424
  "dimension": integer($int64),
  "index_file_size": integer($int64),
  "metric_type": string
}
</code></pre> </td></tr>
<tr><td>Method</td><td>POST</td></tr>

</table>

##### Body Parameters

425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
| Parameter         | Description                                                                               | Required? |
| ----------------- | ----------------------------------------------------------------------------------------- | --------- |
| `collection_name` | The name of the collection to create, which must be unique within its database.           | Yes       |
| `dimension`       | The dimension of the vectors that are to be inserted into the created collection.         | Yes       |
| `index_file_size` | Threshold value that triggers index building for raw data files. The default is 1024.     | No        |
| `metric_type`     | The method vector distances are compared in Milvus. The default is L2.                    | No        |

* Currently supported metrics include:
    - `L2` (Euclidean distance),
    - `IP` (Inner Product)
    - `HAMMING` (Hamming distance)
    - `JACCARD` (Jaccard distance)
    - `TANIMOTO` (Tanomoto distance)
    - `SUBSTRUCTURE` (Sub structure distance)
    - `SUPERSTRUCTURE` (Super structure distance)
440 441 442

#### Response

valerianian's avatar
valerianian 已提交
443 444 445 446
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 201         | Created                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
447 448 449 450 451 452

#### Example

##### Request

```shell
Y
Yhz 已提交
453
$ curl -X POST "http://127.0.0.1:19121/collections" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"collection_name\":\"test_collection\",\"dimension\":1,\"index_file_size\":10,\"metric_type\":\"L2\"}"
454 455 456 457 458
```

##### Response

```json
valerianian's avatar
valerianian 已提交
459
{ "message": "OK", "code": 0 }
460 461
```

Y
Yhz 已提交
462
### `/collections` (OPTIONS)
463 464 465 466 467

Use this API for Cross-Origin Resource Sharing (CORS).

#### Request

valerianian's avatar
valerianian 已提交
468 469 470 471 472 473
| Request Component | Value          |
| ----------------- | -------------- |
| Name              | `/collections` |
| Header            | N/A            |
| Body              | N/A            |
| Method            | OPTIONS        |
474 475 476 477 478 479

#### Example

##### Request

```shell
Y
Yhz 已提交
480
$ curl -X OPTIONS "http://127.0.0.1:19121/collections"
481 482
```

Y
Yhz 已提交
483
### `/collections/{collection_name}` (GET)
484

Y
Yhz 已提交
485
Gets all information about a collection by name.
486 487 488

#### Request

valerianian's avatar
valerianian 已提交
489 490 491 492 493 494
| Request Component | Value                            |
| ----------------- | -------------------------------- |
| Name              | `/collections/{collection_name}` |
| Header            | `accept: application/json`       |
| Body              | N/A                              |
| Method            | GET                              |
495 496 497

##### Query Parameters

valerianian's avatar
valerianian 已提交
498 499 500 501
| Parameter         | Description                                                                                                                                                                                                                                                                                                               | Required? |
| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- |
| `collection_name` | Name of the collection.                                                                                                                                                                                                                                                                                                   | Yes       |
| `info`            | Type of information to acquire. `info` must either be empty or `stat`. When `info` is empty, Milvus returns collection name, dimension, index file size, metric type, offset, index type, and nlist of the collection. When `info` is `stat`, Milvus returns the collection offset, partition status, and segment status. | No        |
502 503 504

#### Response

valerianian's avatar
valerianian 已提交
505 506 507 508 509
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
510 511 512 513 514 515

#### Example

##### Request

```shell
Y
Yhz 已提交
516
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection" -H "accept: application/json"
517 518 519 520 521
```

##### Response

```json
valerianian's avatar
valerianian 已提交
522 523 524 525 526 527 528
{
  "collection_name": "test_collection",
  "dimension": 1,
  "index_file_size": 10,
  "metric_type": "L2",
  "count": 0,
  "index": "FLAT",
Y
Yhz 已提交
529
  "index_params": {"nprobe":  16384}
valerianian's avatar
valerianian 已提交
530
}
531 532
```

Y
Yhz 已提交
533 534 535
##### Request

```shell
Y
Yhz 已提交
536
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection?info=stat" -H "accept: application/json"
Y
Yhz 已提交
537 538 539 540 541 542
```

##### Response

```json
{
valerianian's avatar
valerianian 已提交
543 544 545 546 547 548 549 550
  "count": 150000,
  "partitions_stat": [
    {
      "count": 1000,
      "partition_tag": "_default",
      "segments_stat": [
        {
          "count": 1000,
Y
Yhz 已提交
551
          "index": "FLAT",
valerianian's avatar
valerianian 已提交
552 553 554 555 556 557
          "segment_name": "1583727170217439000",
          "size": 5284922
        }
      ]
    }
  ]
Y
Yhz 已提交
558 559 560
}
```

Y
Yhz 已提交
561
### `/collections/{collection_name}` (DELETE)
562

Y
Yhz 已提交
563
Drops a collection by name.
564 565 566

#### Request

valerianian's avatar
valerianian 已提交
567 568 569 570 571 572
| Request Component | Value                            |
| ----------------- | -------------------------------- |
| Name              | `/collections/{collection_name}` |
| Header            | `accept: application/json`       |
| Body              | N/A                              |
| Method            | DELETE                           |
573 574 575

##### Query Parameters

valerianian's avatar
valerianian 已提交
576 577 578
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
579 580 581

#### Response

valerianian's avatar
valerianian 已提交
582 583 584 585 586
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 204         | Deleted                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
587 588 589 590 591 592

#### Example

##### Request

```shell
Y
Yhz 已提交
593
$ curl -X DELETE "http://127.0.0.1:19121/collections/test_collection" -H "accept: application/json"
594 595 596 597
```

If the deletion is successful, no message will be returned.

Y
Yhz 已提交
598
### `/collections/{collection_name}` (OPTIONS)
599 600 601 602 603

Use this API for Cross-Origin Resource Sharing (CORS).

#### Request

valerianian's avatar
valerianian 已提交
604 605 606 607 608 609
| Request Component | Value                            |
| ----------------- | -------------------------------- |
| Name              | `/collections/{collection_name}` |
| Header            | N/A                              |
| Body              | N/A                              |
| Method            | OPTIONS                          |
610 611 612

#### Query Parameters

valerianian's avatar
valerianian 已提交
613 614 615
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
616 617 618 619 620 621

#### Example

##### Request

```shell
Y
Yhz 已提交
622
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection"
623 624
```

Y
Yhz 已提交
625
### `/collections/{collection_name}/indexes` (GET)
626

Y
Yhz 已提交
627
Gets the index type and nlist of a collection.
628 629 630

#### Request

valerianian's avatar
valerianian 已提交
631 632 633 634 635 636
| Request Component | Value                                    |
| ----------------- | ---------------------------------------- |
| Name              | `/collections/{collection_name}/indexes` |
| Header            | `accept: application/json`               |
| Body              | N/A                                      |
| Method            | GET                                      |
637 638 639

##### Query Parameters

valerianian's avatar
valerianian 已提交
640 641 642
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
643 644 645

#### Response

valerianian's avatar
valerianian 已提交
646 647 648 649 650
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
651 652 653 654 655 656

#### Example

##### Request

```shell
Y
Yhz 已提交
657
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/indexes" -H "accept: application/json"
658 659 660 661 662
```

##### Response

```json
valerianian's avatar
valerianian 已提交
663
{ "index_type": "FLAT", "params": { "nlist": 4096 } }
664 665
```

Y
Yhz 已提交
666
### `/collections/{collection_name}/indexes` (POST)
667

Y
Yhz 已提交
668
Updates the index type and nlist of a collection.
669 670 671 672 673 674 675 676 677 678

#### Request

<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/tables</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
  "index_type": string,
Y
Yhz 已提交
679 680 681
  "params": {
      ......
  }
682 683 684 685 686 687 688 689
}
</code></pre> </td></tr>
<tr><td>Method</td><td>POST</td></tr>

</table>

##### Body Parameters

valerianian's avatar
valerianian 已提交
690 691
| Parameter    | Description                                                                                                                                                                                              | Required? |
| ------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- |
L
Lutkin Wang 已提交
692
| `index_type` | The type of indexing method to query the collection. Please refer to [Milvus Indexes](https://www.milvus.io/docs/guides/index.md) for detailed introduction of supported indexes. The default is "FLAT". | No        |
Y
Yhz 已提交
693
| `params`     | The extra params of indexing method to query the collection. Please refer to [Index and search parameters](#Index-and-search-parameters) for detailed introduction of supported indexes.                                              | No        |
694 695 696

##### Query Parameters

valerianian's avatar
valerianian 已提交
697 698 699
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
700 701 702

#### Response

valerianian's avatar
valerianian 已提交
703 704 705 706 707
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 201         | Created                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
708 709 710 711 712 713

#### Example

##### Request

```shell
Y
Yhz 已提交
714
$ curl -X POST "http://127.0.0.1:19121/collections/test_collection/indexes" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"index_type\":\"IVFFLAT\",\"params\": {\"nlist\":4096}}"
715 716 717 718 719
```

##### Response

```json
valerianian's avatar
valerianian 已提交
720
{ "message": "OK", "code": 0 }
721 722
```

Y
Yhz 已提交
723
### `/collections/{collection_name}/indexes` (DELETE)
724

Y
Yhz 已提交
725
Drops an index for a collection.
726 727 728

#### Request

valerianian's avatar
valerianian 已提交
729 730 731 732 733 734
| Request Component | Value                                    |
| ----------------- | ---------------------------------------- |
| Name              | `/collections/{collection_name}/indexes` |
| Header            | `accept: application/json`               |
| Body              | N/A                                      |
| Method            | DELETE                                   |
735 736 737

##### Query Parameters

valerianian's avatar
valerianian 已提交
738 739 740
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
741 742 743

#### Response

valerianian's avatar
valerianian 已提交
744 745 746 747 748
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 204         | Deleted                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | Resource not available                                            |
749 750 751 752 753 754

#### Example

##### Request

```shell
Y
Yhz 已提交
755
$ curl -X DELETE "http://127.0.0.1:19121/collections/test_collection/indexes" -H "accept: application/json"
756 757 758 759
```

If the deletion is successful, no message will be returned.

Y
Yhz 已提交
760
### `/collections/{collection_name}/indexes` (OPTIONS)
761 762 763 764 765

Use this API for Cross-Origin Resource Sharing (CORS).

#### Request

valerianian's avatar
valerianian 已提交
766 767 768 769 770 771
| Request Component | Value                                    |
| ----------------- | ---------------------------------------- |
| Name              | `/collections/{collection_name}/indexes` |
| Header            | N/A                                      |
| Body              | N/A                                      |
| Method            | OPTIONS                                  |
772 773 774

##### Query Parameters

valerianian's avatar
valerianian 已提交
775 776 777
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
778 779 780 781 782 783

#### Example

##### Request

```shell
Y
Yhz 已提交
784
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection/indexes"
785 786
```

Y
Yhz 已提交
787
### `/collections/{collection_name}/partitions` (GET)
788

Y
Yhz 已提交
789
Gets all partitions in a collection starting from `offset` and ends with `page_size`.
790 791 792

#### Request

valerianian's avatar
valerianian 已提交
793 794 795 796 797 798
| Request Component | Value                                       |
| ----------------- | ------------------------------------------- |
| Name              | `/collections/{collection_name}/partitions` |
| Header            | `accept: application/json`                  |
| Body              | N/A                                         |
| Method            | GET                                         |
799 800 801

##### Query Parameters

valerianian's avatar
valerianian 已提交
802 803 804 805 806
| Parameter         | Description                                                   | Required? |
| ----------------- | ------------------------------------------------------------- | --------- |
| `collection_name` | Name of the collection.                                       | Yes       |
| `offset`          | Row offset from which the data page starts. The default is 0. | No        |
| `page_size`       | Size of the data page. The default is 10.                     | No        |
807 808 809

#### Response

valerianian's avatar
valerianian 已提交
810 811 812 813 814
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
815 816 817 818 819 820

#### Example

##### Request

```shell
Y
Yhz 已提交
821
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/partitions?offset=0&page_size=3" -H "accept: application/json"
822 823 824 825 826
```

##### Response

```json
valerianian's avatar
valerianian 已提交
827 828 829 830 831 832 833 834
{
  "partitions": [
    { "partition_tag": "_default" },
    { "partition_tag": "test_tag" },
    { "partition_tag": "test_2" }
  ],
  "count": 10
}
835 836
```

Y
Yhz 已提交
837
### `/collections/{collection_name}/partitions` (POST)
838

Y
Yhz 已提交
839
Creates a partition in a collection.
840 841 842

#### Request

valerianian's avatar
valerianian 已提交
843 844 845 846 847 848
| Request Component | Value                                       |
| ----------------- | ------------------------------------------- |
| Name              | `/collections/{collection_name}/partitions` |
| Header            | `accept: application/json`                  |
| Body              | N/A                                         |
| Method            | POST                                        |
849 850 851

#### Response

valerianian's avatar
valerianian 已提交
852 853 854 855 856
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 201         | Created                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
857 858 859 860 861 862

#### Example

##### Request

```shell
Y
Yhz 已提交
863
$ curl -X POST "http://127.0.0.1:19121/collections/test_collection/partitions" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"partition_tag\": \"test\"}"
864 865 866 867 868
```

##### Response

```json
valerianian's avatar
valerianian 已提交
869
{ "message": "OK", "code": 0 }
870 871
```

Y
Yhz 已提交
872
### `/collections/{collection_name}/partitions` (OPTIONS)
873 874 875 876 877

Use this API for Cross-Origin Resource Sharing (CORS).

#### Request

valerianian's avatar
valerianian 已提交
878 879 880 881 882 883
| Request Component | Value                                       |
| ----------------- | ------------------------------------------- |
| Name              | `/collections/{collection_name}/partitions` |
| Header            | N/A                                         |
| Body              | N/A                                         |
| Method            | OPTIONS                                     |
884 885 886

##### Query Parameters

valerianian's avatar
valerianian 已提交
887 888 889
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
890 891 892 893 894 895

#### Example

##### Request

```shell
Y
Yhz 已提交
896
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection/partitions"
897 898
```

Y
Yhz 已提交
899
### `/collections/{collection_name}/partitions` (DELETE)
900 901 902 903 904

Deletes a partition by tag.

#### Request

Y
Yhz 已提交
905 906 907 908 909 910 911 912 913 914 915 916
<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/collections/{collection_name}/partitions</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
  "partition_tag": string
}
</code></pre> </td></tr>
<tr><td>Method</td><td>POST</td></tr>

</table>
917 918 919

##### Query Parameters

valerianian's avatar
valerianian 已提交
920 921 922 923
| Parameter         | Description                                         | Required? |
| ----------------- | --------------------------------------------------- | --------- |
| `collection_name` | Name of the collection that contains the partition. | Yes       |
| `partition_tag`   | Tag of the partition to delete.                     | yes       |
924 925 926

#### Response

valerianian's avatar
valerianian 已提交
927 928 929 930 931
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 204         | Deleted                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The requested resource does not exist.                            |
932 933 934 935 936 937

#### Example

##### Request

```shell
Y
Yhz 已提交
938
$ curl -X DELETE "http://127.0.0.1:19121/collections/test_collection/partitions -H "accept: application/json" -d "{\"partition_tag\": \"tags_01\"}"
939 940 941 942
```

The deletion is successful if no information is returned.

Y
Yhz 已提交
943 944 945
### `/collections/{collection_name}/segments` (GET)

Gets all segments in a collection starting from `offset` and ends with `page_size`.
946 947 948

#### Request

valerianian's avatar
valerianian 已提交
949 950 951 952 953 954
| Request Component | Value                                     |
| ----------------- | ----------------------------------------- |
| Name              | `/collections/{collection_name}/segments` |
| Header            | `accept: application/json`                |
| Body              | N/A                                       |
| Method            | GET                                       |
Y
Yhz 已提交
955 956 957

##### Query Parameters

valerianian's avatar
valerianian 已提交
958 959 960 961 962
| Parameter         | Description                                                   | Required? |
| ----------------- | ------------------------------------------------------------- | --------- |
| `collection_name` | Name of the collection.                                       | Yes       |
| `offset`          | Row offset from which the data page starts. The default is 0. | No        |
| `page_size`       | Size of the data page. The default is 10.                     | No        |
Y
Yhz 已提交
963 964 965

#### Response

valerianian's avatar
valerianian 已提交
966 967 968 969 970
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
Y
Yhz 已提交
971 972 973 974 975 976

#### Example

##### Request

```shell
Y
Yhz 已提交
977
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/segments?offset=0&page_size=1" -H "accept: application/json"
Y
Yhz 已提交
978 979 980 981 982 983
```

##### Response

```json
{
valerianian's avatar
valerianian 已提交
984 985 986 987 988 989 990 991 992 993 994 995
  "code": 0,
  "message": "OK",
  "count": 2,
  "segments": [
    {
      "count": 10000,
      "index": "IVFFLAT",
      "partition_tag": "_default",
      "segment_name": "1583727470444700000",
      "size": 5284922
    }
  ]
Y
Yhz 已提交
996 997 998 999 1000 1001 1002 1003 1004
}
```

### `/collections/{collection_name}/segments/{segment_name}/vectors` (GET)

Gets all vectors of segment in a collection starting from `offset` and ends with `page_size`.

#### Request

valerianian's avatar
valerianian 已提交
1005 1006 1007 1008 1009 1010
| Request Component | Value                                     |
| ----------------- | ----------------------------------------- |
| Name              | `/collections/{collection_name}/segments` |
| Header            | `accept: application/json`                |
| Body              | N/A                                       |
| Method            | GET                                       |
Y
Yhz 已提交
1011 1012 1013

##### Query Parameters

valerianian's avatar
valerianian 已提交
1014 1015 1016 1017 1018 1019
| Parameter         | Description                                                   | Required? |
| ----------------- | ------------------------------------------------------------- | --------- |
| `collection_name` | Name of the collection.                                       | Yes       |
| `segment_name`    | Name of the segment.                                          | Yes       |
| `offset`          | Row offset from which the data page starts. The default is 0. | No        |
| `page_size`       | Size of the data page. The default is 10.                     | No        |
Y
Yhz 已提交
1020 1021 1022

#### Response

valerianian's avatar
valerianian 已提交
1023 1024 1025 1026 1027
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
Y
Yhz 已提交
1028 1029 1030 1031 1032 1033

#### Example

##### Request

```shell
Y
Yhz 已提交
1034
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/segments/1583727470444700000/vectors?offset=0&page_size=1" -H "accept: application/json"
Y
Yhz 已提交
1035 1036 1037 1038 1039 1040
```

##### Response

```json
{
valerianian's avatar
valerianian 已提交
1041 1042 1043 1044 1045 1046 1047 1048 1049
  "code": 0,
  "message": "OK",
  "count": 2,
  "vectors": [
    {
      "vector": [0.1],
      "id": "1583727470435045000"
    }
  ]
Y
Yhz 已提交
1050 1051 1052 1053 1054 1055 1056 1057 1058
}
```

### `/collections/{collection_name}/segments/{segment_name}/ids` (GET)

Gets all vector ids of segment in a collection starting from `offset` and ends with `page_size`.

#### Request

valerianian's avatar
valerianian 已提交
1059 1060 1061 1062 1063 1064
| Request Component | Value                                     |
| ----------------- | ----------------------------------------- |
| Name              | `/collections/{collection_name}/segments` |
| Header            | `accept: application/json`                |
| Body              | N/A                                       |
| Method            | GET                                       |
1065 1066 1067

##### Query Parameters

valerianian's avatar
valerianian 已提交
1068 1069 1070 1071 1072 1073
| Parameter         | Description                                                   | Required? |
| ----------------- | ------------------------------------------------------------- | --------- |
| `collection_name` | Name of the collection.                                       | Yes       |
| `segment_name`    | Name of the segment.                                          | Yes       |
| `offset`          | Row offset from which the data page starts. The default is 0. | No        |
| `page_size`       | Size of the data page. The default is 10.                     | No        |
Y
Yhz 已提交
1074 1075 1076

#### Response

valerianian's avatar
valerianian 已提交
1077 1078 1079 1080 1081
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
1082 1083 1084 1085 1086 1087

#### Example

##### Request

```shell
Y
Yhz 已提交
1088
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/segments/1583727470444700000/ids?offset=0&page_size=1" -H "accept: application/json"
Y
Yhz 已提交
1089 1090 1091 1092 1093 1094
```

##### Response

```json
{
valerianian's avatar
valerianian 已提交
1095 1096
  "ids": ["1583727470435045000"],
  "count": 10000
Y
Yhz 已提交
1097
}
1098 1099
```

Y
Yhz 已提交
1100 1101 1102
### `/collections/{collection_name}/vectors` (PUT)

1. Searches vectors in a collection.
1103 1104 1105 1106 1107 1108 1109 1110 1111

#### Request

<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/tables/{table_name}/vectors</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
Y
Yhz 已提交
1112 1113
  "search": {
      "topk": integer($int64),
Y
Yhz 已提交
1114
      "partition_tags": [string],
Y
Yhz 已提交
1115 1116 1117 1118 1119 1120
      "file_ids": [string],
      "vectors": [[number($float/$uint8)]]
      "params": {
          "nprobe": 16
      }
  }
1121 1122 1123 1124 1125 1126 1127
}
</code></pre> </td></tr>
<tr><td>Method</td><td>PUT</td></tr>
</table>

##### Body Parameters

valerianian's avatar
valerianian 已提交
1128 1129 1130 1131 1132 1133
| Parameter  | Description                                                                                                                                                                                  | Required? |
| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- |
| `topk`     | The top k most similar results of each query vector.                                                                                                                                         | Yes       |
| `tags`     | Tags of partitions that you need to search. You do not have to specify this value if the collection is not partitioned or you wish to search the whole collection.                           | No        |
| `file_ids` | IDs of the vector files. You do not have to specify this value if you do not use Milvus in distributed scenarios. Also, if you assign a value to `file_ids`, the value of `tags` is ignored. | No        |
| `vectors`  | Vectors to query.                                                                                                                                                                            | Yes       |
Y
Yhz 已提交
1134
| `params`   | Extra params for search. Please refer to [Index and search parameters](#Index-and-search-parameters) to get more detail information.                                                                                        | Yes       |
1135

Y
Yhz 已提交
1136
> Note: Type of items of vectors depends on the metric used by the collection. If the collection uses `L2` or `IP`, you must use `float`. If the collection uses `HAMMING`, `JACCARD`, or `TANIMOTO`, you must use `uint8`.
1137 1138 1139

##### Query Parameters

valerianian's avatar
valerianian 已提交
1140 1141 1142
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
1143 1144 1145

#### Response

valerianian's avatar
valerianian 已提交
1146 1147 1148 1149 1150
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
1151 1152 1153 1154 1155 1156

#### Example

##### Request

```shell
1157
$ curl -X PUT "http://127.0.0.1:19121/collections/test_collection/vectors" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"search\":{\"topk\":2,\"vectors\":[[0.1]],\"params\":{\"nprobe\":16}}}"
1158 1159 1160 1161 1162
```

##### Response

```json
valerianian's avatar
valerianian 已提交
1163 1164 1165 1166 1167 1168 1169 1170 1171
{
  "num": 1,
  "results": [
    [
      { "id": "1578989029645098000", "distance": "0.000000" },
      { "id": "1578989029645098001", "distance": "0.010000" }
    ]
  ]
}
1172 1173
```

Y
Yhz 已提交
1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
2. Delete vectors

#### Request

<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/tables/{table_name}/vectors</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
  "delete": {
     "ids": [$string]
  }
}
</code></pre> </td></tr>
<tr><td>Method</td><td>PUT</td></tr>
</table>

##### Body Parameters

valerianian's avatar
valerianian 已提交
1194 1195 1196
| Parameter | Description     | Required? |
| --------- | --------------- | --------- |
| ids       | IDs of vectors. | Yes       |
Y
Yhz 已提交
1197 1198 1199

##### Query Parameters

valerianian's avatar
valerianian 已提交
1200 1201 1202
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
Y
Yhz 已提交
1203 1204 1205

#### Response

valerianian's avatar
valerianian 已提交
1206 1207 1208 1209 1210
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
Y
Yhz 已提交
1211 1212 1213 1214 1215 1216

#### Example

##### Request

```shell
Y
Yhz 已提交
1217
$ curl -X PUT "http://127.0.0.1:19121/collections/test_collection/vectors" -H "accept: application/json" -H "Content-Type: application/json" -d "{"delete": {"ids": ["1578989029645098000"]}}"
Y
Yhz 已提交
1218 1219 1220 1221 1222
```

##### Response

```json
valerianian's avatar
valerianian 已提交
1223
{ "code": 0, "message": "success" }
Y
Yhz 已提交
1224 1225 1226
```

### `/collections/{collection_name}/vectors` (POST)
1227

Y
Yhz 已提交
1228
Inserts vectors to a collection.
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239

> Note: It is recommended that you do not insert more than 1 million vectors per request.

#### Request

<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/tables/{table_name}/vectors</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
Y
Yhz 已提交
1240
  "partition_tag": string,
Y
Yhz 已提交
1241
  "vectors": [[number($float/$uint8)]],
1242 1243 1244 1245 1246 1247 1248 1249
  "ids": [integer($int64)]
}
</code></pre> </td></tr>
<tr><td>Method</td><td>POST</td></tr>
</table>

##### Body Parameters

valerianian's avatar
valerianian 已提交
1250 1251 1252 1253 1254
| Parameter       | Description                                                                                                                                                                                                                      | Required? |
| --------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- |
| `partition_tag` | Tag of the partition to insert vectors to.                                                                                                                                                                                       | No        |
| `vectors`       | Vectors to insert to the collection.                                                                                                                                                                                             | Yes       |
| `ids`           | IDs of the vectors to insert to the collection. If you assign IDs to the vectors, you must provide IDs for all vectors in the collection. If you do not specify this parameter, Milvus automatically assigns IDs to the vectors. | No        |
1255

Y
Yhz 已提交
1256
> Note: Type of items of `vectors` depends on the metric used by the collection. If the collection uses `L2` or `IP`, you must use `float`. If the collection uses `HAMMING`, `JACCARD`, or `TANIMOTO`, you must use `uint8`.
1257 1258 1259

##### Query Parameters

valerianian's avatar
valerianian 已提交
1260 1261 1262
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
1263 1264 1265

#### Response

valerianian's avatar
valerianian 已提交
1266 1267 1268 1269 1270
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 201         | Created                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
1271 1272 1273 1274 1275 1276

#### Example

##### Request

```shell
Y
Yhz 已提交
1277
$ curl -X POST "http://127.0.0.1:19121/collections/test_collection/vectors" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"vectors\":[[0.1],[0.2],[0.3],[0.4]]}"
1278 1279 1280 1281 1282
```

##### Response

```json
valerianian's avatar
valerianian 已提交
1283 1284 1285 1286 1287 1288 1289 1290
{
  "ids": [
    "1578989029645098000",
    "1578989029645098001",
    "1578989029645098002",
    "1578989029645098003"
  ]
}
1291 1292
```

Y
Yhz 已提交
1293 1294 1295 1296 1297 1298
### `/collections/{collection_name}/vectors?id={vector_id}` (GET)

Obtain a vector to by ID.

#### Request

valerianian's avatar
valerianian 已提交
1299 1300 1301 1302 1303 1304
| Request Component | Value                                    |
| ----------------- | ---------------------------------------- |
| Name              | `/collections/{collection_name}/vectors` |
| Header            | `accept: application/json`               |
| Body              | N/A                                      |
| Method            | GET                                      |
Y
Yhz 已提交
1305 1306 1307

#### Query Parameters

valerianian's avatar
valerianian 已提交
1308 1309 1310 1311
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
| `vector_id`       | Vector id.              | Yes       |
Y
Yhz 已提交
1312 1313 1314

#### Response

valerianian's avatar
valerianian 已提交
1315 1316 1317 1318 1319
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 201         | Created                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
Y
Yhz 已提交
1320 1321 1322 1323 1324 1325

#### Example

##### Request

```shell
1326
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/vectors?id=1578989029645098000" -H "accept: application/json" -H "Content-Type: application/json"
Y
Yhz 已提交
1327 1328 1329 1330 1331 1332
```

##### Response

```json
{
valerianian's avatar
valerianian 已提交
1333 1334 1335 1336 1337 1338
  "vectors": [
    {
      "id": "1578989029645098000",
      "vector": [0.1]
    }
  ]
Y
Yhz 已提交
1339 1340 1341
}
```

Y
Yhz 已提交
1342
### `/collections/{collection_name}/vectors` (OPTIONS)
1343 1344 1345 1346 1347

Use this API for Cross-Origin Resource Sharing (CORS).

#### Request

valerianian's avatar
valerianian 已提交
1348 1349 1350 1351 1352 1353
| Request Component | Value                                    |
| ----------------- | ---------------------------------------- |
| Name              | `/collections/{collection_name}/vectors` |
| Header            | N/A                                      |
| Body              | N/A                                      |
| Method            | OPTIONS                                  |
1354 1355 1356 1357 1358 1359

#### Example

##### Request

```shell
Y
Yhz 已提交
1360
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection/vectors"
1361 1362 1363 1364 1365 1366 1367 1368
```

### `/system/{msg}` (GET)

Gets information about the Milvus server.

#### Request

valerianian's avatar
valerianian 已提交
1369 1370 1371 1372 1373 1374
| Request Component | Value                      |
| ----------------- | -------------------------- |
| Name              | `/system/{msg}`            |
| Header            | `accept: application/json` |
| Body              | N/A                        |
| Method            | GET                        |
1375 1376 1377

##### Query Parameters

valerianian's avatar
valerianian 已提交
1378 1379 1380
| Parameter | Description                                                       | Required? |
| --------- | ----------------------------------------------------------------- | --------- |
| `msg`     | Type of the message to return. You can use `status` or `version`. | Yes       |
1381 1382 1383

#### Response

valerianian's avatar
valerianian 已提交
1384 1385 1386 1387
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
1388 1389 1390 1391 1392 1393

#### Example

##### Request

```shell
Y
Yhz 已提交
1394
$ curl -X GET "http://127.0.0.1:19121/system/version" -H "accept: application/json"
1395 1396 1397 1398 1399
```

##### Response

```json
J
Jin Hai 已提交
1400
{"code":0,"message":"OK","reply": "0.8.0" }
1401 1402
```

Y
Yhz 已提交
1403 1404
### `system/{op}` (PUT)

valerianian's avatar
valerianian 已提交
1405
#### Flush a collection
Y
Yhz 已提交
1406

valerianian's avatar
valerianian 已提交
1407
##### Request
Y
Yhz 已提交
1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422

<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/system/task</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
  "flush": {
     "collection_names": [$string]
  }
}
</code></pre> </td></tr>
<tr><td>Method</td><td>PUT</td></tr>
</table>

valerianian's avatar
valerianian 已提交
1423
##### Response
Y
Yhz 已提交
1424

valerianian's avatar
valerianian 已提交
1425 1426 1427 1428
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
Y
Yhz 已提交
1429

valerianian's avatar
valerianian 已提交
1430
##### Example
Y
Yhz 已提交
1431

valerianian's avatar
valerianian 已提交
1432
###### Request
Y
Yhz 已提交
1433 1434

```shell
Y
Yhz 已提交
1435
$ curl -X PUT "http://127.0.0.1:19121/system/task" -H "accept: application/json" -d "{\"flush\": {\"collection_names\": [\"test_collection\"]}}"
Y
Yhz 已提交
1436 1437
```

valerianian's avatar
valerianian 已提交
1438
###### Response
Y
Yhz 已提交
1439 1440

```json
valerianian's avatar
valerianian 已提交
1441
{ "code": 0, "message": "success" }
Y
Yhz 已提交
1442 1443
```

valerianian's avatar
valerianian 已提交
1444
#### Compact segments in a collection
Y
Yhz 已提交
1445

valerianian's avatar
valerianian 已提交
1446
##### Request
Y
Yhz 已提交
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461

<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/system/task</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
  "compact": {
     "collection_name": $string
  }
}
</code></pre> </td></tr>
<tr><td>Method</td><td>PUT</td></tr>
</table>

valerianian's avatar
valerianian 已提交
1462
##### Response
Y
Yhz 已提交
1463

valerianian's avatar
valerianian 已提交
1464 1465 1466 1467
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
Y
Yhz 已提交
1468

valerianian's avatar
valerianian 已提交
1469
##### Example
Y
Yhz 已提交
1470

valerianian's avatar
valerianian 已提交
1471
###### Request
Y
Yhz 已提交
1472 1473

```shell
Y
Yhz 已提交
1474
$ curl -X PUT "http://127.0.0.1:19121/system/task" -H "accept: application/json" -d "{\"compact\": {\"collection_name\": \"test_collection\"}}"
Y
Yhz 已提交
1475 1476
```

valerianian's avatar
valerianian 已提交
1477
###### Response
Y
Yhz 已提交
1478 1479

```json
valerianian's avatar
valerianian 已提交
1480
{ "code": 0, "message": "success" }
Y
Yhz 已提交
1481 1482
```

valerianian's avatar
valerianian 已提交
1483
#### Load a collection to memory
Y
Yhz 已提交
1484

valerianian's avatar
valerianian 已提交
1485
##### Request
Y
Yhz 已提交
1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500

<table>
<tr><th>Request Component</th><th>Value</th></tr>
<tr><td> Name</td><td><pre><code>/system/task</code></pre></td></tr>
<tr><td>Header </td><td><pre><code>accept: application/json</code></pre> </td></tr>
<tr><td>Body</td><td><pre><code>
{
  "load": {
     "collection_name": $string
  }
}
</code></pre> </td></tr>
<tr><td>Method</td><td>PUT</td></tr>
</table>

valerianian's avatar
valerianian 已提交
1501
##### Response
Y
Yhz 已提交
1502

valerianian's avatar
valerianian 已提交
1503 1504 1505 1506
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
Y
Yhz 已提交
1507

valerianian's avatar
valerianian 已提交
1508
##### Example
Y
Yhz 已提交
1509

valerianian's avatar
valerianian 已提交
1510
###### Request
Y
Yhz 已提交
1511 1512

```shell
Y
Yhz 已提交
1513
$ curl -X PUT "http://127.0.0.1:19121/system/task" -H "accept: application/json" -d "{\"load\": {\"collection_name\": \"test_collection\"}}"
Y
Yhz 已提交
1514 1515
```

valerianian's avatar
valerianian 已提交
1516
###### Response
Y
Yhz 已提交
1517 1518

```json
valerianian's avatar
valerianian 已提交
1519
{ "code": 0, "message": "success" }
Y
Yhz 已提交
1520 1521
```

Y
Yhz 已提交
1522
## Index and search parameters
Y
Yhz 已提交
1523

valerianian's avatar
valerianian 已提交
1524
For each index type, the RESTful API has specific index parameters and search parameters.
Y
Yhz 已提交
1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552

<table>
<tr><th>Index type</th><th>Create index param</th><th>Search param</th></tr>
<tr>
 <td> IVFFLAT</td>
 <td><pre><code>{"nlist": $int}</code></pre></td>
 <td><pre><code>{"nprobe": $int}</code></pre></td>
</tr>
<tr>
 <td> IVFPQ</td>
 <td><pre><code>{"m": $int, "nlist": $int}</code></pre></td>
 <td><pre><code>{"nprobe": $int}</code></pre></td>
</tr>
<tr>
 <td> IVFSQ8</td>
 <td><pre><code>{"nlist": $int}</code></pre></td>
 <td><pre><code>{"nprobe": $int}</code></pre></td>
</tr>
<tr>
 <td> IVFSQ8H</td>
 <td><pre><code>{"nlist": $int}</code></pre></td>
 <td><pre><code>{"nprobe": $int}</code></pre></td>
</tr>
<tr>
 <td> HNSW</td>
 <td><pre><code>{"M": $int, "efConstruction": $int}</code></pre></td>
 <td><pre><code>{"ef": $int}</code></pre></td>
</tr>
1553 1554 1555 1556 1557
<tr>
 <td> ANNOY</td>
 <td><pre><code>{"n_trees": $int}</code></pre></td>
 <td><pre><code>{"search_k": $int}</code></pre></td>
</tr>
Y
Yhz 已提交
1558 1559
</table>

L
Lutkin Wang 已提交
1560
For detailed information about the parameters above, refer to [Milvus Indexes](https://milvus.io/docs/guides/index.md)
Y
Yhz 已提交
1561

1562 1563 1564 1565
## Error Codes

The RESTful API returns error messages as JSON text. Each type of error message has a specific error code.

valerianian's avatar
valerianian 已提交
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599
| Type                  | Code |
| --------------------- | ---- |
| SUCCESS               | 0    |
| UNEXPECTED_ERROR      | 1    |
| CONNECT_FAILED        | 2    |
| PERMISSION_DENIED     | 3    |
| TABLE_NOT_EXISTS      | 4    |
| ILLEGAL_ARGUMENT      | 5    |
| ILLEGAL_RANGE         | 6    |
| ILLEGAL_DIMENSION     | 7    |
| ILLEGAL_INDEX_TYPE    | 8    |
| ILLEGAL_TABLE_NAME    | 9    |
| ILLEGAL_TOPK          | 10   |
| ILLEGAL_ROWRECORD     | 11   |
| ILLEGAL_VECTOR_ID     | 12   |
| ILLEGAL_SEARCH_RESULT | 13   |
| FILE_NOT_FOUND        | 14   |
| META_FAILED           | 15   |
| CACHE_FAILED          | 16   |
| CANNOT_CREATE_FOLDER  | 17   |
| CANNOT_CREATE_FILE    | 18   |
| CANNOT_DELETE_FOLDER  | 19   |
| CANNOT_DELETE_FILE    | 20   |
| BUILD_INDEX_ERROR     | 21   |
| ILLEGAL_NLIST         | 22   |
| ILLEGAL_METRIC_TYPE   | 23   |
| OUT_OF_MEMORY         | 24   |
| PATH_PARAM_LOSS       | 31   |
| UNKNOWN_PATH          | 32   |
| QUERY_PARAM_LOSS      | 33   |
| BODY_FIELD_LOSS       | 34   |
| ILLEGAL_BODY          | 35   |
| BODY_PARSE_FAIL       | 36   |
| ILLEGAL_QUERY_PARAM   | 37   |