@zilliz/milvus2-sdk-node 2.6.0-rc2 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -186
- package/dist/milvus/const/milvus.d.ts +13 -3
- package/dist/milvus/const/milvus.js +13 -0
- package/dist/milvus/const/milvus.js.map +1 -1
- package/dist/milvus/grpc/Collection.d.ts +2 -2
- package/dist/milvus/grpc/Collection.js +2 -2
- package/dist/milvus/grpc/Data.d.ts +4 -4
- package/dist/milvus/grpc/Data.js +15 -10
- package/dist/milvus/grpc/Data.js.map +1 -1
- package/dist/milvus/proto-json/milvus.base.d.ts +599 -0
- package/dist/milvus/proto-json/milvus.base.js +629 -9
- package/dist/milvus/proto-json/milvus.base.js.map +1 -1
- package/dist/milvus/proto-json/milvus.d.ts +599 -0
- package/dist/milvus/proto-json/milvus.js +629 -9
- package/dist/milvus/proto-json/milvus.js.map +1 -1
- package/dist/milvus/proto-json/schema.base.d.ts +160 -0
- package/dist/milvus/proto-json/schema.base.js +168 -5
- package/dist/milvus/proto-json/schema.base.js.map +1 -1
- package/dist/milvus/types/Collection.d.ts +1 -1
- package/dist/milvus/types/Data.d.ts +14 -9
- package/dist/milvus/utils/Bytes.d.ts +2 -2
- package/dist/milvus/utils/Bytes.js.map +1 -1
- package/dist/milvus/utils/Format.js +1 -0
- package/dist/milvus/utils/Format.js.map +1 -1
- package/dist/milvus/utils/Function.js +3 -0
- package/dist/milvus/utils/Function.js.map +1 -1
- package/dist/sdk.json +1 -1
- package/package.json +4 -2
|
@@ -42,6 +42,10 @@ exports.default = {
|
|
|
42
42
|
"requestType": "DescribeCollectionRequest",
|
|
43
43
|
"responseType": "DescribeCollectionResponse"
|
|
44
44
|
},
|
|
45
|
+
"BatchDescribeCollection": {
|
|
46
|
+
"requestType": "BatchDescribeCollectionRequest",
|
|
47
|
+
"responseType": "BatchDescribeCollectionResponse"
|
|
48
|
+
},
|
|
45
49
|
"GetCollectionStatistics": {
|
|
46
50
|
"requestType": "GetCollectionStatisticsRequest",
|
|
47
51
|
"responseType": "GetCollectionStatisticsResponse"
|
|
@@ -418,6 +422,18 @@ exports.default = {
|
|
|
418
422
|
"requestType": "RunAnalyzerRequest",
|
|
419
423
|
"responseType": "RunAnalyzerResponse"
|
|
420
424
|
},
|
|
425
|
+
"AddFileResource": {
|
|
426
|
+
"requestType": "AddFileResourceRequest",
|
|
427
|
+
"responseType": "common.Status"
|
|
428
|
+
},
|
|
429
|
+
"RemoveFileResource": {
|
|
430
|
+
"requestType": "RemoveFileResourceRequest",
|
|
431
|
+
"responseType": "common.Status"
|
|
432
|
+
},
|
|
433
|
+
"ListFileResources": {
|
|
434
|
+
"requestType": "ListFileResourcesRequest",
|
|
435
|
+
"responseType": "ListFileResourcesResponse"
|
|
436
|
+
},
|
|
421
437
|
"AddUserTags": {
|
|
422
438
|
"requestType": "AddUserTagsRequest",
|
|
423
439
|
"responseType": "common.Status"
|
|
@@ -445,6 +461,20 @@ exports.default = {
|
|
|
445
461
|
"ListRowPolicies": {
|
|
446
462
|
"requestType": "ListRowPoliciesRequest",
|
|
447
463
|
"responseType": "ListRowPoliciesResponse"
|
|
464
|
+
},
|
|
465
|
+
"UpdateReplicateConfiguration": {
|
|
466
|
+
"requestType": "UpdateReplicateConfigurationRequest",
|
|
467
|
+
"responseType": "common.Status"
|
|
468
|
+
},
|
|
469
|
+
"GetReplicateInfo": {
|
|
470
|
+
"requestType": "GetReplicateInfoRequest",
|
|
471
|
+
"responseType": "GetReplicateInfoResponse"
|
|
472
|
+
},
|
|
473
|
+
"CreateReplicateStream": {
|
|
474
|
+
"requestType": "ReplicateRequest",
|
|
475
|
+
"requestStream": true,
|
|
476
|
+
"responseType": "ReplicateResponse",
|
|
477
|
+
"responseStream": true
|
|
448
478
|
}
|
|
449
479
|
}
|
|
450
480
|
},
|
|
@@ -893,6 +923,42 @@ exports.default = {
|
|
|
893
923
|
}
|
|
894
924
|
}
|
|
895
925
|
},
|
|
926
|
+
"BatchDescribeCollectionRequest": {
|
|
927
|
+
"options": {
|
|
928
|
+
"(common.privilege_ext_obj).object_type": "Global",
|
|
929
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeDescribeCollection",
|
|
930
|
+
"(common.privilege_ext_obj).object_name_index": -1
|
|
931
|
+
},
|
|
932
|
+
"fields": {
|
|
933
|
+
"db_name": {
|
|
934
|
+
"type": "string",
|
|
935
|
+
"id": 1
|
|
936
|
+
},
|
|
937
|
+
"collection_name": {
|
|
938
|
+
"rule": "repeated",
|
|
939
|
+
"type": "string",
|
|
940
|
+
"id": 2
|
|
941
|
+
},
|
|
942
|
+
"collectionID": {
|
|
943
|
+
"rule": "repeated",
|
|
944
|
+
"type": "int64",
|
|
945
|
+
"id": 3
|
|
946
|
+
}
|
|
947
|
+
}
|
|
948
|
+
},
|
|
949
|
+
"BatchDescribeCollectionResponse": {
|
|
950
|
+
"fields": {
|
|
951
|
+
"status": {
|
|
952
|
+
"type": "common.Status",
|
|
953
|
+
"id": 1
|
|
954
|
+
},
|
|
955
|
+
"responses": {
|
|
956
|
+
"rule": "repeated",
|
|
957
|
+
"type": "DescribeCollectionResponse",
|
|
958
|
+
"id": 2
|
|
959
|
+
}
|
|
960
|
+
}
|
|
961
|
+
},
|
|
896
962
|
"LoadCollectionRequest": {
|
|
897
963
|
"options": {
|
|
898
964
|
"(common.privilege_ext_obj).object_type": "Collection",
|
|
@@ -1114,6 +1180,11 @@ exports.default = {
|
|
|
1114
1180
|
"rule": "repeated",
|
|
1115
1181
|
"type": "bool",
|
|
1116
1182
|
"id": 7
|
|
1183
|
+
},
|
|
1184
|
+
"shards_num": {
|
|
1185
|
+
"rule": "repeated",
|
|
1186
|
+
"type": "int32",
|
|
1187
|
+
"id": 8
|
|
1117
1188
|
}
|
|
1118
1189
|
}
|
|
1119
1190
|
},
|
|
@@ -1735,6 +1806,13 @@ exports.default = {
|
|
|
1735
1806
|
"(common.privilege_ext_obj).object_privilege": "PrivilegeInsert",
|
|
1736
1807
|
"(common.privilege_ext_obj).object_name_index": 3
|
|
1737
1808
|
},
|
|
1809
|
+
"oneofs": {
|
|
1810
|
+
"_namespace": {
|
|
1811
|
+
"oneof": [
|
|
1812
|
+
"namespace"
|
|
1813
|
+
]
|
|
1814
|
+
}
|
|
1815
|
+
},
|
|
1738
1816
|
"fields": {
|
|
1739
1817
|
"base": {
|
|
1740
1818
|
"type": "common.MsgBase",
|
|
@@ -1769,6 +1847,13 @@ exports.default = {
|
|
|
1769
1847
|
"schema_timestamp": {
|
|
1770
1848
|
"type": "uint64",
|
|
1771
1849
|
"id": 8
|
|
1850
|
+
},
|
|
1851
|
+
"namespace": {
|
|
1852
|
+
"type": "string",
|
|
1853
|
+
"id": 9,
|
|
1854
|
+
"options": {
|
|
1855
|
+
"proto3_optional": true
|
|
1856
|
+
}
|
|
1772
1857
|
}
|
|
1773
1858
|
}
|
|
1774
1859
|
},
|
|
@@ -1807,6 +1892,13 @@ exports.default = {
|
|
|
1807
1892
|
"(common.privilege_ext_obj).object_privilege": "PrivilegeUpsert",
|
|
1808
1893
|
"(common.privilege_ext_obj).object_name_index": 3
|
|
1809
1894
|
},
|
|
1895
|
+
"oneofs": {
|
|
1896
|
+
"_namespace": {
|
|
1897
|
+
"oneof": [
|
|
1898
|
+
"namespace"
|
|
1899
|
+
]
|
|
1900
|
+
}
|
|
1901
|
+
},
|
|
1810
1902
|
"fields": {
|
|
1811
1903
|
"base": {
|
|
1812
1904
|
"type": "common.MsgBase",
|
|
@@ -1841,6 +1933,17 @@ exports.default = {
|
|
|
1841
1933
|
"schema_timestamp": {
|
|
1842
1934
|
"type": "uint64",
|
|
1843
1935
|
"id": 8
|
|
1936
|
+
},
|
|
1937
|
+
"partial_update": {
|
|
1938
|
+
"type": "bool",
|
|
1939
|
+
"id": 9
|
|
1940
|
+
},
|
|
1941
|
+
"namespace": {
|
|
1942
|
+
"type": "string",
|
|
1943
|
+
"id": 10,
|
|
1944
|
+
"options": {
|
|
1945
|
+
"proto3_optional": true
|
|
1946
|
+
}
|
|
1844
1947
|
}
|
|
1845
1948
|
}
|
|
1846
1949
|
},
|
|
@@ -1930,6 +2033,13 @@ exports.default = {
|
|
|
1930
2033
|
}
|
|
1931
2034
|
},
|
|
1932
2035
|
"SubSearchRequest": {
|
|
2036
|
+
"oneofs": {
|
|
2037
|
+
"_namespace": {
|
|
2038
|
+
"oneof": [
|
|
2039
|
+
"namespace"
|
|
2040
|
+
]
|
|
2041
|
+
}
|
|
2042
|
+
},
|
|
1933
2043
|
"fields": {
|
|
1934
2044
|
"dsl": {
|
|
1935
2045
|
"type": "string",
|
|
@@ -1956,6 +2066,13 @@ exports.default = {
|
|
|
1956
2066
|
"keyType": "string",
|
|
1957
2067
|
"type": "schema.TemplateValue",
|
|
1958
2068
|
"id": 6
|
|
2069
|
+
},
|
|
2070
|
+
"namespace": {
|
|
2071
|
+
"type": "string",
|
|
2072
|
+
"id": 7,
|
|
2073
|
+
"options": {
|
|
2074
|
+
"proto3_optional": true
|
|
2075
|
+
}
|
|
1959
2076
|
}
|
|
1960
2077
|
}
|
|
1961
2078
|
},
|
|
@@ -1965,6 +2082,13 @@ exports.default = {
|
|
|
1965
2082
|
"(common.privilege_ext_obj).object_privilege": "PrivilegeSearch",
|
|
1966
2083
|
"(common.privilege_ext_obj).object_name_index": 3
|
|
1967
2084
|
},
|
|
2085
|
+
"oneofs": {
|
|
2086
|
+
"_namespace": {
|
|
2087
|
+
"oneof": [
|
|
2088
|
+
"namespace"
|
|
2089
|
+
]
|
|
2090
|
+
}
|
|
2091
|
+
},
|
|
1968
2092
|
"fields": {
|
|
1969
2093
|
"base": {
|
|
1970
2094
|
"type": "common.MsgBase",
|
|
@@ -2046,6 +2170,13 @@ exports.default = {
|
|
|
2046
2170
|
"function_score": {
|
|
2047
2171
|
"type": "schema.FunctionScore",
|
|
2048
2172
|
"id": 19
|
|
2173
|
+
},
|
|
2174
|
+
"namespace": {
|
|
2175
|
+
"type": "string",
|
|
2176
|
+
"id": 20,
|
|
2177
|
+
"options": {
|
|
2178
|
+
"proto3_optional": true
|
|
2179
|
+
}
|
|
2049
2180
|
}
|
|
2050
2181
|
}
|
|
2051
2182
|
},
|
|
@@ -2094,6 +2225,13 @@ exports.default = {
|
|
|
2094
2225
|
"(common.privilege_ext_obj).object_privilege": "PrivilegeSearch",
|
|
2095
2226
|
"(common.privilege_ext_obj).object_name_index": 3
|
|
2096
2227
|
},
|
|
2228
|
+
"oneofs": {
|
|
2229
|
+
"_namespace": {
|
|
2230
|
+
"oneof": [
|
|
2231
|
+
"namespace"
|
|
2232
|
+
]
|
|
2233
|
+
}
|
|
2234
|
+
},
|
|
2097
2235
|
"fields": {
|
|
2098
2236
|
"base": {
|
|
2099
2237
|
"type": "common.MsgBase",
|
|
@@ -2150,6 +2288,13 @@ exports.default = {
|
|
|
2150
2288
|
"function_score": {
|
|
2151
2289
|
"type": "schema.FunctionScore",
|
|
2152
2290
|
"id": 13
|
|
2291
|
+
},
|
|
2292
|
+
"namespace": {
|
|
2293
|
+
"type": "string",
|
|
2294
|
+
"id": 14,
|
|
2295
|
+
"options": {
|
|
2296
|
+
"proto3_optional": true
|
|
2297
|
+
}
|
|
2153
2298
|
}
|
|
2154
2299
|
}
|
|
2155
2300
|
},
|
|
@@ -2218,6 +2363,13 @@ exports.default = {
|
|
|
2218
2363
|
"(common.privilege_ext_obj).object_privilege": "PrivilegeQuery",
|
|
2219
2364
|
"(common.privilege_ext_obj).object_name_index": 3
|
|
2220
2365
|
},
|
|
2366
|
+
"oneofs": {
|
|
2367
|
+
"_namespace": {
|
|
2368
|
+
"oneof": [
|
|
2369
|
+
"namespace"
|
|
2370
|
+
]
|
|
2371
|
+
}
|
|
2372
|
+
},
|
|
2221
2373
|
"fields": {
|
|
2222
2374
|
"base": {
|
|
2223
2375
|
"type": "common.MsgBase",
|
|
@@ -2274,6 +2426,13 @@ exports.default = {
|
|
|
2274
2426
|
"keyType": "string",
|
|
2275
2427
|
"type": "schema.TemplateValue",
|
|
2276
2428
|
"id": 13
|
|
2429
|
+
},
|
|
2430
|
+
"namespace": {
|
|
2431
|
+
"type": "string",
|
|
2432
|
+
"id": 14,
|
|
2433
|
+
"options": {
|
|
2434
|
+
"proto3_optional": true
|
|
2435
|
+
}
|
|
2277
2436
|
}
|
|
2278
2437
|
}
|
|
2279
2438
|
},
|
|
@@ -2417,6 +2576,19 @@ exports.default = {
|
|
|
2417
2576
|
}
|
|
2418
2577
|
}
|
|
2419
2578
|
},
|
|
2579
|
+
"FlushAllTarget": {
|
|
2580
|
+
"fields": {
|
|
2581
|
+
"db_name": {
|
|
2582
|
+
"type": "string",
|
|
2583
|
+
"id": 1
|
|
2584
|
+
},
|
|
2585
|
+
"collection_names": {
|
|
2586
|
+
"rule": "repeated",
|
|
2587
|
+
"type": "string",
|
|
2588
|
+
"id": 2
|
|
2589
|
+
}
|
|
2590
|
+
}
|
|
2591
|
+
},
|
|
2420
2592
|
"FlushAllRequest": {
|
|
2421
2593
|
"options": {
|
|
2422
2594
|
"(common.privilege_ext_obj).object_type": "Global",
|
|
@@ -2430,7 +2602,15 @@ exports.default = {
|
|
|
2430
2602
|
},
|
|
2431
2603
|
"db_name": {
|
|
2432
2604
|
"type": "string",
|
|
2433
|
-
"id": 2
|
|
2605
|
+
"id": 2,
|
|
2606
|
+
"options": {
|
|
2607
|
+
"deprecated": true
|
|
2608
|
+
}
|
|
2609
|
+
},
|
|
2610
|
+
"flush_targets": {
|
|
2611
|
+
"rule": "repeated",
|
|
2612
|
+
"type": "FlushAllTarget",
|
|
2613
|
+
"id": 3
|
|
2434
2614
|
}
|
|
2435
2615
|
}
|
|
2436
2616
|
},
|
|
@@ -2443,6 +2623,53 @@ exports.default = {
|
|
|
2443
2623
|
"flush_all_ts": {
|
|
2444
2624
|
"type": "uint64",
|
|
2445
2625
|
"id": 2
|
|
2626
|
+
},
|
|
2627
|
+
"flush_results": {
|
|
2628
|
+
"rule": "repeated",
|
|
2629
|
+
"type": "FlushAllResult",
|
|
2630
|
+
"id": 3
|
|
2631
|
+
}
|
|
2632
|
+
}
|
|
2633
|
+
},
|
|
2634
|
+
"FlushAllResult": {
|
|
2635
|
+
"fields": {
|
|
2636
|
+
"db_name": {
|
|
2637
|
+
"type": "string",
|
|
2638
|
+
"id": 1
|
|
2639
|
+
},
|
|
2640
|
+
"collection_results": {
|
|
2641
|
+
"rule": "repeated",
|
|
2642
|
+
"type": "FlushCollectionResult",
|
|
2643
|
+
"id": 2
|
|
2644
|
+
}
|
|
2645
|
+
}
|
|
2646
|
+
},
|
|
2647
|
+
"FlushCollectionResult": {
|
|
2648
|
+
"fields": {
|
|
2649
|
+
"collection_name": {
|
|
2650
|
+
"type": "string",
|
|
2651
|
+
"id": 1
|
|
2652
|
+
},
|
|
2653
|
+
"segment_ids": {
|
|
2654
|
+
"type": "schema.LongArray",
|
|
2655
|
+
"id": 2
|
|
2656
|
+
},
|
|
2657
|
+
"flush_segment_ids": {
|
|
2658
|
+
"type": "schema.LongArray",
|
|
2659
|
+
"id": 3
|
|
2660
|
+
},
|
|
2661
|
+
"seal_time": {
|
|
2662
|
+
"type": "int64",
|
|
2663
|
+
"id": 4
|
|
2664
|
+
},
|
|
2665
|
+
"flush_ts": {
|
|
2666
|
+
"type": "uint64",
|
|
2667
|
+
"id": 5
|
|
2668
|
+
},
|
|
2669
|
+
"channel_cps": {
|
|
2670
|
+
"keyType": "string",
|
|
2671
|
+
"type": "msg.MsgPosition",
|
|
2672
|
+
"id": 6
|
|
2446
2673
|
}
|
|
2447
2674
|
}
|
|
2448
2675
|
},
|
|
@@ -2475,6 +2702,10 @@ exports.default = {
|
|
|
2475
2702
|
"is_sorted": {
|
|
2476
2703
|
"type": "bool",
|
|
2477
2704
|
"id": 7
|
|
2705
|
+
},
|
|
2706
|
+
"storage_version": {
|
|
2707
|
+
"type": "int64",
|
|
2708
|
+
"id": 8
|
|
2478
2709
|
}
|
|
2479
2710
|
}
|
|
2480
2711
|
},
|
|
@@ -2560,6 +2791,10 @@ exports.default = {
|
|
|
2560
2791
|
"is_sorted": {
|
|
2561
2792
|
"type": "bool",
|
|
2562
2793
|
"id": 12
|
|
2794
|
+
},
|
|
2795
|
+
"storage_version": {
|
|
2796
|
+
"type": "int64",
|
|
2797
|
+
"id": 13
|
|
2563
2798
|
}
|
|
2564
2799
|
}
|
|
2565
2800
|
},
|
|
@@ -2766,6 +3001,10 @@ exports.default = {
|
|
|
2766
3001
|
"rule": "repeated",
|
|
2767
3002
|
"type": "int64",
|
|
2768
3003
|
"id": 8
|
|
3004
|
+
},
|
|
3005
|
+
"l0Compaction": {
|
|
3006
|
+
"type": "bool",
|
|
3007
|
+
"id": 9
|
|
2769
3008
|
}
|
|
2770
3009
|
}
|
|
2771
3010
|
},
|
|
@@ -2909,7 +3148,15 @@ exports.default = {
|
|
|
2909
3148
|
},
|
|
2910
3149
|
"db_name": {
|
|
2911
3150
|
"type": "string",
|
|
2912
|
-
"id": 3
|
|
3151
|
+
"id": 3,
|
|
3152
|
+
"options": {
|
|
3153
|
+
"deprecated": true
|
|
3154
|
+
}
|
|
3155
|
+
},
|
|
3156
|
+
"flush_targets": {
|
|
3157
|
+
"rule": "repeated",
|
|
3158
|
+
"type": "FlushAllTarget",
|
|
3159
|
+
"id": 4
|
|
2913
3160
|
}
|
|
2914
3161
|
}
|
|
2915
3162
|
},
|
|
@@ -2922,6 +3169,24 @@ exports.default = {
|
|
|
2922
3169
|
"flushed": {
|
|
2923
3170
|
"type": "bool",
|
|
2924
3171
|
"id": 2
|
|
3172
|
+
},
|
|
3173
|
+
"flush_states": {
|
|
3174
|
+
"rule": "repeated",
|
|
3175
|
+
"type": "FlushAllState",
|
|
3176
|
+
"id": 3
|
|
3177
|
+
}
|
|
3178
|
+
}
|
|
3179
|
+
},
|
|
3180
|
+
"FlushAllState": {
|
|
3181
|
+
"fields": {
|
|
3182
|
+
"db_name": {
|
|
3183
|
+
"type": "string",
|
|
3184
|
+
"id": 1
|
|
3185
|
+
},
|
|
3186
|
+
"collection_flush_states": {
|
|
3187
|
+
"keyType": "string",
|
|
3188
|
+
"type": "bool",
|
|
3189
|
+
"id": 2
|
|
2925
3190
|
}
|
|
2926
3191
|
}
|
|
2927
3192
|
},
|
|
@@ -4602,6 +4867,94 @@ exports.default = {
|
|
|
4602
4867
|
}
|
|
4603
4868
|
}
|
|
4604
4869
|
},
|
|
4870
|
+
"FileResourceInfo": {
|
|
4871
|
+
"fields": {
|
|
4872
|
+
"id": {
|
|
4873
|
+
"type": "int64",
|
|
4874
|
+
"id": 1
|
|
4875
|
+
},
|
|
4876
|
+
"name": {
|
|
4877
|
+
"type": "string",
|
|
4878
|
+
"id": 2
|
|
4879
|
+
},
|
|
4880
|
+
"path": {
|
|
4881
|
+
"type": "string",
|
|
4882
|
+
"id": 3
|
|
4883
|
+
},
|
|
4884
|
+
"type": {
|
|
4885
|
+
"type": "common.FileResourceType",
|
|
4886
|
+
"id": 4
|
|
4887
|
+
}
|
|
4888
|
+
}
|
|
4889
|
+
},
|
|
4890
|
+
"AddFileResourceRequest": {
|
|
4891
|
+
"options": {
|
|
4892
|
+
"(common.privilege_ext_obj).object_type": "Global",
|
|
4893
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeAddFileResource",
|
|
4894
|
+
"(common.privilege_ext_obj).object_name_index": -1
|
|
4895
|
+
},
|
|
4896
|
+
"fields": {
|
|
4897
|
+
"base": {
|
|
4898
|
+
"type": "common.MsgBase",
|
|
4899
|
+
"id": 1
|
|
4900
|
+
},
|
|
4901
|
+
"name": {
|
|
4902
|
+
"type": "string",
|
|
4903
|
+
"id": 2
|
|
4904
|
+
},
|
|
4905
|
+
"path": {
|
|
4906
|
+
"type": "string",
|
|
4907
|
+
"id": 3
|
|
4908
|
+
},
|
|
4909
|
+
"type": {
|
|
4910
|
+
"type": "common.FileResourceType",
|
|
4911
|
+
"id": 4
|
|
4912
|
+
}
|
|
4913
|
+
}
|
|
4914
|
+
},
|
|
4915
|
+
"RemoveFileResourceRequest": {
|
|
4916
|
+
"options": {
|
|
4917
|
+
"(common.privilege_ext_obj).object_type": "Global",
|
|
4918
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeRemoveFileResource",
|
|
4919
|
+
"(common.privilege_ext_obj).object_name_index": -1
|
|
4920
|
+
},
|
|
4921
|
+
"fields": {
|
|
4922
|
+
"base": {
|
|
4923
|
+
"type": "common.MsgBase",
|
|
4924
|
+
"id": 1
|
|
4925
|
+
},
|
|
4926
|
+
"name": {
|
|
4927
|
+
"type": "string",
|
|
4928
|
+
"id": 2
|
|
4929
|
+
}
|
|
4930
|
+
}
|
|
4931
|
+
},
|
|
4932
|
+
"ListFileResourcesRequest": {
|
|
4933
|
+
"options": {
|
|
4934
|
+
"(common.privilege_ext_obj).object_type": "Global",
|
|
4935
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeListFileResources",
|
|
4936
|
+
"(common.privilege_ext_obj).object_name_index": -1
|
|
4937
|
+
},
|
|
4938
|
+
"fields": {
|
|
4939
|
+
"base": {
|
|
4940
|
+
"type": "common.MsgBase",
|
|
4941
|
+
"id": 1
|
|
4942
|
+
}
|
|
4943
|
+
}
|
|
4944
|
+
},
|
|
4945
|
+
"ListFileResourcesResponse": {
|
|
4946
|
+
"fields": {
|
|
4947
|
+
"status": {
|
|
4948
|
+
"type": "common.Status",
|
|
4949
|
+
"id": 1
|
|
4950
|
+
},
|
|
4951
|
+
"resources": {
|
|
4952
|
+
"rule": "repeated",
|
|
4953
|
+
"type": "FileResourceInfo",
|
|
4954
|
+
"id": 2
|
|
4955
|
+
}
|
|
4956
|
+
}
|
|
4957
|
+
},
|
|
4605
4958
|
"RowPolicyAction": {
|
|
4606
4959
|
"values": {
|
|
4607
4960
|
"Query": 0,
|
|
@@ -4866,6 +5219,81 @@ exports.default = {
|
|
|
4866
5219
|
"id": 4
|
|
4867
5220
|
}
|
|
4868
5221
|
}
|
|
5222
|
+
},
|
|
5223
|
+
"UpdateReplicateConfigurationRequest": {
|
|
5224
|
+
"fields": {
|
|
5225
|
+
"replicate_configuration": {
|
|
5226
|
+
"type": "common.ReplicateConfiguration",
|
|
5227
|
+
"id": 1
|
|
5228
|
+
}
|
|
5229
|
+
}
|
|
5230
|
+
},
|
|
5231
|
+
"GetReplicateInfoRequest": {
|
|
5232
|
+
"fields": {
|
|
5233
|
+
"source_cluster_id": {
|
|
5234
|
+
"type": "string",
|
|
5235
|
+
"id": 1
|
|
5236
|
+
}
|
|
5237
|
+
}
|
|
5238
|
+
},
|
|
5239
|
+
"GetReplicateInfoResponse": {
|
|
5240
|
+
"fields": {
|
|
5241
|
+
"checkpoints": {
|
|
5242
|
+
"rule": "repeated",
|
|
5243
|
+
"type": "common.ReplicateCheckpoint",
|
|
5244
|
+
"id": 1
|
|
5245
|
+
}
|
|
5246
|
+
}
|
|
5247
|
+
},
|
|
5248
|
+
"ReplicateMessage": {
|
|
5249
|
+
"fields": {
|
|
5250
|
+
"source_cluster_id": {
|
|
5251
|
+
"type": "string",
|
|
5252
|
+
"id": 1
|
|
5253
|
+
},
|
|
5254
|
+
"message": {
|
|
5255
|
+
"type": "common.ImmutableMessage",
|
|
5256
|
+
"id": 2
|
|
5257
|
+
}
|
|
5258
|
+
}
|
|
5259
|
+
},
|
|
5260
|
+
"ReplicateRequest": {
|
|
5261
|
+
"oneofs": {
|
|
5262
|
+
"request": {
|
|
5263
|
+
"oneof": [
|
|
5264
|
+
"replicate_message"
|
|
5265
|
+
]
|
|
5266
|
+
}
|
|
5267
|
+
},
|
|
5268
|
+
"fields": {
|
|
5269
|
+
"replicate_message": {
|
|
5270
|
+
"type": "ReplicateMessage",
|
|
5271
|
+
"id": 1
|
|
5272
|
+
}
|
|
5273
|
+
}
|
|
5274
|
+
},
|
|
5275
|
+
"ReplicateConfirmedMessageInfo": {
|
|
5276
|
+
"fields": {
|
|
5277
|
+
"confirmed_time_tick": {
|
|
5278
|
+
"type": "uint64",
|
|
5279
|
+
"id": 1
|
|
5280
|
+
}
|
|
5281
|
+
}
|
|
5282
|
+
},
|
|
5283
|
+
"ReplicateResponse": {
|
|
5284
|
+
"oneofs": {
|
|
5285
|
+
"response": {
|
|
5286
|
+
"oneof": [
|
|
5287
|
+
"replicate_confirmed_message_info"
|
|
5288
|
+
]
|
|
5289
|
+
}
|
|
5290
|
+
},
|
|
5291
|
+
"fields": {
|
|
5292
|
+
"replicate_confirmed_message_info": {
|
|
5293
|
+
"type": "ReplicateConfirmedMessageInfo",
|
|
5294
|
+
"id": 1
|
|
5295
|
+
}
|
|
5296
|
+
}
|
|
4869
5297
|
}
|
|
4870
5298
|
}
|
|
4871
5299
|
},
|
|
@@ -5054,7 +5482,13 @@ exports.default = {
|
|
|
5054
5482
|
"SparseFloatVector": 104,
|
|
5055
5483
|
"Int8Vector": 105,
|
|
5056
5484
|
"Int64": 5,
|
|
5057
|
-
"VarChar": 21
|
|
5485
|
+
"VarChar": 21,
|
|
5486
|
+
"EmbListBinaryVector": 300,
|
|
5487
|
+
"EmbListFloatVector": 301,
|
|
5488
|
+
"EmbListFloat16Vector": 302,
|
|
5489
|
+
"EmbListBFloat16Vector": 303,
|
|
5490
|
+
"EmbListSparseFloatVector": 304,
|
|
5491
|
+
"EmbListInt8Vector": 305
|
|
5058
5492
|
}
|
|
5059
5493
|
},
|
|
5060
5494
|
"PlaceholderValue": {
|
|
@@ -5398,7 +5832,10 @@ exports.default = {
|
|
|
5398
5832
|
"PrivilegeGroupCollectionAdmin": 68,
|
|
5399
5833
|
"PrivilegeGetImportProgress": 69,
|
|
5400
5834
|
"PrivilegeListImport": 70,
|
|
5401
|
-
"PrivilegeAddCollectionField": 71
|
|
5835
|
+
"PrivilegeAddCollectionField": 71,
|
|
5836
|
+
"PrivilegeAddFileResource": 72,
|
|
5837
|
+
"PrivilegeRemoveFileResource": 73,
|
|
5838
|
+
"PrivilegeListFileResources": 74
|
|
5402
5839
|
}
|
|
5403
5840
|
},
|
|
5404
5841
|
"PrivilegeExt": {
|
|
@@ -5534,6 +5971,125 @@ exports.default = {
|
|
|
5534
5971
|
"HIGH": 0,
|
|
5535
5972
|
"LOW": 1
|
|
5536
5973
|
}
|
|
5974
|
+
},
|
|
5975
|
+
"FileResourceType": {
|
|
5976
|
+
"values": {
|
|
5977
|
+
"ANALYZER_DICTIONARY": 0
|
|
5978
|
+
}
|
|
5979
|
+
},
|
|
5980
|
+
"WALName": {
|
|
5981
|
+
"values": {
|
|
5982
|
+
"Unknown": 0,
|
|
5983
|
+
"RocksMQ": 1,
|
|
5984
|
+
"Pulsar": 2,
|
|
5985
|
+
"Kafka": 3,
|
|
5986
|
+
"WoodPecker": 4,
|
|
5987
|
+
"Test": 999
|
|
5988
|
+
}
|
|
5989
|
+
},
|
|
5990
|
+
"ReplicateConfiguration": {
|
|
5991
|
+
"fields": {
|
|
5992
|
+
"clusters": {
|
|
5993
|
+
"rule": "repeated",
|
|
5994
|
+
"type": "MilvusCluster",
|
|
5995
|
+
"id": 1
|
|
5996
|
+
},
|
|
5997
|
+
"cross_cluster_topology": {
|
|
5998
|
+
"rule": "repeated",
|
|
5999
|
+
"type": "CrossClusterTopology",
|
|
6000
|
+
"id": 2
|
|
6001
|
+
}
|
|
6002
|
+
}
|
|
6003
|
+
},
|
|
6004
|
+
"ConnectionParam": {
|
|
6005
|
+
"fields": {
|
|
6006
|
+
"uri": {
|
|
6007
|
+
"type": "string",
|
|
6008
|
+
"id": 1
|
|
6009
|
+
},
|
|
6010
|
+
"token": {
|
|
6011
|
+
"type": "string",
|
|
6012
|
+
"id": 2
|
|
6013
|
+
}
|
|
6014
|
+
}
|
|
6015
|
+
},
|
|
6016
|
+
"MilvusCluster": {
|
|
6017
|
+
"fields": {
|
|
6018
|
+
"cluster_id": {
|
|
6019
|
+
"type": "string",
|
|
6020
|
+
"id": 1
|
|
6021
|
+
},
|
|
6022
|
+
"connection_param": {
|
|
6023
|
+
"type": "ConnectionParam",
|
|
6024
|
+
"id": 2
|
|
6025
|
+
},
|
|
6026
|
+
"pchannels": {
|
|
6027
|
+
"rule": "repeated",
|
|
6028
|
+
"type": "string",
|
|
6029
|
+
"id": 3
|
|
6030
|
+
}
|
|
6031
|
+
}
|
|
6032
|
+
},
|
|
6033
|
+
"CrossClusterTopology": {
|
|
6034
|
+
"fields": {
|
|
6035
|
+
"source_cluster_id": {
|
|
6036
|
+
"type": "string",
|
|
6037
|
+
"id": 1
|
|
6038
|
+
},
|
|
6039
|
+
"target_cluster_id": {
|
|
6040
|
+
"type": "string",
|
|
6041
|
+
"id": 2
|
|
6042
|
+
}
|
|
6043
|
+
}
|
|
6044
|
+
},
|
|
6045
|
+
"MessageID": {
|
|
6046
|
+
"fields": {
|
|
6047
|
+
"id": {
|
|
6048
|
+
"type": "string",
|
|
6049
|
+
"id": 1
|
|
6050
|
+
},
|
|
6051
|
+
"WAL_name": {
|
|
6052
|
+
"type": "common.WALName",
|
|
6053
|
+
"id": 2
|
|
6054
|
+
}
|
|
6055
|
+
}
|
|
6056
|
+
},
|
|
6057
|
+
"ImmutableMessage": {
|
|
6058
|
+
"fields": {
|
|
6059
|
+
"id": {
|
|
6060
|
+
"type": "MessageID",
|
|
6061
|
+
"id": 1
|
|
6062
|
+
},
|
|
6063
|
+
"payload": {
|
|
6064
|
+
"type": "bytes",
|
|
6065
|
+
"id": 2
|
|
6066
|
+
},
|
|
6067
|
+
"properties": {
|
|
6068
|
+
"keyType": "string",
|
|
6069
|
+
"type": "string",
|
|
6070
|
+
"id": 3
|
|
6071
|
+
}
|
|
6072
|
+
}
|
|
6073
|
+
},
|
|
6074
|
+
"ReplicateCheckpoint": {
|
|
6075
|
+
"fields": {
|
|
6076
|
+
"cluster_id": {
|
|
6077
|
+
"type": "string",
|
|
6078
|
+
"id": 1
|
|
6079
|
+
},
|
|
6080
|
+
"pchannel": {
|
|
6081
|
+
"type": "string",
|
|
6082
|
+
"id": 2
|
|
6083
|
+
},
|
|
6084
|
+
"message_id": {
|
|
6085
|
+
"type": "common.MessageID",
|
|
6086
|
+
"id": 3
|
|
6087
|
+
},
|
|
6088
|
+
"time_tick": {
|
|
6089
|
+
"type": "uint64",
|
|
6090
|
+
"id": 4
|
|
6091
|
+
}
|
|
6092
|
+
}
|
|
5537
6093
|
}
|
|
5538
6094
|
}
|
|
5539
6095
|
},
|
|
@@ -5626,6 +6182,7 @@ exports.default = {
|
|
|
5626
6182
|
"JSON": 23,
|
|
5627
6183
|
"Geometry": 24,
|
|
5628
6184
|
"Text": 25,
|
|
6185
|
+
"Timestamptz": 26,
|
|
5629
6186
|
"BinaryVector": 100,
|
|
5630
6187
|
"FloatVector": 101,
|
|
5631
6188
|
"Float16Vector": 102,
|
|
@@ -5633,7 +6190,8 @@ exports.default = {
|
|
|
5633
6190
|
"SparseFloatVector": 104,
|
|
5634
6191
|
"Int8Vector": 105,
|
|
5635
6192
|
"ArrayOfVector": 106,
|
|
5636
|
-
"ArrayOfStruct": 200
|
|
6193
|
+
"ArrayOfStruct": 200,
|
|
6194
|
+
"Struct": 201
|
|
5637
6195
|
}
|
|
5638
6196
|
},
|
|
5639
6197
|
"FunctionType": {
|
|
@@ -5943,6 +6501,24 @@ exports.default = {
|
|
|
5943
6501
|
}
|
|
5944
6502
|
}
|
|
5945
6503
|
},
|
|
6504
|
+
"TimestamptzArray": {
|
|
6505
|
+
"fields": {
|
|
6506
|
+
"data": {
|
|
6507
|
+
"rule": "repeated",
|
|
6508
|
+
"type": "int64",
|
|
6509
|
+
"id": 1
|
|
6510
|
+
}
|
|
6511
|
+
}
|
|
6512
|
+
},
|
|
6513
|
+
"GeometryWktArray": {
|
|
6514
|
+
"fields": {
|
|
6515
|
+
"data": {
|
|
6516
|
+
"rule": "repeated",
|
|
6517
|
+
"type": "string",
|
|
6518
|
+
"id": 1
|
|
6519
|
+
}
|
|
6520
|
+
}
|
|
6521
|
+
},
|
|
5946
6522
|
"ValueField": {
|
|
5947
6523
|
"oneofs": {
|
|
5948
6524
|
"data": {
|
|
@@ -5953,7 +6529,8 @@ exports.default = {
|
|
|
5953
6529
|
"float_data",
|
|
5954
6530
|
"double_data",
|
|
5955
6531
|
"string_data",
|
|
5956
|
-
"bytes_data"
|
|
6532
|
+
"bytes_data",
|
|
6533
|
+
"timestamptz_data"
|
|
5957
6534
|
]
|
|
5958
6535
|
}
|
|
5959
6536
|
},
|
|
@@ -5985,6 +6562,10 @@ exports.default = {
|
|
|
5985
6562
|
"bytes_data": {
|
|
5986
6563
|
"type": "bytes",
|
|
5987
6564
|
"id": 7
|
|
6565
|
+
},
|
|
6566
|
+
"timestamptz_data": {
|
|
6567
|
+
"type": "int64",
|
|
6568
|
+
"id": 8
|
|
5988
6569
|
}
|
|
5989
6570
|
}
|
|
5990
6571
|
},
|
|
@@ -6001,7 +6582,9 @@ exports.default = {
|
|
|
6001
6582
|
"bytes_data",
|
|
6002
6583
|
"array_data",
|
|
6003
6584
|
"json_data",
|
|
6004
|
-
"geometry_data"
|
|
6585
|
+
"geometry_data",
|
|
6586
|
+
"timestamptz_data",
|
|
6587
|
+
"geometry_wkt_data"
|
|
6005
6588
|
]
|
|
6006
6589
|
}
|
|
6007
6590
|
},
|
|
@@ -6045,6 +6628,14 @@ exports.default = {
|
|
|
6045
6628
|
"geometry_data": {
|
|
6046
6629
|
"type": "GeometryArray",
|
|
6047
6630
|
"id": 10
|
|
6631
|
+
},
|
|
6632
|
+
"timestamptz_data": {
|
|
6633
|
+
"type": "TimestamptzArray",
|
|
6634
|
+
"id": 11
|
|
6635
|
+
},
|
|
6636
|
+
"geometry_wkt_data": {
|
|
6637
|
+
"type": "GeometryWktArray",
|
|
6638
|
+
"id": 12
|
|
6048
6639
|
}
|
|
6049
6640
|
}
|
|
6050
6641
|
},
|
|
@@ -6517,6 +7108,13 @@ exports.default = {
|
|
|
6517
7108
|
}
|
|
6518
7109
|
},
|
|
6519
7110
|
"InsertRequest": {
|
|
7111
|
+
"oneofs": {
|
|
7112
|
+
"_namespace": {
|
|
7113
|
+
"oneof": [
|
|
7114
|
+
"namespace"
|
|
7115
|
+
]
|
|
7116
|
+
}
|
|
7117
|
+
},
|
|
6520
7118
|
"fields": {
|
|
6521
7119
|
"base": {
|
|
6522
7120
|
"type": "common.MsgBase",
|
|
@@ -6581,6 +7179,13 @@ exports.default = {
|
|
|
6581
7179
|
"version": {
|
|
6582
7180
|
"type": "InsertDataVersion",
|
|
6583
7181
|
"id": 15
|
|
7182
|
+
},
|
|
7183
|
+
"namespace": {
|
|
7184
|
+
"type": "string",
|
|
7185
|
+
"id": 16,
|
|
7186
|
+
"options": {
|
|
7187
|
+
"proto3_optional": true
|
|
7188
|
+
}
|
|
6584
7189
|
}
|
|
6585
7190
|
}
|
|
6586
7191
|
},
|
|
@@ -6690,11 +7295,17 @@ exports.default = {
|
|
|
6690
7295
|
},
|
|
6691
7296
|
"partitionID": {
|
|
6692
7297
|
"type": "int64",
|
|
6693
|
-
"id": 7
|
|
7298
|
+
"id": 7,
|
|
7299
|
+
"options": {
|
|
7300
|
+
"deprecated": true
|
|
7301
|
+
}
|
|
6694
7302
|
},
|
|
6695
7303
|
"schema": {
|
|
6696
7304
|
"type": "bytes",
|
|
6697
|
-
"id": 8
|
|
7305
|
+
"id": 8,
|
|
7306
|
+
"options": {
|
|
7307
|
+
"deprecated": true
|
|
7308
|
+
}
|
|
6698
7309
|
},
|
|
6699
7310
|
"virtualChannelNames": {
|
|
6700
7311
|
"rule": "repeated",
|
|
@@ -6710,6 +7321,15 @@ exports.default = {
|
|
|
6710
7321
|
"rule": "repeated",
|
|
6711
7322
|
"type": "int64",
|
|
6712
7323
|
"id": 11
|
|
7324
|
+
},
|
|
7325
|
+
"partitionNames": {
|
|
7326
|
+
"rule": "repeated",
|
|
7327
|
+
"type": "string",
|
|
7328
|
+
"id": 12
|
|
7329
|
+
},
|
|
7330
|
+
"collection_schema": {
|
|
7331
|
+
"type": "schema.CollectionSchema",
|
|
7332
|
+
"id": 13
|
|
6713
7333
|
}
|
|
6714
7334
|
}
|
|
6715
7335
|
},
|