forked from mindsdb/mindsdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_milvus_handler.py
More file actions
460 lines (404 loc) · 13.9 KB
/
test_milvus_handler.py
File metadata and controls
460 lines (404 loc) · 13.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
import importlib
from unittest.mock import patch
import pandas as pd
import pytest
import time
from mindsdb_sql_parser import parse_sql
from ..unit.executor_test_base import BaseExecutorTest
try:
pymilvus = importlib.import_module("pymilvus")
MILVUS_INSTALLED = True
except ImportError:
MILVUS_INSTALLED = False
@pytest.mark.skipif(not MILVUS_INSTALLED, reason="pymilvus is not installed")
class TestMilvusHandler(BaseExecutorTest):
def run_sql(self, sql):
ret = self.command_executor.execute_command(parse_sql(sql))
assert ret.error_code is None
if ret.data is not None:
return ret.data.to_df()
def setup_method(self):
super().setup_method()
# create a milvus database
self.run_sql("""
CREATE DATABASE milvus_test
WITH
ENGINE = 'milvus',
PARAMETERS = {
"uri": "./milvus.db",
"create_embedding_dim": 3
};
""")
self.run_sql("""
CREATE DATABASE milvus_test_auto_id
WITH
ENGINE = 'milvus',
PARAMETERS = {
"uri": "./milvus.db",
"create_embedding_dim": 3,
"create_auto_id": true
};
""")
def drop_table(self, table_name):
pymilvus.connections.connect(
uri="./milvus.db",
)
pymilvus.utility.drop_collection(table_name)
@pytest.mark.xfail(reason="create table for vectordatabase is not well supported")
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_create_table(self, postgres_handler_mock):
# create an empty table
sql = """
CREATE TABLE milvus_test.testable;
"""
self.run_sql(sql)
# create a table with the schema definition is not allowed
sql = """
CREATE TABLE milvus_test.testable (
id int,
metadata text,
embedding float[]
);
"""
with pytest.raises(Exception):
self.run_sql(sql)
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_create_with_select(self, postgres_handler_mock):
df = pd.DataFrame(
{
"id": ["id1", "id2"],
"content": ["this is a test", "this is a test"],
"metadata": [{"test": "test"}, {"test": "test"}],
"embeddings": [[1.0, 2.0, 3.0], [1.0, 2.0, 3.0]],
}
)
self.set_handler(postgres_handler_mock, "pg", tables={"df": df})
self.drop_table("testable")
sql = """
CREATE TABLE milvus_test.testable (
SELECT * FROM pg.df
)
"""
# this should work
self.run_sql(sql)
sql = """
CREATE TABLE milvus_test.testable (
SELECT * FROM pg.df
)
"""
# this should work
self.run_sql(sql)
self.drop_table("testable")
@pytest.mark.xfail(reason="drop table for vectordatabase is not working")
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_drop_table(self, postgres_handler_mock):
df = pd.DataFrame(
{
"id": ["id1", "id2"],
"content": ["this is a test", "this is a test"],
"metadata": [{"test": "test"}, {"test": "test"}],
"embeddings": [[1.0, 2.0, 3.0], [1.0, 2.0, 3.0]],
}
)
self.set_handler(postgres_handler_mock, "pg", tables={"testable": df})
self.drop_table("testable")
# create a table
sql = """
CREATE TABLE milvus_test.testable (
SELECT * FROM pg.df
)
"""
self.run_sql(sql)
# drop a table
sql = """
DROP TABLE milvus_test.testable;
"""
self.run_sql(sql)
# drop a non existent table will raise an error
sql = """
DROP TABLE milvus_test.test_table2;
"""
with pytest.raises(Exception):
self.run_sql(sql)
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_insert_into(self, postgres_handler_mock):
df = pd.DataFrame(
{
"id": ["id1", "id2", "id3"],
"content": ["this is a test", "this is a test", "this is a test"],
"metadata": [{"test": "test1"}, {"test": "test2"}, {"test": "test3"}],
"embeddings": [[1.0, 2.0, 3.0], [1.0, 2.0, 3.0], [1.0, 2.0, 3.0]],
}
)
df2 = pd.DataFrame(
{
"content": ["this is a test", "this is a test", "this is a test"],
"metadata": [{"test": "test1"}, {"test": "test2"}, {"test": "test3"}],
"embeddings": [
[1.0, 2.0, 4.0],
[1.0, 2.0, 5.0],
[1.0, 2.0, 3.0],
],
}
)
self.set_handler(postgres_handler_mock, "pg", tables={"df": df, "df2": df2})
self.drop_table("testable")
self.drop_table("testableauto")
# create tables
sql = """
CREATE TABLE milvus_test.testable (
SELECT * FROM pg.df
)
"""
self.run_sql(sql)
sql = """
CREATE TABLE milvus_test_auto_id.testableauto (
SELECT * FROM pg.df2
)
"""
self.run_sql(sql)
# insert into a table with values
sql = """
INSERT INTO milvus_test.testable (
id,content,metadata,embeddings
)
VALUES (
"id4", 'this is a test', '{"test": "test"}', '[1.0, 8.0, 9.0]'
)
"""
self.run_sql(sql)
time.sleep(1) # wait for milvus to load the data asynchronously
# check if the data is inserted
sql = """
SELECT * FROM milvus_test.testable
WHERE id = "id4"
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 1
# insert without specifying id should work in autoid one
sql = """
INSERT INTO milvus_test_auto_id.testableauto (
content,metadata,embeddings
)
VALUES (
'this is a test', '{"test": "test"}', '[1.0, 2.0, 3.0]'
)
"""
self.run_sql(sql)
time.sleep(1) # wait for milvus to load the data asynchronously
# check if the data is inserted
sql = """
SELECT * FROM milvus_test_auto_id.testableauto
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 4
# insert into a table with a select statement
sql = """
INSERT INTO milvus_test_auto_id.testableauto (content,metadata,embeddings)
SELECT * FROM pg.df2
"""
self.run_sql(sql)
time.sleep(1) # wait for milvus to load the data asynchronously
# check if the data is inserted
sql = """
SELECT * FROM milvus_test.testableauto
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 7
self.drop_table("testable")
self.drop_table("testableauto")
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_select_from(self, postgres_handler_mock):
df = pd.DataFrame(
{
"id": ["id1", "id2"],
"content": ["this is a test", "this is a test"],
"metadata": [{"test": "test"}, {"test": "test"}],
"embeddings": [[1.0, 2.0, 3.0], [1.0, 2.0, 3.0]],
}
)
self.set_handler(postgres_handler_mock, "pg", tables={"testable": df})
self.drop_table("testable")
# create a table
sql = """
CREATE TABLE milvus_test.testable (
SELECT * FROM pg.df
)
"""
self.run_sql(sql)
time.sleep(1) # wait for milvus to load the data asynchronously
# query a table without any filters
sql = """
SELECT * FROM milvus_test.testable
"""
self.run_sql(sql)
# query a table with id
sql = """
SELECT * FROM milvus_test.testable
WHERE id = 'id1'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 1
# query a table with a search vector, without limit
sql = """
SELECT * FROM milvus_test.testable
WHERE search_vector = '[1.0, 2.0, 3.0]'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
# query a table with a search vector, with limit
sql = """
SELECT * FROM milvus_test.testable
WHERE search_vector = '[1.0, 2.0, 3.0]'
LIMIT 1
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 1
# query a table with a metadata filter
sql = """
SELECT * FROM milvus_test.testable
WHERE test = 'test'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
# query a table with a metadata filter and a search vector
sql = """
SELECT * FROM milvus_test.testable
WHERE test = 'test'
AND search_vector = '[1.0, 2.0, 3.0]'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
self.drop_table("testable")
@pytest.mark.xfail(reason="update for vectordatabase is not implemented")
def test_update(self):
# update a table with a metadata filter
sql = """
UPDATE milvus_test.testable
SET test = 'test2'
WHERE test = 'test'
"""
self.run_sql(sql)
# check if the data is updated
sql = """
SELECT * FROM milvus_test.testable
WHERE test = 'test2'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
# update the embeddings
sql = """
UPDATE milvus_test.testable
SET embedding = [3.0, 2.0, 1.0]
WHERE test = 'test2'
"""
self.run_sql(sql)
# check if the data is updated
sql = """
SELECT * FROM milvus_test.testable
WHERE test = 'test2'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
assert ret.embedding[0] == [3.0, 2.0, 1.0]
# update multiple columns
sql = """
UPDATE milvus_test.testable
SET test = 'test3',
embedding = [1.0, 2.0, 3.0]
content = 'this is a test'
WHERE test = 'test2'
"""
self.run_sql(sql)
# check if the data is updated
sql = """
SELECT * FROM milvus_test.testable
WHERE test = 'test3'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
assert ret.embedding[0] == [1.0, 2.0, 3.0]
assert ret.content[0] == "this is a test"
# update a table with a search vector filter is not allowed
sql = """
UPDATE milvus_test.testable
SET `metadata.test = 'test2'
WHERE search_vector = [1.0, 2.0, 3.0]
"""
with pytest.raises(Exception):
self.run_sql(sql)
# update a table without any filters is allowed
sql = """
UPDATE milvus_test.testable
SET metadata.test = 'test3'
"""
self.run_sql(sql)
# check if the data is updated
sql = """
SELECT * FROM milvus_test.testable
WHERE `metadata.test` = 'test3'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
# update a table with a search vector filter and a metadata filter is not allowed
sql = """
UPDATE milvus_test.testable
SET metadata.test = 'test3'
WHERE metadata.test = 'test2'
AND search_vector = [1.0, 2.0, 3.0]
"""
with pytest.raises(Exception):
self.run_sql(sql)
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_delete(self, postgres_handler_mock):
df = pd.DataFrame(
{
"id": ["id1", "id2", "id3"],
"content": ["this is a test", "this is a test", "this is a test"],
"metadata": [{"test": "test1"}, {"test": "test2"}, {"test": "test3"}],
"embeddings": [[1.0, 2.0, 3.0], [1.0, 2.0, 3.0], [1.0, 2.0, 3.0]],
}
)
self.drop_table("testable")
self.set_handler(postgres_handler_mock, "pg", tables={"testable": df})
# create a table
sql = """
CREATE TABLE milvus_test.testable (
SELECT * FROM pg.df
)
"""
self.run_sql(sql)
time.sleep(1) # wait for milvus to load the data asynchronously
# delete by id
sql = """
DELETE FROM milvus_test.testable
WHERE id IN ('id1')
"""
self.run_sql(sql)
time.sleep(1) # wait for milvus to load the data asynchronously
# check if the data is deleted
sql = """
SELECT * FROM milvus_test.testable
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
# delete by multiple ids
sql = """
DELETE FROM milvus_test.testable
WHERE id IN ('id2', 'id3')
"""
self.run_sql(sql)
time.sleep(1) # wait for milvus to load the data asynchronously
# check if the data is deleted
sql = """
SELECT * FROM milvus_test.testable
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
# delete from a table without any filters is not allowed
sql = """
DELETE FROM milvus_test.testable
"""
with pytest.raises(Exception):
self.run_sql(sql)
self.drop_table("testable")