ydb-qdrant 2.0.0
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/LICENSE +201 -0
- package/README.md +222 -0
- package/dist/Api.d.ts +26 -0
- package/dist/Api.js +68 -0
- package/dist/SmokeTest.d.ts +1 -0
- package/dist/SmokeTest.js +40 -0
- package/dist/config/env.d.ts +6 -0
- package/dist/config/env.js +8 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +21 -0
- package/dist/indexing/IndexScheduler.d.ts +5 -0
- package/dist/indexing/IndexScheduler.js +66 -0
- package/dist/logging/logger.d.ts +2 -0
- package/dist/logging/logger.js +3 -0
- package/dist/middleware/requestLogger.d.ts +2 -0
- package/dist/middleware/requestLogger.js +14 -0
- package/dist/repositories/collectionsRepo.d.ts +10 -0
- package/dist/repositories/collectionsRepo.js +118 -0
- package/dist/repositories/pointsRepo.d.ts +12 -0
- package/dist/repositories/pointsRepo.js +151 -0
- package/dist/routes/collections.d.ts +1 -0
- package/dist/routes/collections.js +74 -0
- package/dist/routes/points.d.ts +1 -0
- package/dist/routes/points.js +96 -0
- package/dist/server.d.ts +1 -0
- package/dist/server.js +13 -0
- package/dist/services/QdrantService.d.ts +55 -0
- package/dist/services/QdrantService.js +268 -0
- package/dist/types.d.ts +28 -0
- package/dist/types.js +30 -0
- package/dist/utils/tenant.d.ts +4 -0
- package/dist/utils/tenant.js +17 -0
- package/dist/ydb/client.d.ts +6 -0
- package/dist/ydb/client.js +20 -0
- package/dist/ydb/helpers.d.ts +2 -0
- package/dist/ydb/helpers.js +45 -0
- package/dist/ydb/schema.d.ts +1 -0
- package/dist/ydb/schema.js +24 -0
- package/package.json +73 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [2025] [astandrik]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
<img src="./logo.svg" alt="YDB Qdrant logo" height="56">
|
|
2
|
+
|
|
3
|
+
# YDB Qdrant-compatible Service (Node.js)
|
|
4
|
+
|
|
5
|
+
Qdrant-compatible Node.js/TypeScript service exposing a minimal REST API that stores and searches vectors in YDB using single‑phase top‑k with an automatic YDB vector index (`vector_kmeans_tree`) and table‑scan fallback. Topics: ydb, vector-search, qdrant-compatible, nodejs, typescript, express, yql, ann, semantic-search, rag.
|
|
6
|
+
|
|
7
|
+
Promo site: [ydb-qdrant.tech](http://ydb-qdrant.tech)
|
|
8
|
+
Architecture diagrams: [docs page](http://ydb-qdrant.tech/docs/)
|
|
9
|
+
|
|
10
|
+
## How it works
|
|
11
|
+
|
|
12
|
+

|
|
13
|
+
|
|
14
|
+
## Requirements
|
|
15
|
+
- Node.js 18+
|
|
16
|
+
- A YDB endpoint and database path
|
|
17
|
+
- One of the supported auth methods (via environment)
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
```bash
|
|
21
|
+
npm install
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Configure credentials
|
|
25
|
+
The server uses `getCredentialsFromEnv()` and supports these env vars (first match wins):
|
|
26
|
+
|
|
27
|
+
- Service account key file (recommended)
|
|
28
|
+
```bash
|
|
29
|
+
export YDB_SERVICE_ACCOUNT_KEY_FILE_CREDENTIALS=/abs/path/sa-key.json
|
|
30
|
+
```
|
|
31
|
+
The JSON must contain: `service_account_id`, `id`, `private_key`.
|
|
32
|
+
|
|
33
|
+
- Metadata service (Yandex Cloud VM/Functions)
|
|
34
|
+
```bash
|
|
35
|
+
export YDB_METADATA_CREDENTIALS=1
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
- Static IAM token (short‑lived)
|
|
39
|
+
```bash
|
|
40
|
+
export YDB_ACCESS_TOKEN_CREDENTIALS=$(yc iam create-token)
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
- Anonymous (local/dev only)
|
|
44
|
+
```bash
|
|
45
|
+
export YDB_ANONYMOUS_CREDENTIALS=1
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Also set endpoint and database:
|
|
49
|
+
```bash
|
|
50
|
+
export YDB_ENDPOINT=grpcs://ydb.serverless.yandexcloud.net:2135
|
|
51
|
+
export YDB_DATABASE=/ru-central1/<cloud>/<db>
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Optional env:
|
|
55
|
+
```bash
|
|
56
|
+
# Server
|
|
57
|
+
export PORT=8080
|
|
58
|
+
export LOG_LEVEL=info
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Quick Start
|
|
62
|
+
|
|
63
|
+
### Use with IDE agents (Roo Code, Cline)
|
|
64
|
+
|
|
65
|
+
**Option 1: Public Demo (No setup required)**
|
|
66
|
+
- Set Qdrant URL to `http://ydb-qdrant.tech:8080`
|
|
67
|
+
- No API key needed
|
|
68
|
+
- Free to use for testing and development
|
|
69
|
+
- Shared instance - use `X-Tenant-Id` header for isolation
|
|
70
|
+
|
|
71
|
+
**Option 2: Self-hosted (Local)**
|
|
72
|
+
- Set Qdrant URL to `http://localhost:8080`
|
|
73
|
+
- API key optional (not enforced)
|
|
74
|
+
- Full control and privacy
|
|
75
|
+
|
|
76
|
+
### cURL smoke test (Self-hosted)
|
|
77
|
+
```bash
|
|
78
|
+
# 1) Install & run
|
|
79
|
+
npm install
|
|
80
|
+
npm run dev
|
|
81
|
+
|
|
82
|
+
# 2) Create a collection (384-d Cosine floats)
|
|
83
|
+
curl -X PUT http://localhost:8080/collections/mycol \
|
|
84
|
+
-H 'Content-Type: application/json' \
|
|
85
|
+
-d '{
|
|
86
|
+
"vectors": { "size": 384, "distance": "Cosine", "data_type": "float" }
|
|
87
|
+
}'
|
|
88
|
+
|
|
89
|
+
# 3) Upsert points
|
|
90
|
+
curl -X POST http://localhost:8080/collections/mycol/points/upsert \
|
|
91
|
+
-H 'Content-Type: application/json' \
|
|
92
|
+
-d '{
|
|
93
|
+
"points": [
|
|
94
|
+
{"id": "1", "vector": [0.1,0.2, ... 384 vals ...], "payload": {"repo":"demo"}}
|
|
95
|
+
]
|
|
96
|
+
}'
|
|
97
|
+
|
|
98
|
+
# 4) Semantic search (query)
|
|
99
|
+
curl -X POST http://localhost:8080/collections/mycol/points/query \
|
|
100
|
+
-H 'Content-Type: application/json' \
|
|
101
|
+
-d '{
|
|
102
|
+
"vector": [0.1,0.2, ... 384 vals ...],
|
|
103
|
+
"limit": 5,
|
|
104
|
+
"with_payload": true,
|
|
105
|
+
"score_threshold": 0.4
|
|
106
|
+
}'
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## Run
|
|
110
|
+
```bash
|
|
111
|
+
npm run build
|
|
112
|
+
npm start
|
|
113
|
+
# or during development
|
|
114
|
+
npm run dev
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
Health check:
|
|
118
|
+
```bash
|
|
119
|
+
curl -s http://localhost:8080/health
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
## API Reference
|
|
123
|
+
|
|
124
|
+
Create collection (PUT /collections/{collection}):
|
|
125
|
+
```bash
|
|
126
|
+
curl -X PUT http://localhost:8080/collections/mycol \
|
|
127
|
+
-H 'Content-Type: application/json' \
|
|
128
|
+
-d '{
|
|
129
|
+
"vectors": {
|
|
130
|
+
"size": 384,
|
|
131
|
+
"distance": "Cosine",
|
|
132
|
+
"data_type": "float"
|
|
133
|
+
}
|
|
134
|
+
}'
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
Upsert points (POST /collections/{collection}/points/upsert):
|
|
138
|
+
```bash
|
|
139
|
+
curl -X POST http://localhost:8080/collections/mycol/points/upsert \
|
|
140
|
+
-H 'Content-Type: application/json' \
|
|
141
|
+
-d '{
|
|
142
|
+
"points": [
|
|
143
|
+
{"id": "1", "vector": [0.1,0.2, ... 384 vals ...], "payload": {"repo":"demo"}}
|
|
144
|
+
]
|
|
145
|
+
}'
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
Search (POST /collections/{collection}/points/search):
|
|
149
|
+
```bash
|
|
150
|
+
curl -X POST http://localhost:8080/collections/mycol/points/search \
|
|
151
|
+
-H 'Content-Type: application/json' \
|
|
152
|
+
-d '{
|
|
153
|
+
"vector": [0.1,0.2, ... 384 vals ...],
|
|
154
|
+
"top": 10,
|
|
155
|
+
"with_payload": true
|
|
156
|
+
}'
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
Delete points (POST /collections/{collection}/points/delete):
|
|
160
|
+
```bash
|
|
161
|
+
curl -X POST http://localhost:8080/collections/mycol/points/delete \
|
|
162
|
+
-H 'Content-Type: application/json' \
|
|
163
|
+
-d '{"points": ["1"]}'
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
## Notes
|
|
167
|
+
- One YDB table is created per collection; metadata is tracked in table `qdr__collections`.
|
|
168
|
+
- Each collection table schema: `point_id Utf8` (PK), `embedding String` (binary), `payload JsonDocument`.
|
|
169
|
+
- Vectors are serialized with `Knn::ToBinaryStringFloat` (or `Knn::ToBinaryStringUint8` if collection uses uint8).
|
|
170
|
+
- Search uses a single-phase top‑k over `embedding` with automatic YDB vector index (`emb_idx`) when available; falls back to table scan if missing.
|
|
171
|
+
- **Vector index auto-build**: After ≥100 points upserted + 5s quiet window, a `vector_kmeans_tree` index (levels=1, clusters=128) is built automatically. Incremental updates (<100 points) skip index rebuild.
|
|
172
|
+
- **Concurrency**: During index rebuilds, YDB may return transient `Aborted`/schema metadata errors. Upserts include bounded retries with backoff to handle this automatically.
|
|
173
|
+
- Filters are not yet modeled; can be added if needed.
|
|
174
|
+
|
|
175
|
+
## Scoring semantics
|
|
176
|
+
- Cosine/Dot: higher score is better; `score_threshold` filters with `>=`.
|
|
177
|
+
- Euclid/Manhattan: lower score is better; `score_threshold` filters with `<=`.
|
|
178
|
+
|
|
179
|
+
## Request normalization (Qdrant-compatible)
|
|
180
|
+
- Accepts `limit` as alias of `top`.
|
|
181
|
+
- Accepts `with_payload` as boolean/object/array (object/array treated as `true`).
|
|
182
|
+
- Extracts query vector from common shapes: `vector`, `embedding`, `query.vector`, `query.nearest.vector`, or nested keys.
|
|
183
|
+
|
|
184
|
+
## Qdrant compatibility scope
|
|
185
|
+
This service implements a minimal subset expected by common tooling:
|
|
186
|
+
- Create/get/delete collection
|
|
187
|
+
- Upsert points
|
|
188
|
+
- Top‑k search with optional payload
|
|
189
|
+
- Delete points
|
|
190
|
+
|
|
191
|
+
Compatibility notes:
|
|
192
|
+
- Accepts `PUT /collections/:collection/points` as an alias of upsert.
|
|
193
|
+
- Accepts `POST /collections/:collection/points/query` as an alias of search.
|
|
194
|
+
- Accepts `limit` as an alias of `top`; honors `score_threshold`.
|
|
195
|
+
- Search response shape: `{ status: "ok", result: { points: [{ id, score, payload? }] } }`.
|
|
196
|
+
- `PUT /collections/:collection/index` is a no-op (Qdrant compatibility; Roo Code calls this for payload indexes). The YDB vector index (`emb_idx`) is built automatically after ≥100 points are upserted + 5-second quiet window. Incremental updates (<100 points) skip rebuild.
|
|
197
|
+
|
|
198
|
+
For broader Qdrant API coverage, extend routes in `src/routes/*`.
|
|
199
|
+
|
|
200
|
+
## Releasing & publishing (maintainers)
|
|
201
|
+
|
|
202
|
+
- **Versioning**
|
|
203
|
+
- Use semantic versioning as described in the npm docs.
|
|
204
|
+
- From `ydb-qdrant/`, run `npm version patch|minor|major` to bump the version and create a git tag (for example, `ydb-qdrant-v0.2.0`).
|
|
205
|
+
- **Manual publish**
|
|
206
|
+
- Ensure you are logged in to npm (`npm whoami`).
|
|
207
|
+
- From `ydb-qdrant/`, run:
|
|
208
|
+
- `npm publish`
|
|
209
|
+
This will run tests and build via the `prepublishOnly` script before uploading the tarball.
|
|
210
|
+
- **CI publish**
|
|
211
|
+
- GitHub Actions workflow `.github/workflows/publish-ydb-qdrant.yml` publishes on tags matching `ydb-qdrant-v*`.
|
|
212
|
+
- Configure the `NPM_TOKEN` secret in the repository; the workflow runs `npm ci`, `npm test`, `npm run build`, and `npm publish`.
|
|
213
|
+
|
|
214
|
+
## References
|
|
215
|
+
- YDB docs (overview): https://ydb.tech/docs/en/
|
|
216
|
+
- YDB vector indexes (vector_kmeans_tree): https://ydb.tech/docs/en/dev/vector-indexes
|
|
217
|
+
- YDB VIEW syntax for indexes: https://ydb.tech/docs/en/yql/reference/syntax/select/secondary_index
|
|
218
|
+
- YQL getting started: https://ydb.tech/docs/en/getting_started/yql/
|
|
219
|
+
- YQL reference (syntax, functions): https://ydb.tech/docs/en/yql/reference/
|
|
220
|
+
- YQL functions index: https://ydb.tech/docs/en/yql/reference/functions/
|
|
221
|
+
- ydb-sdk (Node.js): https://github.com/ydb-platform/ydb-nodejs-sdk
|
|
222
|
+
- YDB Cloud (endpoints, auth): https://cloud.yandex.com/en/docs/ydb/
|
package/dist/Api.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { createCollection as serviceCreateCollection, deleteCollection as serviceDeleteCollection, getCollection as serviceGetCollection, putCollectionIndex as servicePutCollectionIndex, upsertPoints as serviceUpsertPoints, searchPoints as serviceSearchPoints, deletePoints as serviceDeletePoints } from "./services/QdrantService.js";
|
|
2
|
+
export { QdrantServiceError } from "./services/QdrantService.js";
|
|
3
|
+
export { CreateCollectionReq, UpsertPointsReq, SearchReq, DeletePointsReq, } from "./types.js";
|
|
4
|
+
type CreateCollectionResult = Awaited<ReturnType<typeof serviceCreateCollection>>;
|
|
5
|
+
type GetCollectionResult = Awaited<ReturnType<typeof serviceGetCollection>>;
|
|
6
|
+
type DeleteCollectionResult = Awaited<ReturnType<typeof serviceDeleteCollection>>;
|
|
7
|
+
type PutIndexResult = Awaited<ReturnType<typeof servicePutCollectionIndex>>;
|
|
8
|
+
type UpsertPointsResult = Awaited<ReturnType<typeof serviceUpsertPoints>>;
|
|
9
|
+
type SearchPointsResult = Awaited<ReturnType<typeof serviceSearchPoints>>;
|
|
10
|
+
type DeletePointsResult = Awaited<ReturnType<typeof serviceDeletePoints>>;
|
|
11
|
+
export interface YdbQdrantClientOptions {
|
|
12
|
+
defaultTenant?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface YdbQdrantTenantClient {
|
|
15
|
+
createCollection(collection: string, body: unknown): Promise<CreateCollectionResult>;
|
|
16
|
+
getCollection(collection: string): Promise<GetCollectionResult>;
|
|
17
|
+
deleteCollection(collection: string): Promise<DeleteCollectionResult>;
|
|
18
|
+
putCollectionIndex(collection: string): Promise<PutIndexResult>;
|
|
19
|
+
upsertPoints(collection: string, body: unknown): Promise<UpsertPointsResult>;
|
|
20
|
+
searchPoints(collection: string, body: unknown): Promise<SearchPointsResult>;
|
|
21
|
+
deletePoints(collection: string, body: unknown): Promise<DeletePointsResult>;
|
|
22
|
+
}
|
|
23
|
+
export interface YdbQdrantClient extends YdbQdrantTenantClient {
|
|
24
|
+
forTenant(tenant: string): YdbQdrantTenantClient;
|
|
25
|
+
}
|
|
26
|
+
export declare function createYdbQdrantClient(options?: YdbQdrantClientOptions): Promise<YdbQdrantClient>;
|
package/dist/Api.js
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { readyOrThrow } from "./ydb/client.js";
|
|
2
|
+
import { ensureMetaTable } from "./ydb/schema.js";
|
|
3
|
+
import { createCollection as serviceCreateCollection, deleteCollection as serviceDeleteCollection, getCollection as serviceGetCollection, putCollectionIndex as servicePutCollectionIndex, upsertPoints as serviceUpsertPoints, searchPoints as serviceSearchPoints, deletePoints as serviceDeletePoints, } from "./services/QdrantService.js";
|
|
4
|
+
export { QdrantServiceError } from "./services/QdrantService.js";
|
|
5
|
+
export { CreateCollectionReq, UpsertPointsReq, SearchReq, DeletePointsReq, } from "./types.js";
|
|
6
|
+
export async function createYdbQdrantClient(options = {}) {
|
|
7
|
+
await readyOrThrow();
|
|
8
|
+
await ensureMetaTable();
|
|
9
|
+
const defaultTenant = options.defaultTenant ?? "default";
|
|
10
|
+
const resolveTenant = (tenant) => tenant ?? defaultTenant;
|
|
11
|
+
const client = {
|
|
12
|
+
async createCollection(collection, body) {
|
|
13
|
+
const tenant = resolveTenant(undefined);
|
|
14
|
+
return await serviceCreateCollection({ tenant, collection }, body);
|
|
15
|
+
},
|
|
16
|
+
async getCollection(collection) {
|
|
17
|
+
const tenant = resolveTenant(undefined);
|
|
18
|
+
return await serviceGetCollection({ tenant, collection });
|
|
19
|
+
},
|
|
20
|
+
async deleteCollection(collection) {
|
|
21
|
+
const tenant = resolveTenant(undefined);
|
|
22
|
+
return await serviceDeleteCollection({ tenant, collection });
|
|
23
|
+
},
|
|
24
|
+
async putCollectionIndex(collection) {
|
|
25
|
+
const tenant = resolveTenant(undefined);
|
|
26
|
+
return await servicePutCollectionIndex({ tenant, collection });
|
|
27
|
+
},
|
|
28
|
+
async upsertPoints(collection, body) {
|
|
29
|
+
const tenant = resolveTenant(undefined);
|
|
30
|
+
return await serviceUpsertPoints({ tenant, collection }, body);
|
|
31
|
+
},
|
|
32
|
+
async searchPoints(collection, body) {
|
|
33
|
+
const tenant = resolveTenant(undefined);
|
|
34
|
+
return await serviceSearchPoints({ tenant, collection }, body);
|
|
35
|
+
},
|
|
36
|
+
async deletePoints(collection, body) {
|
|
37
|
+
const tenant = resolveTenant(undefined);
|
|
38
|
+
return await serviceDeletePoints({ tenant, collection }, body);
|
|
39
|
+
},
|
|
40
|
+
forTenant(tenantId) {
|
|
41
|
+
const tenant = resolveTenant(tenantId);
|
|
42
|
+
return {
|
|
43
|
+
createCollection(collection, body) {
|
|
44
|
+
return serviceCreateCollection({ tenant, collection }, body);
|
|
45
|
+
},
|
|
46
|
+
getCollection(collection) {
|
|
47
|
+
return serviceGetCollection({ tenant, collection });
|
|
48
|
+
},
|
|
49
|
+
deleteCollection(collection) {
|
|
50
|
+
return serviceDeleteCollection({ tenant, collection });
|
|
51
|
+
},
|
|
52
|
+
putCollectionIndex(collection) {
|
|
53
|
+
return servicePutCollectionIndex({ tenant, collection });
|
|
54
|
+
},
|
|
55
|
+
upsertPoints(collection, body) {
|
|
56
|
+
return serviceUpsertPoints({ tenant, collection }, body);
|
|
57
|
+
},
|
|
58
|
+
searchPoints(collection, body) {
|
|
59
|
+
return serviceSearchPoints({ tenant, collection }, body);
|
|
60
|
+
},
|
|
61
|
+
deletePoints(collection, body) {
|
|
62
|
+
return serviceDeletePoints({ tenant, collection }, body);
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
},
|
|
66
|
+
};
|
|
67
|
+
return client;
|
|
68
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "dotenv/config";
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import "dotenv/config";
|
|
2
|
+
import { createYdbQdrantClient } from "./Api.js";
|
|
3
|
+
async function main() {
|
|
4
|
+
const tenant = process.env.SMOKE_TENANT ?? "smoke";
|
|
5
|
+
const collection = process.env.SMOKE_COLLECTION ?? "demo";
|
|
6
|
+
const client = await createYdbQdrantClient({ defaultTenant: tenant });
|
|
7
|
+
await client.createCollection(collection, {
|
|
8
|
+
vectors: {
|
|
9
|
+
size: 4,
|
|
10
|
+
distance: "Cosine",
|
|
11
|
+
data_type: "float",
|
|
12
|
+
},
|
|
13
|
+
});
|
|
14
|
+
await client.upsertPoints(collection, {
|
|
15
|
+
points: [
|
|
16
|
+
{
|
|
17
|
+
id: "p1",
|
|
18
|
+
vector: [0, 0, 0, 1],
|
|
19
|
+
payload: { label: "p1" },
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
id: "p2",
|
|
23
|
+
vector: [0, 0, 1, 0],
|
|
24
|
+
payload: { label: "p2" },
|
|
25
|
+
},
|
|
26
|
+
],
|
|
27
|
+
});
|
|
28
|
+
const result = await client.searchPoints(collection, {
|
|
29
|
+
vector: [0, 0, 0, 1],
|
|
30
|
+
top: 2,
|
|
31
|
+
with_payload: true,
|
|
32
|
+
});
|
|
33
|
+
// eslint-disable-next-line no-console
|
|
34
|
+
console.log(JSON.stringify(result, null, 2));
|
|
35
|
+
}
|
|
36
|
+
void main().catch((err) => {
|
|
37
|
+
// eslint-disable-next-line no-console
|
|
38
|
+
console.error(err);
|
|
39
|
+
process.exitCode = 1;
|
|
40
|
+
});
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import "dotenv/config";
|
|
2
|
+
export const YDB_ENDPOINT = process.env.YDB_ENDPOINT ?? "";
|
|
3
|
+
export const YDB_DATABASE = process.env.YDB_DATABASE ?? "";
|
|
4
|
+
export const PORT = process.env.PORT ? Number(process.env.PORT) : 8080;
|
|
5
|
+
export const LOG_LEVEL = process.env.LOG_LEVEL ?? "info";
|
|
6
|
+
export const APPROX_PRESELECT = process.env.APPROX_PRESELECT
|
|
7
|
+
? Math.max(1, Math.min(5000, Number(process.env.APPROX_PRESELECT)))
|
|
8
|
+
: 1000;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "dotenv/config";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import "dotenv/config";
|
|
2
|
+
import { buildServer } from "./server.js";
|
|
3
|
+
import { PORT } from "./config/env.js";
|
|
4
|
+
import { logger } from "./logging/logger.js";
|
|
5
|
+
import { readyOrThrow } from "./ydb/client.js";
|
|
6
|
+
import { ensureMetaTable } from "./ydb/schema.js";
|
|
7
|
+
let server;
|
|
8
|
+
async function start() {
|
|
9
|
+
try {
|
|
10
|
+
await readyOrThrow();
|
|
11
|
+
await ensureMetaTable();
|
|
12
|
+
}
|
|
13
|
+
catch (err) {
|
|
14
|
+
logger.error({ err }, "YDB not ready; startup continues, requests may fail until configured.");
|
|
15
|
+
}
|
|
16
|
+
const app = buildServer();
|
|
17
|
+
server = app.listen(PORT, () => {
|
|
18
|
+
logger.info({ port: PORT }, "ydb-qdrant proxy listening");
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
void start();
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { DistanceKind, VectorType } from "../types.js";
|
|
2
|
+
export declare function notifyUpsert(tableName: string, count?: number): void;
|
|
3
|
+
export declare function requestIndexBuild(tableName: string, dimension: number, distance: DistanceKind, vectorType: VectorType, opts?: {
|
|
4
|
+
force?: boolean;
|
|
5
|
+
}): void;
|