-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c91e8b1
commit ec70260
Showing
10 changed files
with
209 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ jobs: | |
test: | ||
name: API Tests | ||
runs-on: ubuntu-latest | ||
if: false | ||
strategy: | ||
matrix: | ||
python-version: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,16 @@ jobs: | |
- name: Expose Service Ports | ||
run: sh .github/workflows/expose_service_ports.sh | ||
|
||
- name: Set up Vector Stores (TiDB, Weaviate, Qdrant, PGVector, Milvus, PgVecto-RS, Chroma, MyScale, ElasticSearch, Couchbase) | ||
- name: Set up Vector Store (TiDB) | ||
uses: hoverkraft-tech/[email protected] | ||
with: | ||
compose-file: | | ||
docker/tidb/docker-compose.yaml | ||
services: | | ||
tidb | ||
tiflash | ||
- name: Set up Vector Stores (Weaviate, Qdrant, PGVector, Milvus, PgVecto-RS, Chroma, MyScale, ElasticSearch, Couchbase) | ||
uses: hoverkraft-tech/[email protected] | ||
with: | ||
compose-file: | | ||
|
@@ -67,7 +76,10 @@ jobs: | |
pgvector | ||
chroma | ||
elasticsearch | ||
tidb | ||
- name: Check TiDB Ready | ||
shell: bash | ||
run: poetry run -C api python api/tests/integration_tests/vdb/tidb_vector/check_tiflash_ready.py | ||
|
||
- name: Test Vector Stores | ||
run: poetry run -C api bash dev/pytest/pytest_vdb.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
api/tests/integration_tests/vdb/tidb_vector/check_tiflash_ready.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import time | ||
|
||
import pymysql | ||
|
||
|
||
def create_table(): | ||
try: | ||
connection = pymysql.connect( | ||
host="localhost", | ||
port=4000, | ||
user="root", | ||
password="", | ||
) | ||
|
||
with connection.cursor() as cursor: | ||
table_name = "test.foo_vector_table" | ||
create_table_query = f""" | ||
CREATE TABLE {table_name} ( | ||
id INT PRIMARY KEY, | ||
embedding VECTOR(5), | ||
VECTOR INDEX idx_embedding ((VEC_COSINE_DISTANCE(embedding))) | ||
); | ||
""" | ||
drop_table_query = f"DROP TABLE {table_name};" | ||
cursor.execute(create_table_query) | ||
cursor.execute(drop_table_query) | ||
connection.commit() | ||
print("TiFlash is ready in TiDB.") | ||
finally: | ||
if connection: | ||
connection.close() | ||
|
||
|
||
def main(): | ||
attempts = 30 | ||
retry_wait_seconds = 2 | ||
for attempt in range(attempts): | ||
try: | ||
create_table() | ||
break | ||
except Exception as e: | ||
print(f"TiFlash is not ready. Exception: {e}") | ||
print(f"Attempt {attempt + 1} failed,retry in {retry_wait_seconds} seconds...") | ||
time.sleep(retry_wait_seconds) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[replication] | ||
max-replicas = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
log-file = "/logs/tiflash_tikv.log" | ||
|
||
[server] | ||
engine-addr = "tiflash:4030" | ||
addr = "0.0.0.0:20280" | ||
advertise-addr = "tiflash:20280" | ||
status-addr = "tiflash:20292" | ||
|
||
[storage] | ||
data-dir = "/data/flash" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
default_profile = "default" | ||
display_name = "TiFlash" | ||
listen_host = "0.0.0.0" | ||
mark_cache_size = 5368709120 | ||
tmp_path = "/data/tmp" | ||
path = "/data" | ||
tcp_port = 9110 | ||
http_port = 8223 | ||
|
||
[flash] | ||
tidb_status_addr = "tidb:10080" | ||
service_addr = "tiflash:4030" | ||
|
||
[flash.flash_cluster] | ||
cluster_manager_path = "/tiflash/flash_cluster_manager" | ||
log = "/logs/tiflash_cluster_manager.log" | ||
master_ttl = 60 | ||
refresh_interval = 20 | ||
update_rule_interval = 5 | ||
|
||
[flash.proxy] | ||
config = "/tiflash-learner.toml" | ||
|
||
[status] | ||
metrics_port = 8234 | ||
|
||
[logger] | ||
errorlog = "/logs/tiflash_error.log" | ||
log = "/logs/tiflash.log" | ||
count = 20 | ||
level = "debug" | ||
size = "1000M" | ||
|
||
[raft] | ||
pd_addr = "pd0:2379" | ||
storage_engine = "tmt" | ||
|
||
|
||
[users] | ||
|
||
[users.default] | ||
password = "" | ||
profile = "default" | ||
quota = "default" | ||
|
||
[users.default.networks] | ||
ip = "::/0" | ||
|
||
[users.readonly] | ||
password = "" | ||
profile = "readonly" | ||
quota = "default" | ||
|
||
[users.readonly.networks] | ||
ip = "::/0" | ||
|
||
[profiles] | ||
|
||
[profiles.default] | ||
load_balancing = "random" | ||
|
||
[profiles.readonly] | ||
readonly = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
version: '2.1' | ||
|
||
services: | ||
pd0: | ||
image: pingcap/pd:v8.5.0 | ||
ports: | ||
- "2379" | ||
volumes: | ||
- ./config/pd-nightly-tiflash.toml:/pd.toml:ro | ||
- ./data:/data | ||
- ./logs:/logs | ||
command: | ||
- --name=pd0 | ||
- --client-urls=http://0.0.0.0:2379 | ||
- --peer-urls=http://0.0.0.0:2380 | ||
- --advertise-client-urls=http://pd0:2379 | ||
- --advertise-peer-urls=http://pd0:2380 | ||
- --initial-cluster=pd0=http://pd0:2380 | ||
- --data-dir=/data/pd | ||
- --config=/pd.toml | ||
- --log-file=/logs/pd.log | ||
restart: on-failure | ||
tikv: | ||
image: pingcap/tikv:v8.5.0 | ||
volumes: | ||
- ./data:/data | ||
- ./logs:/logs | ||
command: | ||
- --addr=0.0.0.0:20160 | ||
- --advertise-addr=tikv:20160 | ||
- --status-addr=tikv:20180 | ||
- --data-dir=/data/tikv | ||
- --pd=pd0:2379 | ||
- --log-file=/logs/tikv.log | ||
depends_on: | ||
- "pd0" | ||
restart: on-failure | ||
tidb: | ||
image: pingcap/tidb:v8.5.0 | ||
ports: | ||
- "4000:4000" | ||
- "10080:10080" | ||
volumes: | ||
- ./logs:/logs | ||
command: | ||
- --status=10080 | ||
- --advertise-address=tidb | ||
- --store=tikv | ||
- --path=pd0:2379 | ||
- --log-file=/logs/tidb.log | ||
depends_on: | ||
- "tikv" | ||
restart: on-failure | ||
tiflash: | ||
image: pingcap/tiflash:v8.5.0 | ||
volumes: | ||
- ./config/tiflash-nightly.toml:/tiflash.toml:ro | ||
- ./config/tiflash-learner-nightly.toml:/tiflash-learner.toml:ro | ||
- ./data:/data | ||
- ./logs:/logs | ||
command: | ||
- --config=/tiflash.toml | ||
depends_on: | ||
- "tikv" | ||
- "tidb" | ||
restart: on-failure |