mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-01 00:15:30 +08:00
MS-251 Build/Merge background thread error handling See merge request megasearch/milvus!289 Former-commit-id: a594c6111e15dcc556e9f2bf238606047b1bb7b2
Vecwise Engine Dev Guide
Install via Conda
-
Install Miniconda first
bash vecwise_engine/install/miniconda.sh
-
Create environment
conda env create -f vecwise_engine/environment.yaml
-
Test your installation
Install via Docker
-
Install nvidia-docker
-
docker build -t cuda9.0/VecEngine . -
docker run -it cuda9.0/VecEngine bash
Create Database
-
Install MySQL
sudo apt-get updatesudo apt-get install mariadb-server
-
Create user and database:
create user vecwise;create database vecdata;grant all privileges on vecdata.* to 'vecwise'@'%';flush privileges;
-
Create table:
cd vecwise_engine/pyengine && python manager.py create_all
Description
Languages
Go
59%
C++
19.7%
Python
19.5%
Shell
0.7%
Groovy
0.4%
Other
0.5%