README.md 40.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Milvus RESTful API

<!-- TOC -->

- [Overview](#overview)
- [API Reference](#api-reference)
    - [`/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)
Y
Yhz 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
    - [`/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)
Y
Yhz 已提交
34
    - [`/collections/{collection_name}/vectors` (GET)](#collectionscollection_namevectorsidvector_id-get)
Y
Yhz 已提交
35
    - [`/collections/{collection_name}/vectors` (OPTIONS)](#collectionscollection_namevectors-options)
36
    - [`/system/{msg}` (GET)](#systemmsg-get)
Y
Yhz 已提交
37
    - [`system/{op}` (PUT)](#systemop-put)
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
- [Error Codes](#error-codes) 

<!-- /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

| Request Component     | Value  |
|-----------------|---|
| Name     | `/state`  |
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET    |

#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|

#### 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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
```

##### Response

```json
{"message":"Success","code":0}
```

### `/devices`

Gets CPU/GPU information from the host.

#### Request

| Request Component     | Value  |
|-----------------|---|
| Name     | `/devices`  |
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET    |

#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |


#### Example

##### Request

```shell
Y
Yhz 已提交
107
$ curl -X GET "http://127.0.0.1:19121/devices" -H "accept: application/json"
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
```

##### Response

```json
{"cpu":{"memory":31},"gpus":{"GPU0":{"memory":5}}}
```

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

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

#### Request

| Request Component     | Value  |
|-----------------|---|
| Name     | `/config/advanced`  |
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |

#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |

#### Example

##### Request

```shell
Y
Yhz 已提交
141
$ curl -X GET "http://127.0.0.1:19121/config/advanced" -H "accept: application/json"
142 143 144 145 146 147 148 149 150 151 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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
```

##### Response

```json
{"cpu_cache_capacity":4,"cache_insert_data":false,"use_blas_threshold":1100,"gpu_search_threshold":1000}
```

### `/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

| 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  |

#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |

#### Example

##### Request

```shell
Y
Yhz 已提交
195
$ 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}"
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
```

##### Response


```json
{"message": "OK","code": 0}
```

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

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

#### Request

| Request Component     | Value  |
|-----------------|---|
| Name     | `/config/advanced`  |
| Header  | N/A  |
| Body    |   N/A |
| Method    |   OPTIONS |


#### Example

##### Request

```shell
Y
Yhz 已提交
224
$ curl -X OPTIONS "http://127.0.0.1:19121/config/advanced"
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
```

### `/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

| Request Component     | Value  |
|-----------------|---|
| Name     | `/config/gpu_resources`  |
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |

#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |

#### Example

##### Request

```shell
Y
Yhz 已提交
254
$ curl -X GET "http://127.0.0.1:19121/config/gpu_resources" -H "accept: application/json"
255 256 257 258 259 260 261 262 263 264 265 266 267 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 296 297 298 299 300 301 302 303 304 305 306 307 308
```

##### Response


```json
{"enable":true,"cache_capacity":1,"search_resources":["GPU0"],"build_index_resources":["GPU0"]}
```

### `/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

| 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  |

#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |

#### Example

##### Request

```shell
Y
Yhz 已提交
309
$ 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\"]}"
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
```

##### Response

```json
{"message": "OK","code": 0}
```

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

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

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

#### Request

| Request Component     | Value  |
|-----------------|---|
| Name     | `/config/gpu_resources`  |
| Header  | N/A  |
| Body    |   N/A |
| Method    |   OPTIONS |

#### Example

##### Request

```shell
Y
Yhz 已提交
338
$ curl -X OPTIONS "http://127.0.0.1:19121/config/gpu_resources"
339 340
```

Y
Yhz 已提交
341
### `/collections` (GET)
342

Y
Yhz 已提交
343
Gets all collections starting from `offset` and ends with `page_size`.
344 345 346 347 348

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
349
| Name     | `/collections`  |
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |

##### Query Parameters

| 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  |


#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |

#### Example

##### Request

```shell
Y
Yhz 已提交
374
$ curl -X GET "http://127.0.0.1:19121/collections?offset=0&page_size=1" -H "accept: application/json"
375 376 377 378 379 380
```

##### Response


```json
Y
Yhz 已提交
381
{"collections":[{"collection_name":"test_collection","dimension":1,"index_file_size":10,"metric_type":"L2","count":0,"index":"FLAT","nlist":16384}],"count":58}
382 383
```

Y
Yhz 已提交
384
### `/collections` (POST)
385

Y
Yhz 已提交
386
Creates a collection.
387 388 389 390 391 392 393 394 395

#### 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 已提交
396
  "collection_name": string,
397 398 399 400 401 402 403 404 405 406 407 408 409
  "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

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
410 411
| `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  |
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
| `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. Currently supported metrics include `L2` (Euclidean distance), `IP` (Inner Product), `HAMMING` (Hamming distance), `JACCARD` (Jaccard distance), and `TANIMOTO` (Tanomoto distance).    |   No  |

#### Response

| Status code    | Description |
|-----------------|---|
| 201     | Created |
| 400     | The request is incorrect. Refer to the error message for details. |

#### Example

##### Request

```shell
Y
Yhz 已提交
427
$ 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\"}"
428 429 430 431 432 433 434 435 436
```

##### Response


```json
{"message":"OK","code":0}
```

Y
Yhz 已提交
437
### `/collections` (OPTIONS)
438 439 440 441 442 443 444

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

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
445
| Name     | `/collections`  |
446 447 448 449 450 451 452 453 454 455
| Header  | N/A  |
| Body    |   N/A |
| Method    |   OPTIONS |


#### Example

##### Request

```shell
Y
Yhz 已提交
456
$ curl -X OPTIONS "http://127.0.0.1:19121/collections"
457 458
```

Y
Yhz 已提交
459
### `/collections/{collection_name}` (GET)
460

Y
Yhz 已提交
461
Gets all information about a collection by name.
462 463 464 465 466

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
467
| Name     | `/collections/{collection_name}`  |
468 469 470 471 472 473 474 475 476
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |


##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
477 478
| `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   |
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493


#### Response

| 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. |

#### Example

##### Request

```shell
Y
Yhz 已提交
494
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection" -H "accept: application/json"
495 496 497 498 499
```

##### Response

```json
Y
Yhz 已提交
500
{"collection_name":"test_collection","dimension":1,"index_file_size":10,"metric_type":"L2","count":0,"index":"FLAT", "index_params":{}}
501 502
```

Y
Yhz 已提交
503 504 505
##### Request

```shell
Y
Yhz 已提交
506
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection?info=stat" -H "accept: application/json"
Y
Yhz 已提交
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
```

##### Response

```json
{
   "count":150000,
   "partitions_stat":[
      {
         "count":1000,"partition_tag":"_default",
         "segments_stat":[
            {"count":1000,"index":"IVFFLAT","segment_name":"1583727170217439000","size":5284922}
         ]
      }
   ]
}
```


Y
Yhz 已提交
526
### `/collections/{collection_name}` (DELETE)
527

Y
Yhz 已提交
528
Drops a collection by name.
529 530 531 532 533

#### Request

| Request Component     | Value  |
|-----------------|-----|
Y
Yhz 已提交
534
| Name     | `/collections/{collection_name}`  |
535 536 537 538 539 540 541 542
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   DELETE |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
543
| `collection_name`     | Name of the collection.   | Yes   |
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558

#### Response

| Status code    | Description |
|-----------------|---|
| 204     | Deleted|
| 400     | The request is incorrect. Refer to the error message for details. |
| 404     | The required resource does not exist. |

#### Example

##### Request


```shell
Y
Yhz 已提交
559
$ curl -X DELETE "http://127.0.0.1:19121/collections/test_collection" -H "accept: application/json"
560 561 562 563
```

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

Y
Yhz 已提交
564
### `/collections/{collection_name}` (OPTIONS)
565 566 567 568 569 570 571

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

#### Request

| Request Component     | Value  |
|-----------------|-----|
Y
Yhz 已提交
572
| Name     | `/collections/{collection_name}`  |
573 574 575 576 577 578 579 580
| Header  | N/A  |
| Body    |   N/A |
| Method    |   OPTIONS |

#### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
581
| `collection_name`     | Name of the collection.   | Yes   |
582 583 584 585 586 587 588


#### Example

##### Request

```shell
Y
Yhz 已提交
589
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection"
590 591
```

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

Y
Yhz 已提交
594
Gets the index type and nlist of a collection.
595 596 597 598 599

#### Request

| Request Component     | Value  |
|-----------------|-----|
Y
Yhz 已提交
600
| Name     | `/collections/{collection_name}/indexes`  |
601 602 603 604 605 606 607 608
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
609
| `collection_name`     | Name of the collection.   | Yes   |
610 611 612 613 614 615 616 617 618 619 620 621 622 623

#### Response

| 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. |

#### Example

##### Request

```shell
Y
Yhz 已提交
624
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/indexes" -H "accept: application/json"
625 626 627 628 629 630
```

##### Response


```json
Y
Yhz 已提交
631
{"index_type":"FLAT","params":{"nlist":4096}}
632 633
```

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

Y
Yhz 已提交
636
Updates the index type and nlist of a collection.
637 638 639 640 641 642 643 644 645 646

#### 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 已提交
647 648 649
  "params": {
      ......
  }
650 651 652 653 654 655 656 657 658 659
}
</code></pre> </td></tr>
<tr><td>Method</td><td>POST</td></tr>

</table>

##### Body Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
660
| `index_type`     | The type of indexing method to query the collection. Please refer to [Index Types](https://www.milvus.io/docs/reference/index.md) for detailed introduction of supported indexes. The default is "FLAT".  | No   |
Y
Yhz 已提交
661
| `params`     | The extra params of indexing method to query the collection. Please refer to - [Index params](#index_param) for detailed introduction of supported indexes.  | No   |
662 663 664 665 666

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
667
| `collection_name`     | Name of the collection.   | Yes   |
668 669 670 671 672 673 674 675 676 677 678 679 680 681

#### Response

| Status code    | Description |
|-----------------|---|
| 201     | Created |
| 400     | The request is incorrect. Refer to the error message for details. |
| 404     | The required resource does not exist. |

#### Example

##### Request

```shell
Y
Yhz 已提交
682
$ 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}}"
683 684 685 686 687 688 689 690
```

##### Response

```json
{"message":"OK","code":0}
```

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

Y
Yhz 已提交
693
Drops an index for a collection.
694 695 696 697 698

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
699
| Name     | `/collections/{collection_name}/indexes`  |
700 701 702 703 704 705 706 707
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   DELETE |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
708
| `collection_name`     | Name of the collection.   | Yes   |
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723

#### Response

| Status code    | Description |
|-----------------|---|
| 204     | Deleted |
| 400     | The request is incorrect. Refer to the error message for details. |
| 404     | Resource not available |


#### Example

##### Request

```shell
Y
Yhz 已提交
724
$ curl -X DELETE "http://127.0.0.1:19121/collections/test_collection/indexes" -H "accept: application/json"
725 726 727 728 729
```

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


Y
Yhz 已提交
730
### `/collections/{collection_name}/indexes` (OPTIONS)
731 732 733 734 735 736 737

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

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
738
| Name     | `/collections/{collection_name}/indexes`  |
739 740 741 742 743 744 745 746
| Header  | N/A  |
| Body    |   N/A |
| Method    |   OPTIONS |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
747
| `collection_name`     | Name of the collection.   | Yes   |
748 749 750 751 752 753

#### Example

##### Request

```shell
Y
Yhz 已提交
754
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection/indexes"
755 756
```

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

Y
Yhz 已提交
759
Gets all partitions in a collection starting from `offset` and ends with `page_size`.
760 761 762 763 764

#### Request

| Request Component     | Value  |
|-----------------|-----------|
Y
Yhz 已提交
765
| Name     | `/collections/{collection_name}/partitions`  |
766 767 768 769 770 771 772 773
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
774
| `collection_name`              |        Name of the collection.                  |   Yes     |
775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
| `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  |

#### Response

| 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. |

#### Example

##### Request

```shell
Y
Yhz 已提交
791
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/partitions?offset=0&page_size=3" -H "accept: application/json"
792 793 794 795 796
```

##### Response

```json
Y
Yhz 已提交
797
{"partitions":[{"partition_tag": "_default"},{"partition_tag":"test_tag"},{"partition_tag":"test_2"}], "count":10}
798 799
```

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

Y
Yhz 已提交
802
Creates a partition in a collection.
803 804 805 806 807

#### Request

| Request Component     | Value  |
|-----------------|-----------|
Y
Yhz 已提交
808
| Name     | `/collections/{collection_name}/partitions`  |
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   POST |

#### Response

| Status code    | Description |
|-----------------|---|
| 201     | Created |
| 400     | The request is incorrect. Refer to the error message for details. |
| 404     | The required resource does not exist. |

#### Example

##### Request

```shell
Y
Yhz 已提交
826
$ 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\"}"
827 828 829 830 831 832 833 834
```

##### Response

```json
{"message":"OK","code":0}
```

Y
Yhz 已提交
835
### `/collections/{collection_name}/partitions` (OPTIONS)
836 837 838 839 840 841 842

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

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
843
| Name     | `/collections/{collection_name}/partitions`  |
844 845 846 847 848 849 850 851
| Header  | N/A  |
| Body    |   N/A |
| Method    |   OPTIONS |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
852
| `collection_name`              |        Name of the collection.                  |   Yes     |
853 854 855 856 857 858 859


#### Example

##### Request

```shell
Y
Yhz 已提交
860
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection/partitions"
861 862
```

Y
Yhz 已提交
863
### `/collections/{collection_name}/partitions` (DELETE)
864 865 866 867 868

Deletes a partition by tag.

#### Request

Y
Yhz 已提交
869 870 871 872 873 874 875 876 877 878 879 880
<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>
881 882 883 884 885

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
886
| `collection_name`              |        Name of the collection that contains the partition.               |   Yes     |
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901
| `partition_tag` |    Tag of the partition to delete.      |   yes |

#### Response

| Status code    | Description |
|-----------------|---|
| 204     | Deleted |
| 400     | The request is incorrect. Refer to the error message for details. |
| 404     | The requested resource does not exist. |

#### Example

##### Request

```shell
Y
Yhz 已提交
902
$ curl -X DELETE "http://127.0.0.1:19121/collections/test_collection/partitions -H "accept: application/json" -d "{\"partition_tag\": \"tags_01\"}"
903 904 905 906 907
```

The deletion is successful if no information is returned.


Y
Yhz 已提交
908 909 910
### `/collections/{collection_name}/segments` (GET)

Gets all segments in a collection starting from `offset` and ends with `page_size`.
911 912 913 914

#### Request

| Request Component     | Value  |
Y
Yhz 已提交
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
|-----------------|-----------|
| Name     | `/collections/{collection_name}/segments`  |
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |

##### Query Parameters

| 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  |

#### Response

| Status code    | Description |
932
|-----------------|---|
Y
Yhz 已提交
933 934 935 936 937 938 939 940 941
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |
| 404     | The required resource does not exist. |

#### Example

##### Request

```shell
Y
Yhz 已提交
942
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/segments?offset=0&page_size=1" -H "accept: application/json"
Y
Yhz 已提交
943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
```

##### Response

```json
{
   "code":0,
   "message":"OK",
   "count":2,
   "segments":[
      {
         "count":10000,
         "index":"IVFFLAT",
         "partition_tag":"_default",
         "segment_name":"1583727470444700000",
         "size":5284922
      }
   ]
}
```

### `/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

| Request Component     | Value  |
|-----------------|-----------|
| Name     | `/collections/{collection_name}/segments`  |
| Header  | `accept: application/json`  |
974
| Body    |   N/A |
Y
Yhz 已提交
975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998
| Method    |   GET |

##### Query Parameters

| 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  |

#### Response

| 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. |

#### Example

##### Request

```shell
Y
Yhz 已提交
999
$ 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 已提交
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
```

##### Response

```json
{
   "code":0,
   "message":"OK",
   "count":2,
   "vectors": [
      {
Y
Yhz 已提交
1011 1012
         "vector": [0.1], 
         "id": "1583727470435045000"
Y
Yhz 已提交
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
      }
   ]
}
```

### `/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

| Request Component     | Value  |
|-----------------|-----------|
| Name     | `/collections/{collection_name}/segments`  |
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |
1030 1031 1032 1033 1034

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
| `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  |

#### Response

| 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. |
1047 1048 1049 1050 1051 1052

#### Example

##### Request

```shell
Y
Yhz 已提交
1053
$ 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 已提交
1054 1055 1056 1057 1058 1059
```

##### Response

```json
{
Y
Yhz 已提交
1060 1061
   "ids": ["1583727470435045000"],
   "count": 10000
Y
Yhz 已提交
1062
}
1063 1064 1065
```


Y
Yhz 已提交
1066 1067 1068
### `/collections/{collection_name}/vectors` (PUT)

1. Searches vectors in a collection.
1069 1070 1071 1072 1073 1074 1075 1076 1077

#### 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 已提交
1078 1079
  "search": {
      "topk": integer($int64),
Y
Yhz 已提交
1080
      "partition_tags": [string],
Y
Yhz 已提交
1081 1082 1083 1084 1085 1086
      "file_ids": [string],
      "vectors": [[number($float/$uint8)]]
      "params": {
          "nprobe": 16
      }
  }
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
}
</code></pre> </td></tr>
<tr><td>Method</td><td>PUT</td></tr>
</table>

##### Body Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
| `topk`     |  The top k most similar results of each query vector.   | Yes   |
Y
Yhz 已提交
1097
| `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 |
1098
| `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  |
Y
Yhz 已提交
1099
| `vectors`  |  Vectors to query.  |  Yes  |
Y
Yhz 已提交
1100
| `params`  |  Extra params for search. Please refer to [Search param](#index_param) to get more detail information.  |  Yes  |
1101

Y
Yhz 已提交
1102
> 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`.
1103 1104 1105 1106 1107 1108


##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
1109
| `collection_name` |  Name of the collection.      |   Yes     |
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123

#### Response

| 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. |

#### Example

##### Request

```shell
Y
Yhz 已提交
1124
$ curl -X PUT "http://127.0.0.1:19121/collections/test_collection/vectors" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"topk\":2,\"vectors\":[[0.1]], \"params\":{\"nprobe\":16}}"
1125 1126 1127 1128 1129 1130 1131 1132
```

##### Response

```json
{"num":1,"results":[[{"id":"1578989029645098000","distance":"0.000000"},{"id":"1578989029645098001","distance":"0.010000"}]]}
```

Y
Yhz 已提交
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
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

| Parameter  | Description  |  Required? |
|-----------------|---|------|
| ids | IDs of vectors. | Yes |


##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
| `collection_name` |  Name of the collection.      |   Yes     |

#### Response

| 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. |

#### Example

##### Request

```shell
Y
Yhz 已提交
1177
$ 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 已提交
1178 1179 1180 1181 1182 1183 1184 1185 1186
```

##### Response

```json
{"code": 0, "message": "success"}
```

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

Y
Yhz 已提交
1188
Inserts vectors to a collection.
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199

> 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 已提交
1200
  "partition_tag": string,
Y
Yhz 已提交
1201
  "vectors": [[number($float/$uint8)]],
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
  "ids": [integer($int64)]
}
</code></pre> </td></tr>
<tr><td>Method</td><td>POST</td></tr>
</table>

##### Body Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
1212
| `partition_tag`     |  Tag of the partition to insert vectors to.   | No   |
Y
Yhz 已提交
1213 1214
| `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 |
1215

Y
Yhz 已提交
1216
> 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`.
1217 1218 1219 1220 1221

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
1222
| `collection_name` |  Name of the collection.      |   Yes     |
1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236

#### Response

| Status code    | Description |
|-----------------|---|
| 201     | Created |
| 400     | The request is incorrect. Refer to the error message for details. |
| 404     | The required resource does not exist. |

#### Example

##### Request

```shell
Y
Yhz 已提交
1237
$ 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]]}"
1238 1239 1240 1241 1242 1243 1244 1245
```

##### Response

```json
{"ids":["1578989029645098000","1578989029645098001","1578989029645098002","1578989029645098003"]}
```

Y
Yhz 已提交
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
### `/collections/{collection_name}/vectors?id={vector_id}` (GET)

Obtain a vector to by ID.

#### Request

| Request Component     | Value  |
|-----------------|-----------|
| Name     | `/collections/{collection_name}/vectors`  |
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |

#### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
| `collection_name` |  Name of the collection.      |   Yes     |
| `vector_id` | Vector id.   | Yes   |


#### Response

| Status code    | Description |
|-----------------|---|
| 201     | Created |
| 400     | The request is incorrect. Refer to the error message for details. |
| 404     | The required resource does not exist. |

#### Example

##### Request

```shell
Y
Yhz 已提交
1280
$ curl -X POST "http://127.0.0.1:19121/collections/test_collection/vectors?id=1578989029645098000" -H "accept: application/json" -H "Content-Type: application/json"
Y
Yhz 已提交
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
```

##### Response

```json
{
   "vectors": [
      {
         "id": "1578989029645098000",
         "vector": [0.1]
      }
   ]
}
```


Y
Yhz 已提交
1297
### `/collections/{collection_name}/vectors` (OPTIONS)
1298 1299 1300 1301 1302 1303 1304

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

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
1305
| Name     | `/collections/{collection_name}/vectors`  |
1306 1307 1308 1309 1310 1311 1312 1313 1314
| Header  | N/A |
| Body    |   N/A |
| Method    |   OPTIONS |

#### Example

##### Request

```shell
Y
Yhz 已提交
1315
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection/vectors"
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348
```

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

Gets information about the Milvus server.

#### Request

| Request Component     | Value  |
|-----------------|---|
| Name     | `/system/{msg}`  |
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
| `msg` |  Type of the message to return. You can use `status` or `version`.     |   Yes     |

#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |

#### Example

##### Request

```shell
Y
Yhz 已提交
1349
$ curl -X GET "http://127.0.0.1:19121/system/version" -H "accept: application/json"
1350 1351 1352 1353 1354
```

##### Response

```json
valerianian's avatar
valerianian 已提交
1355
{"reply":"0.7.0"}
1356 1357
```

Y
Yhz 已提交
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
### `system/{op}` (PUT)

1. Flush collections

#### Request

<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>

#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |

#### Example

##### Request

```shell
Y
Yhz 已提交
1390
$ curl -X PUT "http://127.0.0.1:19121/system/task" -H "accept: application/json" -d "{\"flush\": {\"collection_names\": [\"test_collection\"]}}"
Y
Yhz 已提交
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428
```

##### Response

```json
{"code": 0, "message": "success"}
```

2. Compact collection

#### Request

<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>

#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |

#### Example

##### Request

```shell
Y
Yhz 已提交
1429
$ curl -X PUT "http://127.0.0.1:19121/system/task" -H "accept: application/json" -d "{\"compact\": {\"collection_name\": \"test_collection\"}}"
Y
Yhz 已提交
1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
```

##### Response

```json
{"code": 0, "message": "success"}
```

3. Load collection to memory

#### Request

<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>

#### Response

| Status code    | Description |
|-----------------|---|
| 200     | The request is successful.|
| 400     | The request is incorrect. Refer to the error message for details. |

#### Example

##### Request

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

##### Response

```json
{"code": 0, "message": "success"}
```

Y
Yhz 已提交
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
## Index param

For each index type, it has specific index param and searach param.

<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>
</table>

You can find more details about parameters above [here](https://github.com/yamasite/docs/blob/v0.7.0/site/zh-CN/guides/index.md)


1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544
## Error Codes

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

| 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 |
Y
Yhz 已提交
1545 1546 1547 1548 1549 1550 1551
UNKNOWN_PATH | 32 |
QUERY_PARAM_LOSS | 33 |
BODY_FIELD_LOSS | 34 |
ILLEGAL_BODY | 35 |
BODY_PARSE_FAIL | 36 |
ILLEGAL_QUERY_PARAM | 37 |