A cloud-native vector database, storage for next generation AI applications
 
 
 
 
 
 
Go to file
zhiru d13b244a46 use env variable to switch mem manager and fix cmake
Former-commit-id: 7928c6384045f002fd4bf4367bcf5ab9b5262ac0
2019-07-09 17:15:21 +08:00
ci fix nightly_main_jenkinsfile docker version bug 2019-07-09 15:06:26 +08:00
cpp use env variable to switch mem manager and fix cmake 2019-07-09 17:15:21 +08:00
docs
install
pyengine
python
.dockerignore
.gitignore
.gitmodules MS-154 2019-07-04 16:15:30 +08:00
CHANGELOGS.md MS-161 - Add CI / CD Module to Milvus Project 2019-07-09 04:44:50 +08:00
CONTRIBUTING.md
Dockerfile
INSTALL.md
LICENSE.md
README.md
environment.yaml
requirements.txt

README.md

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