README.md 55.2 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

valerianian's avatar
valerianian 已提交
425 426 427 428 429 430
| 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. Currently supported metrics include `L2` (Euclidean distance), `IP` (Inner Product), `HAMMING` (Hamming distance), `JACCARD` (Jaccard distance), and `TANIMOTO` (Tanomoto distance). | No        |
431 432 433

#### Response

valerianian's avatar
valerianian 已提交
434 435 436 437
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 201         | Created                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
438 439 440 441 442 443

#### Example

##### Request

```shell
Y
Yhz 已提交
444
$ 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\"}"
445 446 447 448 449
```

##### Response

```json
valerianian's avatar
valerianian 已提交
450
{ "message": "OK", "code": 0 }
451 452
```

Y
Yhz 已提交
453
### `/collections` (OPTIONS)
454 455 456 457 458

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

#### Request

valerianian's avatar
valerianian 已提交
459 460 461 462 463 464
| Request Component | Value          |
| ----------------- | -------------- |
| Name              | `/collections` |
| Header            | N/A            |
| Body              | N/A            |
| Method            | OPTIONS        |
465 466 467 468 469 470

#### Example

##### Request

```shell
Y
Yhz 已提交
471
$ curl -X OPTIONS "http://127.0.0.1:19121/collections"
472 473
```

Y
Yhz 已提交
474
### `/collections/{collection_name}` (GET)
475

Y
Yhz 已提交
476
Gets all information about a collection by name.
477 478 479

#### Request

valerianian's avatar
valerianian 已提交
480 481 482 483 484 485
| Request Component | Value                            |
| ----------------- | -------------------------------- |
| Name              | `/collections/{collection_name}` |
| Header            | `accept: application/json`       |
| Body              | N/A                              |
| Method            | GET                              |
486 487 488

##### Query Parameters

valerianian's avatar
valerianian 已提交
489 490 491 492
| 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        |
493 494 495

#### Response

valerianian's avatar
valerianian 已提交
496 497 498 499 500
| 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.                             |
501 502 503 504 505 506

#### Example

##### Request

```shell
Y
Yhz 已提交
507
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection" -H "accept: application/json"
508 509 510 511 512
```

##### Response

```json
valerianian's avatar
valerianian 已提交
513 514 515 516 517 518 519
{
  "collection_name": "test_collection",
  "dimension": 1,
  "index_file_size": 10,
  "metric_type": "L2",
  "count": 0,
  "index": "FLAT",
Y
Yhz 已提交
520
  "index_params": {"nprobe":  16384}
valerianian's avatar
valerianian 已提交
521
}
522 523
```

Y
Yhz 已提交
524 525 526
##### Request

```shell
Y
Yhz 已提交
527
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection?info=stat" -H "accept: application/json"
Y
Yhz 已提交
528 529 530 531 532 533
```

##### Response

```json
{
valerianian's avatar
valerianian 已提交
534 535 536 537 538 539 540 541
  "count": 150000,
  "partitions_stat": [
    {
      "count": 1000,
      "partition_tag": "_default",
      "segments_stat": [
        {
          "count": 1000,
Y
Yhz 已提交
542
          "index": "FLAT",
valerianian's avatar
valerianian 已提交
543 544 545 546 547 548
          "segment_name": "1583727170217439000",
          "size": 5284922
        }
      ]
    }
  ]
Y
Yhz 已提交
549 550 551
}
```

Y
Yhz 已提交
552
### `/collections/{collection_name}` (DELETE)
553

Y
Yhz 已提交
554
Drops a collection by name.
555 556 557

#### Request

valerianian's avatar
valerianian 已提交
558 559 560 561 562 563
| Request Component | Value                            |
| ----------------- | -------------------------------- |
| Name              | `/collections/{collection_name}` |
| Header            | `accept: application/json`       |
| Body              | N/A                              |
| Method            | DELETE                           |
564 565 566

##### Query Parameters

valerianian's avatar
valerianian 已提交
567 568 569
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
570 571 572

#### Response

valerianian's avatar
valerianian 已提交
573 574 575 576 577
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 204         | Deleted                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
578 579 580 581 582 583

#### Example

##### Request

```shell
Y
Yhz 已提交
584
$ curl -X DELETE "http://127.0.0.1:19121/collections/test_collection" -H "accept: application/json"
585 586 587 588
```

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

Y
Yhz 已提交
589
### `/collections/{collection_name}` (OPTIONS)
590 591 592 593 594

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

#### Request

valerianian's avatar
valerianian 已提交
595 596 597 598 599 600
| Request Component | Value                            |
| ----------------- | -------------------------------- |
| Name              | `/collections/{collection_name}` |
| Header            | N/A                              |
| Body              | N/A                              |
| Method            | OPTIONS                          |
601 602 603

#### Query Parameters

valerianian's avatar
valerianian 已提交
604 605 606
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
607 608 609 610 611 612

#### Example

##### Request

```shell
Y
Yhz 已提交
613
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection"
614 615
```

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

Y
Yhz 已提交
618
Gets the index type and nlist of a collection.
619 620 621

#### Request

valerianian's avatar
valerianian 已提交
622 623 624 625 626 627
| Request Component | Value                                    |
| ----------------- | ---------------------------------------- |
| Name              | `/collections/{collection_name}/indexes` |
| Header            | `accept: application/json`               |
| Body              | N/A                                      |
| Method            | GET                                      |
628 629 630

##### Query Parameters

valerianian's avatar
valerianian 已提交
631 632 633
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
634 635 636

#### Response

valerianian's avatar
valerianian 已提交
637 638 639 640 641
| 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.                             |
642 643 644 645 646 647

#### Example

##### Request

```shell
Y
Yhz 已提交
648
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/indexes" -H "accept: application/json"
649 650 651 652 653
```

##### Response

```json
valerianian's avatar
valerianian 已提交
654
{ "index_type": "FLAT", "params": { "nlist": 4096 } }
655 656
```

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

Y
Yhz 已提交
659
Updates the index type and nlist of a collection.
660 661 662 663 664 665 666 667 668 669

#### 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 已提交
670 671 672
  "params": {
      ......
  }
673 674 675 676 677 678 679 680
}
</code></pre> </td></tr>
<tr><td>Method</td><td>POST</td></tr>

</table>

##### Body Parameters

valerianian's avatar
valerianian 已提交
681 682 683
| Parameter    | Description                                                                                                                                                                                              | Required? |
| ------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- |
| `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 已提交
684
| `params`     | The extra params of indexing method to query the collection. Please refer to `Index params`(see below) for detailed introduction of supported indexes.                                              | No        |
685 686 687

##### Query Parameters

valerianian's avatar
valerianian 已提交
688 689 690
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
691 692 693

#### Response

valerianian's avatar
valerianian 已提交
694 695 696 697 698
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 201         | Created                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
699 700 701 702 703 704

#### Example

##### Request

```shell
Y
Yhz 已提交
705
$ 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}}"
706 707 708 709 710
```

##### Response

```json
valerianian's avatar
valerianian 已提交
711
{ "message": "OK", "code": 0 }
712 713
```

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

Y
Yhz 已提交
716
Drops an index for a collection.
717 718 719

#### Request

valerianian's avatar
valerianian 已提交
720 721 722 723 724 725
| Request Component | Value                                    |
| ----------------- | ---------------------------------------- |
| Name              | `/collections/{collection_name}/indexes` |
| Header            | `accept: application/json`               |
| Body              | N/A                                      |
| Method            | DELETE                                   |
726 727 728

##### Query Parameters

valerianian's avatar
valerianian 已提交
729 730 731
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
732 733 734

#### Response

valerianian's avatar
valerianian 已提交
735 736 737 738 739
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 204         | Deleted                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | Resource not available                                            |
740 741 742 743 744 745

#### Example

##### Request

```shell
Y
Yhz 已提交
746
$ curl -X DELETE "http://127.0.0.1:19121/collections/test_collection/indexes" -H "accept: application/json"
747 748 749 750
```

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

Y
Yhz 已提交
751
### `/collections/{collection_name}/indexes` (OPTIONS)
752 753 754 755 756

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

#### Request

valerianian's avatar
valerianian 已提交
757 758 759 760 761 762
| Request Component | Value                                    |
| ----------------- | ---------------------------------------- |
| Name              | `/collections/{collection_name}/indexes` |
| Header            | N/A                                      |
| Body              | N/A                                      |
| Method            | OPTIONS                                  |
763 764 765

##### Query Parameters

valerianian's avatar
valerianian 已提交
766 767 768
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
769 770 771 772 773 774

#### Example

##### Request

```shell
Y
Yhz 已提交
775
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection/indexes"
776 777
```

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

Y
Yhz 已提交
780
Gets all partitions in a collection starting from `offset` and ends with `page_size`.
781 782 783

#### Request

valerianian's avatar
valerianian 已提交
784 785 786 787 788 789
| Request Component | Value                                       |
| ----------------- | ------------------------------------------- |
| Name              | `/collections/{collection_name}/partitions` |
| Header            | `accept: application/json`                  |
| Body              | N/A                                         |
| Method            | GET                                         |
790 791 792

##### Query Parameters

valerianian's avatar
valerianian 已提交
793 794 795 796 797
| 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        |
798 799 800

#### Response

valerianian's avatar
valerianian 已提交
801 802 803 804 805
| 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.                             |
806 807 808 809 810 811

#### Example

##### Request

```shell
Y
Yhz 已提交
812
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/partitions?offset=0&page_size=3" -H "accept: application/json"
813 814 815 816 817
```

##### Response

```json
valerianian's avatar
valerianian 已提交
818 819 820 821 822 823 824 825
{
  "partitions": [
    { "partition_tag": "_default" },
    { "partition_tag": "test_tag" },
    { "partition_tag": "test_2" }
  ],
  "count": 10
}
826 827
```

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

Y
Yhz 已提交
830
Creates a partition in a collection.
831 832 833

#### Request

valerianian's avatar
valerianian 已提交
834 835 836 837 838 839
| Request Component | Value                                       |
| ----------------- | ------------------------------------------- |
| Name              | `/collections/{collection_name}/partitions` |
| Header            | `accept: application/json`                  |
| Body              | N/A                                         |
| Method            | POST                                        |
840 841 842

#### Response

valerianian's avatar
valerianian 已提交
843 844 845 846 847
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 201         | Created                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
848 849 850 851 852 853

#### Example

##### Request

```shell
Y
Yhz 已提交
854
$ 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\"}"
855 856 857 858 859
```

##### Response

```json
valerianian's avatar
valerianian 已提交
860
{ "message": "OK", "code": 0 }
861 862
```

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

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

#### Request

valerianian's avatar
valerianian 已提交
869 870 871 872 873 874
| Request Component | Value                                       |
| ----------------- | ------------------------------------------- |
| Name              | `/collections/{collection_name}/partitions` |
| Header            | N/A                                         |
| Body              | N/A                                         |
| Method            | OPTIONS                                     |
875 876 877

##### Query Parameters

valerianian's avatar
valerianian 已提交
878 879 880
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
881 882 883 884 885 886

#### Example

##### Request

```shell
Y
Yhz 已提交
887
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection/partitions"
888 889
```

Y
Yhz 已提交
890
### `/collections/{collection_name}/partitions` (DELETE)
891 892 893 894 895

Deletes a partition by tag.

#### Request

Y
Yhz 已提交
896 897 898 899 900 901 902 903 904 905 906 907
<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>
908 909 910

##### Query Parameters

valerianian's avatar
valerianian 已提交
911 912 913 914
| Parameter         | Description                                         | Required? |
| ----------------- | --------------------------------------------------- | --------- |
| `collection_name` | Name of the collection that contains the partition. | Yes       |
| `partition_tag`   | Tag of the partition to delete.                     | yes       |
915 916 917

#### Response

valerianian's avatar
valerianian 已提交
918 919 920 921 922
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 204         | Deleted                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The requested resource does not exist.                            |
923 924 925 926 927 928

#### Example

##### Request

```shell
Y
Yhz 已提交
929
$ curl -X DELETE "http://127.0.0.1:19121/collections/test_collection/partitions -H "accept: application/json" -d "{\"partition_tag\": \"tags_01\"}"
930 931 932 933
```

The deletion is successful if no information is returned.

Y
Yhz 已提交
934 935 936
### `/collections/{collection_name}/segments` (GET)

Gets all segments in a collection starting from `offset` and ends with `page_size`.
937 938 939

#### Request

valerianian's avatar
valerianian 已提交
940 941 942 943 944 945
| Request Component | Value                                     |
| ----------------- | ----------------------------------------- |
| Name              | `/collections/{collection_name}/segments` |
| Header            | `accept: application/json`                |
| Body              | N/A                                       |
| Method            | GET                                       |
Y
Yhz 已提交
946 947 948

##### Query Parameters

valerianian's avatar
valerianian 已提交
949 950 951 952 953
| 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 已提交
954 955 956

#### Response

valerianian's avatar
valerianian 已提交
957 958 959 960 961
| 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 已提交
962 963 964 965 966 967

#### Example

##### Request

```shell
Y
Yhz 已提交
968
$ curl -X GET "http://127.0.0.1:19121/collections/test_collection/segments?offset=0&page_size=1" -H "accept: application/json"
Y
Yhz 已提交
969 970 971 972 973 974
```

##### Response

```json
{
valerianian's avatar
valerianian 已提交
975 976 977 978 979 980 981 982 983 984 985 986
  "code": 0,
  "message": "OK",
  "count": 2,
  "segments": [
    {
      "count": 10000,
      "index": "IVFFLAT",
      "partition_tag": "_default",
      "segment_name": "1583727470444700000",
      "size": 5284922
    }
  ]
Y
Yhz 已提交
987 988 989 990 991 992 993 994 995
}
```

### `/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 已提交
996 997 998 999 1000 1001
| Request Component | Value                                     |
| ----------------- | ----------------------------------------- |
| Name              | `/collections/{collection_name}/segments` |
| Header            | `accept: application/json`                |
| Body              | N/A                                       |
| Method            | GET                                       |
Y
Yhz 已提交
1002 1003 1004

##### Query Parameters

valerianian's avatar
valerianian 已提交
1005 1006 1007 1008 1009 1010
| 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 已提交
1011 1012 1013

#### Response

valerianian's avatar
valerianian 已提交
1014 1015 1016 1017 1018
| 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 已提交
1019 1020 1021 1022 1023 1024

#### Example

##### Request

```shell
Y
Yhz 已提交
1025
$ 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 已提交
1026 1027 1028 1029 1030 1031
```

##### Response

```json
{
valerianian's avatar
valerianian 已提交
1032 1033 1034 1035 1036 1037 1038 1039 1040
  "code": 0,
  "message": "OK",
  "count": 2,
  "vectors": [
    {
      "vector": [0.1],
      "id": "1583727470435045000"
    }
  ]
Y
Yhz 已提交
1041 1042 1043 1044 1045 1046 1047 1048 1049
}
```

### `/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 已提交
1050 1051 1052 1053 1054 1055
| Request Component | Value                                     |
| ----------------- | ----------------------------------------- |
| Name              | `/collections/{collection_name}/segments` |
| Header            | `accept: application/json`                |
| Body              | N/A                                       |
| Method            | GET                                       |
1056 1057 1058

##### Query Parameters

valerianian's avatar
valerianian 已提交
1059 1060 1061 1062 1063 1064
| 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 已提交
1065 1066 1067

#### Response

valerianian's avatar
valerianian 已提交
1068 1069 1070 1071 1072
| 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.                             |
1073 1074 1075 1076 1077 1078

#### Example

##### Request

```shell
Y
Yhz 已提交
1079
$ 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 已提交
1080 1081 1082 1083 1084 1085
```

##### Response

```json
{
valerianian's avatar
valerianian 已提交
1086 1087
  "ids": ["1583727470435045000"],
  "count": 10000
Y
Yhz 已提交
1088
}
1089 1090
```

Y
Yhz 已提交
1091 1092 1093
### `/collections/{collection_name}/vectors` (PUT)

1. Searches vectors in a collection.
1094 1095 1096 1097 1098 1099 1100 1101 1102

#### 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 已提交
1103 1104
  "search": {
      "topk": integer($int64),
Y
Yhz 已提交
1105
      "partition_tags": [string],
Y
Yhz 已提交
1106 1107 1108 1109 1110 1111
      "file_ids": [string],
      "vectors": [[number($float/$uint8)]]
      "params": {
          "nprobe": 16
      }
  }
1112 1113 1114 1115 1116 1117 1118
}
</code></pre> </td></tr>
<tr><td>Method</td><td>PUT</td></tr>
</table>

##### Body Parameters

valerianian's avatar
valerianian 已提交
1119 1120 1121 1122 1123 1124
| 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 已提交
1125
| `params`   | Extra params for search. Please refer to `Search param`(see below) to get more detail information.                                                                                        | Yes       |
1126

Y
Yhz 已提交
1127
> 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`.
1128 1129 1130

##### Query Parameters

valerianian's avatar
valerianian 已提交
1131 1132 1133
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
1134 1135 1136

#### Response

valerianian's avatar
valerianian 已提交
1137 1138 1139 1140 1141
| 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.                             |
1142 1143 1144 1145 1146 1147

#### Example

##### Request

```shell
Y
Yhz 已提交
1148
$ 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}}"
1149 1150 1151 1152 1153
```

##### Response

```json
valerianian's avatar
valerianian 已提交
1154 1155 1156 1157 1158 1159 1160 1161 1162
{
  "num": 1,
  "results": [
    [
      { "id": "1578989029645098000", "distance": "0.000000" },
      { "id": "1578989029645098001", "distance": "0.010000" }
    ]
  ]
}
1163 1164
```

Y
Yhz 已提交
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
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 已提交
1185 1186 1187
| Parameter | Description     | Required? |
| --------- | --------------- | --------- |
| ids       | IDs of vectors. | Yes       |
Y
Yhz 已提交
1188 1189 1190

##### Query Parameters

valerianian's avatar
valerianian 已提交
1191 1192 1193
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
Y
Yhz 已提交
1194 1195 1196

#### Response

valerianian's avatar
valerianian 已提交
1197 1198 1199 1200 1201
| 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 已提交
1202 1203 1204 1205 1206 1207

#### Example

##### Request

```shell
Y
Yhz 已提交
1208
$ 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 已提交
1209 1210 1211 1212 1213
```

##### Response

```json
valerianian's avatar
valerianian 已提交
1214
{ "code": 0, "message": "success" }
Y
Yhz 已提交
1215 1216 1217
```

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

Y
Yhz 已提交
1219
Inserts vectors to a collection.
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230

> 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 已提交
1231
  "partition_tag": string,
Y
Yhz 已提交
1232
  "vectors": [[number($float/$uint8)]],
1233 1234 1235 1236 1237 1238 1239 1240
  "ids": [integer($int64)]
}
</code></pre> </td></tr>
<tr><td>Method</td><td>POST</td></tr>
</table>

##### Body Parameters

valerianian's avatar
valerianian 已提交
1241 1242 1243 1244 1245
| 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        |
1246

Y
Yhz 已提交
1247
> 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`.
1248 1249 1250

##### Query Parameters

valerianian's avatar
valerianian 已提交
1251 1252 1253
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
1254 1255 1256

#### Response

valerianian's avatar
valerianian 已提交
1257 1258 1259 1260 1261
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 201         | Created                                                           |
| 400         | The request is incorrect. Refer to the error message for details. |
| 404         | The required resource does not exist.                             |
1262 1263 1264 1265 1266 1267

#### Example

##### Request

```shell
Y
Yhz 已提交
1268
$ 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]]}"
1269 1270 1271 1272 1273
```

##### Response

```json
valerianian's avatar
valerianian 已提交
1274 1275 1276 1277 1278 1279 1280 1281
{
  "ids": [
    "1578989029645098000",
    "1578989029645098001",
    "1578989029645098002",
    "1578989029645098003"
  ]
}
1282 1283
```

Y
Yhz 已提交
1284 1285 1286 1287 1288 1289
### `/collections/{collection_name}/vectors?id={vector_id}` (GET)

Obtain a vector to by ID.

#### Request

valerianian's avatar
valerianian 已提交
1290 1291 1292 1293 1294 1295
| Request Component | Value                                    |
| ----------------- | ---------------------------------------- |
| Name              | `/collections/{collection_name}/vectors` |
| Header            | `accept: application/json`               |
| Body              | N/A                                      |
| Method            | GET                                      |
Y
Yhz 已提交
1296 1297 1298

#### Query Parameters

valerianian's avatar
valerianian 已提交
1299 1300 1301 1302
| Parameter         | Description             | Required? |
| ----------------- | ----------------------- | --------- |
| `collection_name` | Name of the collection. | Yes       |
| `vector_id`       | Vector id.              | Yes       |
Y
Yhz 已提交
1303 1304 1305

#### Response

valerianian's avatar
valerianian 已提交
1306 1307 1308 1309 1310
| 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 已提交
1311 1312 1313 1314 1315 1316

#### Example

##### Request

```shell
Y
Yhz 已提交
1317
$ 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 已提交
1318 1319 1320 1321 1322 1323
```

##### Response

```json
{
valerianian's avatar
valerianian 已提交
1324 1325 1326 1327 1328 1329
  "vectors": [
    {
      "id": "1578989029645098000",
      "vector": [0.1]
    }
  ]
Y
Yhz 已提交
1330 1331 1332
}
```

Y
Yhz 已提交
1333
### `/collections/{collection_name}/vectors` (OPTIONS)
1334 1335 1336 1337 1338

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

#### Request

valerianian's avatar
valerianian 已提交
1339 1340 1341 1342 1343 1344
| Request Component | Value                                    |
| ----------------- | ---------------------------------------- |
| Name              | `/collections/{collection_name}/vectors` |
| Header            | N/A                                      |
| Body              | N/A                                      |
| Method            | OPTIONS                                  |
1345 1346 1347 1348 1349 1350

#### Example

##### Request

```shell
Y
Yhz 已提交
1351
$ curl -X OPTIONS "http://127.0.0.1:19121/collections/test_collection/vectors"
1352 1353 1354 1355 1356 1357 1358 1359
```

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

Gets information about the Milvus server.

#### Request

valerianian's avatar
valerianian 已提交
1360 1361 1362 1363 1364 1365
| Request Component | Value                      |
| ----------------- | -------------------------- |
| Name              | `/system/{msg}`            |
| Header            | `accept: application/json` |
| Body              | N/A                        |
| Method            | GET                        |
1366 1367 1368

##### Query Parameters

valerianian's avatar
valerianian 已提交
1369 1370 1371
| Parameter | Description                                                       | Required? |
| --------- | ----------------------------------------------------------------- | --------- |
| `msg`     | Type of the message to return. You can use `status` or `version`. | Yes       |
1372 1373 1374

#### Response

valerianian's avatar
valerianian 已提交
1375 1376 1377 1378
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
1379 1380 1381 1382 1383 1384

#### Example

##### Request

```shell
Y
Yhz 已提交
1385
$ curl -X GET "http://127.0.0.1:19121/system/version" -H "accept: application/json"
1386 1387 1388 1389 1390
```

##### Response

```json
valerianian's avatar
valerianian 已提交
1391
{ "reply": "0.7.0" }
1392 1393
```

Y
Yhz 已提交
1394 1395
### `system/{op}` (PUT)

valerianian's avatar
valerianian 已提交
1396
#### Flush a collection
Y
Yhz 已提交
1397

valerianian's avatar
valerianian 已提交
1398
##### Request
Y
Yhz 已提交
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413

<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 已提交
1414
##### Response
Y
Yhz 已提交
1415

valerianian's avatar
valerianian 已提交
1416 1417 1418 1419
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
Y
Yhz 已提交
1420

valerianian's avatar
valerianian 已提交
1421
##### Example
Y
Yhz 已提交
1422

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

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

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

```json
valerianian's avatar
valerianian 已提交
1432
{ "code": 0, "message": "success" }
Y
Yhz 已提交
1433 1434
```

valerianian's avatar
valerianian 已提交
1435
#### Compact segments in a collection
Y
Yhz 已提交
1436

valerianian's avatar
valerianian 已提交
1437
##### Request
Y
Yhz 已提交
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452

<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 已提交
1453
##### Response
Y
Yhz 已提交
1454

valerianian's avatar
valerianian 已提交
1455 1456 1457 1458
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
Y
Yhz 已提交
1459

valerianian's avatar
valerianian 已提交
1460
##### Example
Y
Yhz 已提交
1461

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

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

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

```json
valerianian's avatar
valerianian 已提交
1471
{ "code": 0, "message": "success" }
Y
Yhz 已提交
1472 1473
```

valerianian's avatar
valerianian 已提交
1474
#### Load a collection to memory
Y
Yhz 已提交
1475

valerianian's avatar
valerianian 已提交
1476
##### Request
Y
Yhz 已提交
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491

<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 已提交
1492
##### Response
Y
Yhz 已提交
1493

valerianian's avatar
valerianian 已提交
1494 1495 1496 1497
| Status code | Description                                                       |
| ----------- | ----------------------------------------------------------------- |
| 200         | The request is successful.                                        |
| 400         | The request is incorrect. Refer to the error message for details. |
Y
Yhz 已提交
1498

valerianian's avatar
valerianian 已提交
1499
##### Example
Y
Yhz 已提交
1500

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

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

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

```json
valerianian's avatar
valerianian 已提交
1510
{ "code": 0, "message": "success" }
Y
Yhz 已提交
1511 1512
```

valerianian's avatar
valerianian 已提交
1513
## Index parameters
Y
Yhz 已提交
1514

valerianian's avatar
valerianian 已提交
1515
For each index type, the RESTful API has specific index parameters and search parameters.
Y
Yhz 已提交
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 1545

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

Y
Yhz 已提交
1546
For detailed information about the parameters above, refer to [Index Types](https://milvus.io/docs/v0.7.0/reference/index.md)
Y
Yhz 已提交
1547

1548 1549 1550 1551
## 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 已提交
1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585
| 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   |