티스토리 뷰

카테고리 없음

Milvus 설치 방법

미니대왕님 2024. 12. 8. 16:23

참고 URL : https://github.com/milvus-io/pymilvus

 

GitHub - milvus-io/pymilvus: Python SDK for Milvus.

Python SDK for Milvus. Contribute to milvus-io/pymilvus development by creating an account on GitHub.

github.com

 

참고 URL : https://milvus.io/docs/ko/quickstart.md

 

Milvus 벡터 데이터베이스 문서

Milvus v2.5.x 문서

milvus.io

 

 

Milvus 설치 방법

 

root@cp-k8s:/data# pip3 --version
pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)
root@cp-k8s:/data# pip3 install pymilvus
Collecting pymilvus
  Downloading pymilvus-2.5.0-py3-none-any.whl (212 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 212.8/212.8 KB 1.6 MB/s eta 0:00:00
Collecting python-dotenv<2.0.0,>=1.0.1
  Downloading python_dotenv-1.0.1-py3-none-any.whl (19 kB)
Collecting pandas>=1.2.4
  Downloading pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 7.0 MB/s eta 0:00:00
Collecting ujson>=2.0.0
  Downloading ujson-5.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (53 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 53.6/53.6 KB 16.9 MB/s eta 0:00:00
Collecting milvus-lite>=2.4.0
  Downloading milvus_lite-2.4.10-py3-none-manylinux2014_x86_64.whl (49.4 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 49.4/49.4 MB 6.6 MB/s eta 0:00:00
Collecting grpcio<=1.67.1,>=1.49.1
  Downloading grpcio-1.67.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 8.6 MB/s eta 0:00:00
Collecting protobuf>=3.20.0
  Downloading protobuf-5.29.1-cp38-abi3-manylinux2014_x86_64.whl (319 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 319.7/319.7 KB 47.2 MB/s eta 0:00:00
Collecting setuptools>69
  Downloading setuptools-75.6.0-py3-none-any.whl (1.2 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 13.3 MB/s eta 0:00:00
Collecting tqdm
  Downloading tqdm-4.67.1-py3-none-any.whl (78 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.5/78.5 KB 24.7 MB/s eta 0:00:00
Collecting tzdata>=2022.7
  Downloading tzdata-2024.2-py2.py3-none-any.whl (346 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 346.6/346.6 KB 11.5 MB/s eta 0:00:00
Collecting pytz>=2020.1
  Downloading pytz-2024.2-py2.py3-none-any.whl (508 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 508.0/508.0 KB 9.9 MB/s eta 0:00:00

Milvus는 Docker 또는 소스 빌드를 통해 설치할 수 있습니다.

 

Docker에 Milvus 설치
Milvus는 도커 컨테이너로 설치할 수 있는 설치 스크립트를 제공합니다. 이 스크립트는 Milvus 리포지토리에서 사용할 수 있습니다. Docker에 Milvus를 설치하려면 다음을 실행하세요.

# Download the installation script
$ curl -sfL https://raw.githubusercontent.com/milvus-io/milvus/master/scripts/standalone_embed.sh -o standalone_embed.sh

# Start the Docker container
$ bash standalone_embed.sh start

 

 

 

 

다음과 같이 이 컨테이너를 중지하고 삭제할 수 있습니다.

# Stop Milvus
$ bash standalone_embed.sh stop

# Delete Milvus data
$ bash standalone_embed.sh delete

다음과 같이 최신 버전 Milvus로 업그레이드할 수 있습니다.

# upgrade Milvus
$ bash standalone_embed.sh upgrade

 

  1. Milvus 구성 파일을 다운로드합니다.
     wget https://github.com/milvus-io/milvus/releases/download/v2.4.17/milvus-standalone-docker-compose.yml -O docker-compose.yml
  2. Milvus를 시작합니다.

sudo docker compose up -d Creating milvus-etcd ... done Creating milvus-minio ... done Creating milvus-standalone ... done

 

 

댓글