README.md 5.2 KB
Newer Older
J
jielinxu 已提交
1
![Milvuslogo](https://github.com/milvus-io/docs/blob/branch-0.5.0/assets/milvus_logo.png)
J
jielinxu 已提交
2

J
jielinxu 已提交
3 4 5
![LICENSE](https://img.shields.io/badge/license-Apache--2.0-brightgreen)
![Language](https://img.shields.io/badge/language-C%2B%2B-blue)

J
JinHai-CN 已提交
6
- [Slack Community](https://join.slack.com/t/milvusio/shared_invite/enQtNzY1OTQ0NDI3NjMzLWNmYmM1NmNjOTQ5MGI5NDhhYmRhMGU5M2NhNzhhMDMzY2MzNDdlYjM5ODQ5MmE3ODFlYzU3YjJkNmVlNDQ2ZTk)
J
jielinxu 已提交
7
- [Twitter](https://twitter.com/milvusio)
J
jielinxu 已提交
8 9
- [Blog](https://www.milvus.io/blog/)
- [CSDN](https://zilliz.blog.csdn.net/)
J
jielinxu 已提交
10
- [中文官网](https://www.milvus.io/zh-CN/)
J
jielinxu 已提交
11

J
JinHai-CN 已提交
12 13 14

# Welcome to Milvus

J
jielinxu 已提交
15
Firstly, welcome, and thanks for your interest in [Milvus](https://milvus.io)! ​​No matter who you are, what you do, we greatly appreciate your contribution to help us reinvent data science with Milvus.
J
JinHai-CN 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

## What is Milvus

Milvus is an open source vector search engine that supports similarity search of large-scale vectors. Built on optimized indexing algorithm, it is compatible with major AI/ML models.

Milvus provides stable Python, C++ and Java APIs.

Keep up-to-date with newest releases and latest updates by reading Milvus [release notes](https://milvus.io/docs/en/Releases/v0.4.0/).

- GPU-accelerated search engine

  Milvus is designed for the largest scale of vector index. CPU/GPU heterogeneous computing architecture allows you to process data at a speed 1000 times faster.

- Intelligent index

J
jielinxu 已提交
31
  With a "Decide Your Own Algorithm" approach, you can embed machine learning and advanced algorithms into Milvus without the headache of complex data engineering or migrating data between disparate systems. Milvus is built on optimized indexing algorithm based on quantization indexing, tree-based and graph indexing methods.
J
JinHai-CN 已提交
32 33 34 35 36 37

- Strong scalability

  The data is stored and computed on a distributed architecture. This lets you scale data sizes up and down without redesigning the system.

## Architecture
J
jielinxu 已提交
38
![Milvus_arch](https://github.com/milvus-io/docs/blob/branch-0.5.0/assets/milvus_arch.)
J
JinHai-CN 已提交
39 40 41

## Get started

J
jielinxu 已提交
42
### Install using docker
J
JinHai-CN 已提交
43 44 45

Use Docker to install Milvus is a breeze. See the [Milvus install guide](https://milvus.io/docs/en/userguide/install_milvus/) for details.

J
jielinxu 已提交
46
### Build from source
J
JinHai-CN 已提交
47

J
jielinxu 已提交
48
#### Software requirements
J
JinHai-CN 已提交
49

J
jielinxu 已提交
50 51 52 53
- Ubuntu 18.04 or higher
- CMake 3.14 or higher
- CUDA 10.0 or higher
- NVIDIA driver 418 or higher
J
JinHai-CN 已提交
54

J
jielinxu 已提交
55
#### Compilation
J
JinHai-CN 已提交
56

J
jielinxu 已提交
57
##### Step 1 Install dependencies
J
JinHai-CN 已提交
58 59

```shell
J
jielinxu 已提交
60 61
$ cd [Milvus sourcecode path]/core
./ubuntu_build_deps.sh
J
JinHai-CN 已提交
62 63
```

J
jielinxu 已提交
64
##### Step 2 Build
J
JinHai-CN 已提交
65 66 67 68 69 70 71 72 73 74

```shell
$ cd [Milvus sourcecode path]/core
$ ./build.sh -t Debug
or 
$ ./build.sh -t Release
```

When the build is completed, all the stuff that you need in order to run Milvus will be installed under `[Milvus root path]/core/milvus`.

J
jielinxu 已提交
75
#### Launch Milvus server
J
JinHai-CN 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114

```shell
$ cd [Milvus root path]/core/milvus
```

Add `lib/` directory to `LD_LIBRARY_PATH`

```
$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/milvus/lib
```

Then start Milvus server:

```
$ cd scripts
$ ./start_server.sh
```

To stop Milvus server, run:

```shell
$ ./stop_server.sh
```

To edit Milvus settings in `conf/server_config.yaml` and `conf/log_config.conf`, please read [Milvus Configuration](https://www.milvus-io/docs/master/reference/milvus_config.md).

### Try your first Milvus program

#### Run Python example code

Make sure [Python 3.4](https://www.python.org/downloads/) or higher is already installed and in use.

Install Milvus Python SDK.

```shell
# Install Milvus Python SDK
$ pip install pymilvus==0.2.0
```

J
jielinxu 已提交
115
Create a new file `example.py`, and add [Python example code](https://github.com/milvus-io/pymilvus/blob/master/examples/AdvancedExample.py) to it.
J
JinHai-CN 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131

Run the example code.

```python
# Run Milvus Python example
$ python3 example.py
```

#### Run C++ example code

```shell
 # Run Milvus C++ example
 $ cd [Milvus root path]/core/milvus/bin
 $ ./sdk_simple
```

J
jielinxu 已提交
132 133 134
#### Run Java example code
Make sure Java 8 or higher is already installed.

J
jielinxu 已提交
135
Refer to [this link](https://github.com/milvus-io/milvus-sdk-java/tree/master/examples) for the example code.
J
jielinxu 已提交
136

J
JinHai-CN 已提交
137 138
## Contribution guidelines

J
jielinxu 已提交
139
Contributions are welcomed and greatly appreciated. If you want to contribute to Milvus, please read our [contribution guidelines](CONTRIBUTING.md). This project adheres to the [code of conduct](CODE_OF_CONDUCT.md) of Milvus. By participating, you are expected to uphold this code.
J
JinHai-CN 已提交
140

J
jielinxu 已提交
141
We use [GitHub issues](https://github.com/milvus-io/milvus/issues/new/choose) to track issues and bugs. For general questions and public discussions, please join our community.
J
JinHai-CN 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154

## Join the Milvus community

To connect with other users and contributors, welcome to join our [slack channel](https://join.slack.com/t/milvusio/shared_invite/enQtNzY1OTQ0NDI3NjMzLWNmYmM1NmNjOTQ5MGI5NDhhYmRhMGU5M2NhNzhhMDMzY2MzNDdlYjM5ODQ5MmE3ODFlYzU3YjJkNmVlNDQ2ZTk). 

## Milvus Roadmap

Please read our [roadmap](https://milvus.io/docs/en/roadmap/) to learn about upcoming features.

## Resources

[Milvus official website](https://www.milvus.io)

J
jielinxu 已提交
155
[Milvus docs](https://www.milvus.io/docs/en/userguide/install_milvus/)
J
JinHai-CN 已提交
156

J
jielinxu 已提交
157 158
[Milvus bootcamp](https://github.com/milvus-io/bootcamp)

J
JinHai-CN 已提交
159 160
[Milvus blog](https://www.milvus.io/blog/)

J
jielinxu 已提交
161
[Milvus CSDN](https://zilliz.blog.csdn.net/)
J
JinHai-CN 已提交
162 163 164 165 166 167

[Milvus roadmap](https://milvus.io/docs/en/roadmap/)


## License

J
jielinxu 已提交
168
[Apache 2.0 license](milvus-io/milvus/LICENSE.md)