Elasticsearch
ElasticsearchStore #
Elasticsearch 向量存储。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
index_name
|
str
|
Elasticsearch 索引的名称。 |
required |
es_client
|
Optional[Any]
|
可选。预先存在的 AsyncElasticsearch 客户端。 |
无
|
es_url
|
Optional[str]
|
可选。Elasticsearch URL。 |
无
|
es_cloud_id
|
Optional[str]
|
可选。Elasticsearch 云 ID。 |
无
|
es_api_key
|
Optional[str]
|
可选。Elasticsearch API 密钥。 |
无
|
es_user
|
Optional[str]
|
可选。Elasticsearch 用户名。 |
无
|
es_password
|
Optional[str]
|
可选。Elasticsearch 密码。 |
无
|
text_field
|
str
|
可选。存储文本的 Elasticsearch 字段名称。 |
'content'
|
vector_field
|
str
|
可选。存储嵌入向量的 Elasticsearch 字段名称。 |
'embedding'
|
batch_size
|
int
|
可选。批量索引的大小。默认为 200。 |
200
|
distance_strategy
|
Optional[DISTANCE_STRATEGIES]
|
可选。用于相似度搜索的距离策略。默认为 "COSINE"。 |
'COSINE'
|
retrieval_strategy
|
Optional[AsyncRetrievalStrategy]
|
要使用的检索策略。AsyncBM25Strategy / AsyncSparseVectorStrategy / AsyncDenseVectorStrategy / AsyncRetrievalStrategy。默认为 AsyncDenseVectorStrategy。 |
无
|
抛出异常
类型 | 描述 |
---|---|
ConnectionError
|
如果 AsyncElasticsearch 客户端无法连接到 Elasticsearch。 |
ValueError
|
如果 es_client、es_url 或 es_cloud_id 均未提供。 |
示例
pip install llama-index-vector-stores-elasticsearch
from llama_index.vector_stores import ElasticsearchStore
# Additional setup for ElasticsearchStore class
index_name = "my_index"
es_url = "http://localhost:9200"
es_cloud_id = "<cloud-id>" # Found within the deployment page
es_user = "elastic"
es_password = "<password>" # Provided when creating deployment or can be reset
es_api_key = "<api-key>" # Create an API key within Kibana (Security -> API Keys)
# Connecting to ElasticsearchStore locally
es_local = ElasticsearchStore(
index_name=index_name,
es_url=es_url,
)
# Connecting to Elastic Cloud with username and password
es_cloud_user_pass = ElasticsearchStore(
index_name=index_name,
es_cloud_id=es_cloud_id,
es_user=es_user,
es_password=es_password,
)
# Connecting to Elastic Cloud with API Key
es_cloud_api_key = ElasticsearchStore(
index_name=index_name,
es_cloud_id=es_cloud_id,
es_api_key=es_api_key,
)
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 |
|
add #
add(nodes: List[BaseNode], *, create_index_if_not_exists: bool = True, **add_kwargs: Any) -> List[str]
将节点添加到 Elasticsearch 索引。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
nodes
|
List[BaseNode]
|
带有嵌入向量的节点列表。 |
required |
create_index_if_not_exists
|
bool
|
可选。如果 Elasticsearch 索引不存在是否创建。默认为 True。 |
True
|
返回值
类型 | 描述 |
---|---|
List[str]
|
已添加到索引的节点 ID 列表。 |
抛出异常
类型 | 描述 |
---|---|
ImportError
|
如果未安装 elasticsearch['async'] python 包。 |
BulkIndexError
|
如果 AsyncElasticsearch async_bulk 索引失败。 |
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
|
async_add async
#
async_add(nodes: List[BaseNode], *, create_index_if_not_exists: bool = True, **add_kwargs: Any) -> List[str]
将节点添加到 Elasticsearch 索引的异步方法。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
nodes
|
List[BaseNode]
|
带有嵌入向量的节点列表。 |
required |
create_index_if_not_exists
|
bool
|
可选。如果 AsyncElasticsearch 索引不存在是否创建。默认为 True。 |
True
|
返回值
类型 | 描述 |
---|---|
List[str]
|
已添加到索引的节点 ID 列表。 |
抛出异常
类型 | 描述 |
---|---|
ImportError
|
如果未安装 elasticsearch python 包。 |
BulkIndexError
|
如果 AsyncElasticsearch async_bulk 索引失败。 |
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
|
delete #
delete(ref_doc_id: str, **delete_kwargs: Any) -> None
从 Elasticsearch 索引删除节点。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
ref_doc_id
|
str
|
要删除的节点 ID。 |
required |
delete_kwargs
|
Any
|
可选。传递给 Elasticsearch delete_by_query 的额外参数。 |
{}
|
抛出异常
类型 | 描述 |
---|---|
Exception
|
如果 Elasticsearch delete_by_query 失败。 |
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 |
|
adelete async
#
adelete(ref_doc_id: str, **delete_kwargs: Any) -> None
从 Elasticsearch 索引异步删除节点。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
ref_doc_id
|
str
|
要删除的节点 ID。 |
required |
delete_kwargs
|
Any
|
可选。传递给 AsyncElasticsearch delete_by_query 的额外参数。 |
{}
|
抛出异常
类型 | 描述 |
---|---|
Exception
|
如果 AsyncElasticsearch delete_by_query 失败。 |
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
|
delete_nodes #
delete_nodes(node_ids: Optional[List[str]] = None, filters: Optional[MetadataFilters] = None, **delete_kwargs: Any) -> None
使用节点 ID 和过滤器从向量存储中删除节点。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
Optional[List[str]]
|
可选的要删除的节点 ID 列表。
|
filters |
无
|
Optional[MetadataFilters]
|
可选的用于选择要删除节点的元数据过滤器。
|
可选的传递给删除操作的额外参数。 |
无
|
delete_kwargs
|
Any
|
adelete_nodes |
{}
|
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
|
adelete_nodes 异步
#
adelete_nodes(node_ids: Optional[List[str]] = None, filters: Optional[MetadataFilters] = None, **delete_kwargs: Any) -> None
使用节点 ID 和过滤器从向量存储中异步删除节点。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
Optional[List[str]]
|
可选的要删除的节点 ID 列表。
|
节点 ID 列表。默认为 None。 |
无
|
Optional[MetadataFilters]
|
可选的用于选择要删除节点的元数据过滤器。
|
元数据过滤器。默认为 None。 |
无
|
delete_kwargs
|
Any
|
adelete_nodes |
{}
|
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 |
|
query #
query(query: VectorStoreQuery, custom_query: Optional[Callable[[Dict, Union[VectorStoreQuery, None]], Dict]] = None, es_filter: Optional[List[Dict]] = None, metadata_keyword_suffix: str = '.keyword', **kwargs: Any) -> VectorStoreQueryResult
查询索引以查找前 k 个最相似节点。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
query_embedding
|
List[float]
|
查询嵌入向量 |
required |
custom_query
|
Optional[Callable[[Dict, Union[VectorStoreQuery, None]], Dict]]
|
可选。接受 es 查询体并返回修改后的查询体的自定义查询函数。可用于向 Elasticsearch 查询添加额外的查询参数。 |
无
|
es_filter
|
Optional[List[Dict]]
|
可选。要应用于查询的 Elasticsearch 过滤器。如果在查询中提供了过滤器,则此过滤器将被忽略。 |
无
|
metadata_keyword_suffix
|
str
|
要附加到 keyword 类型元数据字段的后缀。 |
'.keyword'
|
返回值
名称 | 类型 | 描述 |
---|---|---|
VectorStoreQueryResult |
VectorStoreQueryResult
|
查询结果。 |
抛出异常
类型 | 描述 |
---|---|
Exception
|
如果 Elasticsearch 查询失败。 |
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 |
|
aquery async
#
aquery(query: VectorStoreQuery, custom_query: Optional[Callable[[Dict, Union[VectorStoreQuery, None]], Dict]] = None, es_filter: Optional[List[Dict]] = None, metadata_keyword_suffix: str = '.keyword', **kwargs: Any) -> VectorStoreQueryResult
异步查询索引以查找前 k 个最相似节点。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
query_embedding
|
VectorStoreQuery
|
查询嵌入向量 |
required |
custom_query
|
Optional[Callable[[Dict, Union[VectorStoreQuery, None]], Dict]]
|
可选。接受 es 查询体并返回修改后的查询体的自定义查询函数。可用于向 AsyncElasticsearch 查询添加额外的查询参数。 |
无
|
es_filter
|
Optional[List[Dict]]
|
可选。要应用于查询的 AsyncElasticsearch 过滤器。如果在查询中提供了过滤器,则此过滤器将被忽略。 |
无
|
metadata_keyword_suffix
|
str
|
要附加到 keyword 类型元数据字段的后缀。 |
'.keyword'
|
返回值
名称 | 类型 | 描述 |
---|---|---|
VectorStoreQueryResult |
VectorStoreQueryResult
|
查询结果。 |
抛出异常
类型 | 描述 |
---|---|
Exception
|
如果 AsyncElasticsearch 查询失败。 |
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 |
|
get_nodes #
get_nodes(node_ids: Optional[List[str]] = None, filters: Optional[MetadataFilters] = None) -> List[BaseNode]
从 Elasticsearch 索引获取节点。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
Optional[List[str]]
|
可选的要删除的节点 ID 列表。
|
要检索的节点 ID 列表。 |
无
|
Optional[MetadataFilters]
|
可选的用于选择要删除节点的元数据过滤器。
|
要应用的元数据过滤器。 |
无
|
返回值
类型 | 描述 |
---|---|
List[BaseNode]
|
List[BaseNode]: 从索引中检索到的节点列表。 |
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
|
aget_nodes async
#
aget_nodes(node_ids: Optional[List[str]] = None, filters: Optional[MetadataFilters] = None) -> List[BaseNode]
从 Elasticsearch 索引异步获取节点。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
Optional[List[str]]
|
可选的要删除的节点 ID 列表。
|
要检索的节点 ID 列表。 |
无
|
Optional[MetadataFilters]
|
可选的用于选择要删除节点的元数据过滤器。
|
要应用的元数据过滤器。 |
无
|
返回值
类型 | 描述 |
---|---|
List[BaseNode]
|
List[BaseNode]: 从索引中检索到的节点列表。 |
抛出异常
类型 | 描述 |
---|---|
ValueError
|
如果既未提供 node_ids 也未提供 filters。 |
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
|
clear #
clear() -> None
清除 Elasticsearch 索引中的所有节点。此方法删除并重新创建索引。
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
631 632 633 634 635 636 |
|
aclear async
#
aclear() -> None
异步清除 Elasticsearch 索引中的所有节点。此方法删除并重新创建索引。
源代码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-elasticsearch/llama_index/vector_stores/elasticsearch/base.py
638 639 640 641 642 643 644 |
|