README.md 40.4 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 72 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 107 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 141 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 195 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 224 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 254 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 309 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 338 339 340
- [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
$ curl -X GET "http://192.168.1.65:19121/state" -H "accept: application/json"
```

##### 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
$ curl -X GET "http://192.168.1.65:19121/devices" -H "accept: application/json"
```

##### 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
$ curl -X GET "http://192.168.1.65:19121/config/advanced" -H "accept: application/json"
```

##### 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
$ curl -X PUT "http://192.168.1.65: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}"
```

##### 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
$ curl -X OPTIONS "http://192.168.1.65:19121/config/advanced"
```

### `/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
$ curl -X GET "http://192.168.1.65:19121/config/gpu_resources" -H "accept: application/json"
```

##### 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
$ curl -X PUT "http://192.168.1.65: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\"]}"
```

##### 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
$ curl -X OPTIONS "http://192.168.1.65:19121/config/gpu_resources"
```

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://192.168.1.65: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://192.168.1.65: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://192.168.1.65: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://192.168.1.65: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","nlist":16384}
501 502
```

Y
Yhz 已提交
503
### `/collections/{collection_name}` (DELETE)
504

Y
Yhz 已提交
505
Drops a collection by name.
506 507 508 509 510

#### Request

| Request Component     | Value  |
|-----------------|-----|
Y
Yhz 已提交
511
| Name     | `/collections/{collection_name}`  |
512 513 514 515 516 517 518 519
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   DELETE |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
520
| `collection_name`     | Name of the collection.   | Yes   |
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535

#### 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 已提交
536
$ curl -X DELETE "http://192.168.1.65:19121/collections/test_collection" -H "accept: application/json"
537 538 539 540
```

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

Y
Yhz 已提交
541
### `/collections/{collection_name}` (OPTIONS)
542 543 544 545 546 547 548

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

#### Request

| Request Component     | Value  |
|-----------------|-----|
Y
Yhz 已提交
549
| Name     | `/collections/{collection_name}`  |
550 551 552 553 554 555 556 557
| Header  | N/A  |
| Body    |   N/A |
| Method    |   OPTIONS |

#### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
558
| `collection_name`     | Name of the collection.   | Yes   |
559 560 561 562 563 564 565


#### Example

##### Request

```shell
Y
Yhz 已提交
566
$ curl -X OPTIONS "http://192.168.1.65:19121/collections/test_collection"
567 568
```

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

Y
Yhz 已提交
571
Gets the index type and nlist of a collection.
572 573 574 575 576

#### Request

| Request Component     | Value  |
|-----------------|-----|
Y
Yhz 已提交
577
| Name     | `/collections/{collection_name}/indexes`  |
578 579 580 581 582 583 584 585
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
586
| `collection_name`     | Name of the collection.   | Yes   |
587 588 589 590 591 592 593 594 595 596 597 598 599 600

#### 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 已提交
601
$ curl -X GET "http://192.168.1.65:19121/collections/test_collection/indexes" -H "accept: application/json"
602 603 604 605 606 607 608 609 610
```

##### Response


```json
{"index_type":"FLAT","nlist":16384}
```

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

Y
Yhz 已提交
613
Updates the index type and nlist of a collection.
614 615 616 617 618 619 620 621 622 623

#### 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 已提交
624 625 626
  "params": {
      ......
  }
627 628 629 630 631 632 633 634 635 636
}
</code></pre> </td></tr>
<tr><td>Method</td><td>POST</td></tr>

</table>

##### Body Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
637
| `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 已提交
638
| `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   |
639 640 641 642 643

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
644
| `collection_name`     | Name of the collection.   | Yes   |
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666

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

#### 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 已提交
667
$ curl -X POST "http://192.168.1.65:19121/collections/test_collection/indexes" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"index_type\":\"FLAT\",\"nlist\":16384}"
668 669 670 671 672 673 674 675
```

##### Response

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

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

Y
Yhz 已提交
678
Drops an index for a collection.
679 680 681 682 683

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
684
| Name     | `/collections/{collection_name}/indexes`  |
685 686 687 688 689 690 691 692
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   DELETE |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
693
| `collection_name`     | Name of the collection.   | Yes   |
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708

#### 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 已提交
709
$ curl -X DELETE "http://192.168.1.65:19121/collections/test_collection/indexes" -H "accept: application/json"
710 711 712 713 714
```

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


Y
Yhz 已提交
715
### `/collections/{collection_name}/indexes` (OPTIONS)
716 717 718 719 720 721 722

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

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
723
| Name     | `/collections/{collection_name}/indexes`  |
724 725 726 727 728 729 730 731
| Header  | N/A  |
| Body    |   N/A |
| Method    |   OPTIONS |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
732
| `collection_name`     | Name of the collection.   | Yes   |
733 734 735 736 737 738

#### Example

##### Request

```shell
Y
Yhz 已提交
739
$ curl -X OPTIONS "http://192.168.1.65:19121/collections/test_collection/indexes"
740 741
```

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

Y
Yhz 已提交
744
Gets all partitions in a collection starting from `offset` and ends with `page_size`.
745 746 747 748 749

#### Request

| Request Component     | Value  |
|-----------------|-----------|
Y
Yhz 已提交
750
| Name     | `/collections/{collection_name}/partitions`  |
751 752 753 754 755 756 757 758
| Header  | `accept: application/json`  |
| Body    |   N/A |
| Method    |   GET |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
759
| `collection_name`              |        Name of the collection.                  |   Yes     |
760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
| `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 已提交
776
$ curl -X GET "http://192.168.1.65:19121/collections/test_collection/partitions?offset=0&page_size=3" -H "accept: application/json"
777 778 779 780 781 782 783 784
```

##### Response

```json
{"partitions":[{"partition_name":"partition_1","partition_tag":"test_tag"},{"partition_name":"partition_2","partition_tag":"test_2"},{"partition_name":"partition_3","partition_tag":"test_3"}]}
```

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

Y
Yhz 已提交
787
Creates a partition in a collection.
788 789 790 791 792

#### Request

| Request Component     | Value  |
|-----------------|-----------|
Y
Yhz 已提交
793
| Name     | `/collections/{collection_name}/partitions`  |
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
| 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 已提交
811
$ curl -X POST "http://192.168.1.65:19121/collections/test_collection/partitions" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"partition_name\": \"partition_1\",\"partition_tag\": \"test\"}"
812 813 814 815 816 817 818 819
```

##### Response

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

Y
Yhz 已提交
820
### `/collections/{collection_name}/partitions` (OPTIONS)
821 822 823 824 825 826 827

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

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
828
| Name     | `/collections/{collection_name}/partitions`  |
829 830 831 832 833 834 835 836
| Header  | N/A  |
| Body    |   N/A |
| Method    |   OPTIONS |

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
837
| `collection_name`              |        Name of the collection.                  |   Yes     |
838 839 840 841 842 843 844


#### Example

##### Request

```shell
Y
Yhz 已提交
845
$ curl -X OPTIONS "http://192.168.1.65:19121/collections/test_collection/partitions"
846 847
```

Y
Yhz 已提交
848
### `/collections/{collection_name}/partitions` (DELETE)
849 850 851 852 853

Deletes a partition by tag.

#### Request

Y
Yhz 已提交
854 855 856 857 858 859 860 861 862 863 864 865
<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>
866 867 868 869 870

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
871
| `collection_name`              |        Name of the collection that contains the partition.               |   Yes     |
872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
| `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 已提交
887
$ curl -X DELETE "http://192.168.1.65:19121/collections/test_collection/partitions/tags_01" -H "accept: application/json"
888 889 890 891 892
```

The deletion is successful if no information is returned.


Y
Yhz 已提交
893 894 895
### `/collections/{collection_name}/segments` (GET)

Gets all segments in a collection starting from `offset` and ends with `page_size`.
896 897 898 899

#### Request

| Request Component     | Value  |
Y
Yhz 已提交
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
|-----------------|-----------|
| 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 |
917
|-----------------|---|
Y
Yhz 已提交
918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958
| 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
$ curl -X GET "http://192.168.1.65:19121/collections/test_collection/segments?offset=0&page_size=3" -H "accept: application/json"
```

##### 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`  |
959
| Body    |   N/A |
Y
Yhz 已提交
960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995
| 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
$ curl -X GET "http://192.168.1.65:19121/collections/test_collection/segments/1583727470444700000/vectors?offset=0&page_size=1" -H "accept: application/json"
```

##### Response

```json
{
   "code":0,
   "message":"OK",
   "count":2,
   "vectors": [
      {
Y
Yhz 已提交
996 997
         "vector": [0.1], 
         "id": "1583727470435045000"
Y
Yhz 已提交
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
      }
   ]
}
```

### `/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 |
1015 1016 1017 1018 1019

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
| `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. |
1032 1033 1034 1035 1036 1037

#### Example

##### Request

```shell
Y
Yhz 已提交
1038 1039 1040 1041 1042 1043 1044
$ curl -X GET "http://192.168.1.65:19121/collections/test_collection/segments/1583727470444700000/ids?offset=0&page_size=1" -H "accept: application/json"
```

##### Response

```json
{
Y
Yhz 已提交
1045 1046
   "ids": ["1583727470435045000"],
   "count": 10000
Y
Yhz 已提交
1047
}
1048 1049 1050
```


Y
Yhz 已提交
1051 1052 1053
### `/collections/{collection_name}/vectors` (PUT)

1. Searches vectors in a collection.
1054 1055 1056 1057 1058 1059 1060 1061 1062

#### 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 已提交
1063 1064
  "search": {
      "topk": integer($int64),
Y
Yhz 已提交
1065
      "partition_tags": [string],
Y
Yhz 已提交
1066 1067 1068 1069 1070 1071
      "file_ids": [string],
      "vectors": [[number($float/$uint8)]]
      "params": {
          "nprobe": 16
      }
  }
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
}
</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 已提交
1082
| `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 |
1083
| `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 已提交
1084
| `vectors`  |  Vectors to query.  |  Yes  |
Y
Yhz 已提交
1085
| `params`  |  Extra params for search. Please refer to [Search param](#index_param) to get more detail information.  |  Yes  |
1086

Y
Yhz 已提交
1087
> 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`.
1088 1089 1090 1091 1092 1093


##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
1094
| `collection_name` |  Name of the collection.      |   Yes     |
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108

#### 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 已提交
1109
$ curl -X PUT "http://192.168.1.65:19121/collections/test_collection/vectors" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"topk\":2,\"nprobe\":16,\"records\":[[0.1]]}"
1110 1111 1112 1113 1114 1115 1116 1117
```

##### Response

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

Y
Yhz 已提交
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 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
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
$ curl -X PUT "http://192.168.1.65:19121/collections/test_collection/vectors" -H "accept: application/json" -H "Content-Type: application/json" -d "{"delete": {"ids": ["1578989029645098000"]}}"
```

##### Response

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

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

Y
Yhz 已提交
1173
Inserts vectors to a collection.
1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185

> 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>
{
  "tag": string,
Y
Yhz 已提交
1186
  "vectors": [[number($float/$uint8)]],
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
  "ids": [integer($int64)]
}
</code></pre> </td></tr>
<tr><td>Method</td><td>POST</td></tr>
</table>

##### Body Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
| `tag`     |  Tag of the partition to insert vectors to.   | No   |
Y
Yhz 已提交
1198 1199
| `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 |
1200

Y
Yhz 已提交
1201
> 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`.
1202 1203 1204 1205 1206

##### Query Parameters

| Parameter  | Description  |  Required? |
|-----------------|---|------|
Y
Yhz 已提交
1207
| `collection_name` |  Name of the collection.      |   Yes     |
1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221

#### 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 已提交
1222
$ curl -X POST "http://192.168.1.65:19121/collections/test_collection/vectors" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"vectors\":[[0.1],[0.2],[0.3],[0.4]]}"
1223 1224 1225 1226 1227 1228 1229 1230
```

##### Response

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

Y
Yhz 已提交
1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 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 1280 1281
### `/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
$ curl -X POST "http://192.168.1.65:19121/collections/test_collection/vectors?id=1578989029645098000" -H "accept: application/json" -H "Content-Type: application/json"
```

##### Response

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


Y
Yhz 已提交
1282
### `/collections/{collection_name}/vectors` (OPTIONS)
1283 1284 1285 1286 1287 1288 1289

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

#### Request

| Request Component     | Value  |
|-----------------|---|
Y
Yhz 已提交
1290
| Name     | `/collections/{collection_name}/vectors`  |
1291 1292 1293 1294 1295 1296 1297 1298 1299
| Header  | N/A |
| Body    |   N/A |
| Method    |   OPTIONS |

#### Example

##### Request

```shell
Y
Yhz 已提交
1300
$ curl -X OPTIONS "http://192.168.1.65:19121/collections/test_collection/vectors"
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
```

### `/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
$ curl -X GET "http://192.168.1.65:19121/system/version" -H "accept: application/json"
```

##### Response

```json
valerianian's avatar
valerianian 已提交
1340
{"reply":"0.7.0"}
1341 1342
```

Y
Yhz 已提交
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 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 1390 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 1429 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
### `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
$ curl -X PUT "http://192.168.1.65:19121/system/task" -H "accept: application/json" -d "{\"flush\": {\"collection_names\": [test_collection]}}"
```

##### 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
$ curl -X PUT "http://192.168.1.65:19121/system/task" -H "accept: application/json" -d "{\"compact\": {\"collection_name\": test_collection}}"
```

##### 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
$ curl -X PUT "http://192.168.1.65:19121/system/task" -H "accept: application/json" -d "{\"load\": {\"collection_name\": test_collection}}"
```

##### Response

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

Y
Yhz 已提交
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
## 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)


1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529
## 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 已提交
1530 1531 1532 1533 1534 1535 1536
UNKNOWN_PATH | 32 |
QUERY_PARAM_LOSS | 33 |
BODY_FIELD_LOSS | 34 |
ILLEGAL_BODY | 35 |
BODY_PARSE_FAIL | 36 |
ILLEGAL_QUERY_PARAM | 37 |