Xu Peng ea1241dc21 fix(db): fix env compile error
Former-commit-id: aaf0f190a14e88cdfeb69e6ededc14f739181841
2019-04-15 20:49:30 +08:00
2019-04-15 20:49:30 +08:00
2019-04-10 21:06:48 +08:00
2019-04-15 16:50:58 +08:00
2019-04-03 16:14:12 +08:00
2019-03-25 19:40:42 +08:00

Vecwise Engine Dev Guide

Install via Conda

  1. Install Miniconda first

    • bash vecwise_engine/install/miniconda.sh
  2. Create environment

    • conda env create -f vecwise_engine/environment.yaml
  3. Test your installation

Install via Docker

  1. Install nvidia-docker

  2. docker build -t cuda9.0/VecEngine .

  3. docker run -it cuda9.0/VecEngine bash

Create Database

  1. Install MySQL

    • sudo apt-get update
    • sudo apt-get install mariadb-server
  2. Create user and database:

    • create user vecwise;
    • create database vecdata;
    • grant all privileges on vecdata.* to 'vecwise'@'%';
    • flush privileges;
  3. Create table:

    • cd vecwise_engine/pyengine && python manager.py create_all
Description
Milvus 是一款全球领先的开源向量数据库,赋能 AI 应用和向量相似度搜索,加速非结构化数据检索。
Readme Apache-2.0 238 MiB
Languages
Go 59.4%
Python 19.5%
C++ 19.2%
Shell 0.7%
Groovy 0.4%
Other 0.5%