A cloud-native vector database, storage for next generation AI applications
 
 
 
 
 
 
Go to file
jinhai 7d4f356972 Merge branch 'branch-0.4.0' into 'branch-0.4.0'
MS-436 Delete vectors failed if index created with index_type: IVF_FLAT/IVF_SQ8

See merge request megasearch/milvus!456

Former-commit-id: 75ec88eedc5f7569579d2885811ab79a9e8e0dff
2019-08-30 16:51:44 +08:00
ci fix jenkinfile bug 2019-08-30 11:24:16 +08:00
cpp MS-436 Delete vectors failed if index created with index_type: IVF_FLAT/IVF_SQ8 2019-08-30 16:39:26 +08:00
docs
install
pyengine
python
.dockerignore
.gitignore
CHANGELOGS.md
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