chromadb向量数据库搭建和使用

一、服务端搭建

1.本地拉取容器镜像

|---------------------------------|
| docker pull chromadb``/chroma |

2.将本地容器镜像上传到远程服务器(如果远程服务器可以直接拉取镜像可以直接拉取,无需这一步)

|------------------------------------------------------------------------------------------------------------------|
| docker save -o chromadb.``tar chromadb``/chroma scp /Users/本地目录/chromadb``.``tar root@远程机器ip:``/远程机器路径 |

3.远程服务器加载并运行容器镜像

|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| docker load -i chromadb.``tar docker run --``rm --name chromadb -p 8001:8000 -``v .``/chromadb``:``/chroma/chroma --``env``-``file ./.chroma_env chromadb``/chroma |

注释:

复制代码
-p 8001:8000   将服务器8001端口映射到容器8000端口
复制代码
-v ./chromadb:/chroma/chroma     将服务器存储路径./chromadb映射到容器路径/chroma/chroma
复制代码
--env-file ./.chroma_env        容器服务chromadb运行时的相关配置

.chroma_env配置内容

|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| # 容器中数据是否持久化配置 IS_PERSISTENT=TRUE # 容器中向量数据存储路径 chroma-data=``/chroma/chroma/ # 服务端认证token CHROMA_SERVER_AUTHN_CREDENTIALS=``test``-token # 服务端认证方式 CHROMA_SERVER_AUTHN_PROVIDER=chromadb.auth.token_authn.TokenAuthenticationServerProvider |

二、客户端使用

需要安装依赖:pip install chromadb-client

|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| import chromadb import chromadb.utils.embedding_functions as embedding_functions import logging import sys from chromadb.config ``import Settings from dotenv ``import load_dotenv from datetime ``import datetime # 使用日志记录查看查询和事件 # log_format = '%(asctime)s - %(levelname)s - %(message)s' # logging.basicConfig(stream=sys.stdout, level=logging.INFO,format=log_format) # 获取向量数据库客户端 chroma_client ``= chromadb.HttpClient(host``=``'服务器ip'``, ``port``=``8001``, ``settings``=``Settings( ``chroma_client_auth_provider``=``"chromadb.auth.token_authn.TokenAuthClientProvider"``, ``chroma_client_auth_credentials``=``"test-token"``) ``) # 定义向量化函数(使用微软的azure) openai_ef ``= embedding_functions.OpenAIEmbeddingFunction( ``api_key``=``""``, ``api_base``=""``, ``api_type``=``"azure"``, ``api_version``=``""``, ``model_name``=``"embedding-3-small" ``) # 创建数据集 # collection = chroma_client.create_collection(name="my_collection", # embedding_function=openai_ef, # metadata={ # "description": "my first Chroma collection", # "created": str(datetime.now()) # } ) # 删除数据集 # chroma_client.delete_collection(name="my_collection") # 获取数据集 collection ``= chroma_client.get_collection(name``=``"my_collection"``,embedding_function``=``openai_ef) # 向数据集中增加数据 # collection.add( # documents=[ # "This is a document about pineapple", # "This is a document about hawai" # ], # metadatas=[{"chapter": "3", "verse": "16"}, {"chapter": "3", "verse": "5"}], # ids=["id1", "id2"] # ) # 文本查询数据 # results = collection.query( # query_texts=["This is a query document about hawai"], # Chroma will embed this for you # n_results=1 # how many results to return # ) # 文本查询并过滤 results ``= collection.query( ``query_texts``=``[``"This is a query document about hawai"``], ``n_results``=``2``, ``# metadatas 元数据过滤 ``# where={"verse": "16"}, ``# 文本内容过滤 ``where_document``=``{ ``"$contains"``:``"pineapple"``} ) print``(results) |

相关推荐
这个DBA有点耶1 小时前
AI写的SQL跑崩了生产库,这锅谁背?
数据库·人工智能·程序员
镜舟科技2 小时前
Databricks 再提 LTAP,AI 时代的数据底座为何重回大一统叙事?
数据库·架构·agent
Databend3 小时前
从湖仓升级为 Agent 时代的数据控制面,Snowflake 和 Databricks 有哪些布局
大数据·数据库·agent
ClouGence6 小时前
SQL Server CDC 能放到 Always On 备库读吗?一文讲透原理与实践
数据库·sql server
先吃饱再说1 天前
存储的进化:从 MySQL 到浏览器缓存,数据到底住在哪?
数据库
Nturmoils1 天前
字段太多看不全,ksql 的展开模式和输出控制怎么用
数据库·后端
Databend1 天前
Agent 轨迹分析与归因的数据工程实践
大数据·数据库·agent
这个DBA有点耶1 天前
SQL改写进阶:标量子查询的“隐形代价”与消除实战
数据库·mysql·架构
smallyoung1 天前
数据库乐观锁深度解析:MySQL、PostgreSQL 实战 + Spring Boot 集成指南
数据库·mysql·postgresql
parade岁月1 天前
MySQL JOIN解析:朴实无华但食之有味
数据库·后端