Elasticsearch:升级索引以使用 ELSER 最新的模型

在此 notebook 中,我们将看到有关如何使用 Reindex API 将索引升级到 ELSER 模型 .elser_model_2 的示例。

注意:或者,你也可以通过 update_by_query 来更新索引以使用 ELSER。 在本笔记本中,我们将看到使用 Reindex API 的示例。

我们将在本笔记本中看到的场景:

  1. 将未生成 text_expansion 字段的索引迁移到 ELSER 模型 .elser_model_2
  2. 使用 .elser_model_1 升级现有索引以使用 .elser_model_2 模型
  3. 升级使用不同模型的索引以使用 ELSER

在下面的颜色中,我们将使用 Elastic Stack 8.11 来进行展示。

安装

如果你还没有安装好自己的 Elasticsearch 及 Kibana,请参考文章:

安装 Elasticsearch 及 Kibana

如果你还没有安装好自己的 Elasticsearch 及 Kibana,那么请参考一下的文章来进行安装:

在安装的时候,请选择 Elastic Stack 8.x 进行安装。在安装的时候,我们可以看到如下的安装信息:

​​

为了能够上传向量模型,我们必须订阅白金版或试用。

​​

​​

安装 ELSER 模型

如果你还没有安装好 ELSER 模型,请参考文章 "Elasticsearch:部署 ELSER - Elastic Learned Sparse EncoderR" 来进行安装。在这里就不再累述了。请注意安装好的 ELSER 模型的 ID 为 .elser_model_2 而不是之前那篇文章中的 .elser_model_1。

Python

我们需要安装相应的 Elasticsearch 包:

markdown 复制代码
1.  $ pwd
2.  /Users/liuxg/python/elser
3.  $ pip3 install elasticsearch -qU
4.  $ pip3 list | grep elasticseach
5.  elasticsearch             8.11.1
6.  rag-elasticsearch         0.0.1        /Users/liuxg/python/rag-elasticsearch/my-app/packages/rag-elasticsearch

环境变量

在启动 Jupyter 之前,我们设置如下的环境变量:

ini 复制代码
1.  export ES_USER="elastic"
2.  export ES_PASSWORD="yarOjyX5CLqTsKVE3v*d"
3.  export ES_ENDPOINT="localhost"

拷贝 Elasticsearch 证书

我们把 Elasticsearch 的证书拷贝到当前的目录下:

markdown 复制代码
1.  $ pwd
2.  /Users/liuxg/python/elser
3.  $ cp ~/elastic/elasticsearch-8.11.0/config/certs/http_ca.crt .
4.  $ ls
5.   find_books_about_christmas_without_searching_for_christmas.ipynb
6.  Chatbot with LangChain conversational chain and OpenAI.ipynb
7.  ElasticKnnSearch.ipynb
8.  ElasticVectorSearch.ipynb
9.  ElasticsearchStore.ipynb
10.  Mental Health FAQ.ipynb
11.  Multilingual semantic search.ipynb
12.  NLP text search using hugging face transformer model.ipynb
13.  Question Answering with Langchain and OpenAI.ipynb
14.  RAG-langchain-elasticsearch.ipynb
15.  Semantic search - ELSER.ipynb
16.  Semantic search quick start.ipynb
17.  book_summaries_1000_chunked.json
18.  books.json
19.  data.json
20.  http_ca.crt
21.  lib
22.  sample_data.json
23.  upgrading-index-to-use-elser.ipynb
24.  vector_search_implementation_guide_api.ipynb
25.  workplace-docs.json

在上面,我们把 Elasticsearch 的证书 http_ca.crt 拷贝到当前的目录下。

运行应用

使用客户端连接 Elasticsearch

ini 复制代码
1.  from elasticsearch import Elasticsearch
2.  import os

4.  elastic_user=os.getenv('ES_USER')
5.  elastic_password=os.getenv('ES_PASSWORD')
6.  elastic_endpoint=os.getenv("ES_ENDPOINT")

8.  url = f"https://{elastic_user}:{elastic_password}@{elastic_endpoint}:9200"
9.  es = Elasticsearch(url, ca_certs = "./http_ca.crt", verify_certs = True)

11.  print(es.info())

从上面的输出中,我们可以看到与 Elasticsearch 的连接是成功的。

案例一

在本例中,我们将了解如何升级已经配置了摄取管道的索引,以使用 ELSER 模型 elser_model_2

使用 lowercase 创建摄取管道

我们将创建一个简单的管道来将标题字段值转换为小写,并在我们的索引上使用此摄取管道。

ini 复制代码
1.  es.ingest.put_pipeline(
2.      id="ingest-pipeline-lowercase", 
3.      description="Ingest pipeline to change title to lowercase",
4.      processors=[
5.      {
6.        "lowercase": {
7.          "field": "title"
8.        }
9.      }
10.    ]
11.  )

创建索引 - 带有映射的 movies

接下来,我们将使用我们在上一步中创建的管道 ingest-pipeline-lowercase 创建一个索引。

perl 复制代码
1.  es.indices.delete(index="movies",ignore_unavailable=True)
2.  es.indices.create(
3.    index="movies",
4.    settings={
5.        "index": {
6.            "number_of_shards": 1,
7.            "number_of_replicas": 1,
8.            "default_pipeline": "ingest-pipeline-lowercase"
9.        }
10.    },
11.    mappings={
12.      "properties": {
13.        "plot": {
14.          "type": "text",
15.          "fields": {
16.            "keyword": {
17.              "type": "keyword",
18.              "ignore_above": 256
19.            }
20.          }
21.        },
22.      }
23.    }
24.  )

摄入文档

我们现在准备将 12 部电影的示例数据集插入到我们的电影索引中。我们把如下的数据保存到一个叫做 movies.json 的文件中。

movies.json

css 复制代码
1.  [2.      {3.      "title": "Pulp Fiction",4.      "runtime": "154",5.      "plot": "The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.",6.      "keyScene": "John Travolta is forced to inject adrenaline directly into Uma Thurman's heart after she overdoses on heroin.",7.      "genre": "Crime, Drama",8.      "released": "1994"9.      },10.      {11.      "title": "The Dark Knight",12.      "runtime": "152",13.      "plot": "When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.",14.      "keyScene": "Batman angrily responds 'I'm Batman' when asked who he is by Falcone.",15.      "genre": "Action, Crime, Drama, Thriller",16.      "released": "2008"17.      },18.      {19.      "title": "Fight Club",20.      "runtime": "139",21.      "plot": "An insomniac office worker and a devil-may-care soapmaker form an underground fight club that evolves into something much, much more.",22.      "keyScene": "Brad Pitt explains the rules of Fight Club to Edward Norton. The first rule of Fight Club is: You do not talk about Fight Club. The second rule of Fight Club is: You do not talk about Fight Club.",23.      "genre": "Drama",24.      "released": "1999"25.      },26.      {27.      "title": "Inception",28.      "runtime": "148",29.      "plot": "A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into thed of a C.E.O.",30.      "keyScene": "Leonardo DiCaprio explains the concept of inception to Ellen Page by using a child's spinning top.",31.      "genre": "Action, Adventure, Sci-Fi, Thriller",32.      "released": "2010"33.      },34.      {35.      "title": "The Matrix",36.      "runtime": "136",37.      "plot": "A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers.",38.      "keyScene": "Red pill or blue pill? Morpheus offers Neo a choice between the red pill, which will allow him to learn the truth about the Matrix, or the blue pill, which will return him to his former life.",39.      "genre": "Action, Sci-Fi",40.      "released": "1999"41.      },42.      {43.      "title": "The Shawshank Redemption",44.      "runtime": "142",45.      "plot": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.",46.      "keyScene": "Andy Dufresne escapes from Shawshank prison by crawling through a sewer pipe.",47.      "genre": "Drama",48.      "released": "1994"49.      },50.      {51.      "title": "Goodfellas",52.      "runtime": "146",53.      "plot": "The story of Henry Hill and his life in the mob, covering his relationship with his wife Karen Hill and his mob partners Jimmy Conway and Tommy DeVito in the Italian-American crime syndicate.",54.      "keyScene": "Joe Pesci's character Tommy DeVito shoots young Spider in the foot for not getting him a drink.",55.      "genre": "Biography, Crime, Drama",56.      "released": "1990"57.      },58.      {59.      "title": "Se7en",60.      "runtime": "127",61.      "plot": "Two detectives, a rookie and a veteran, hunt a serial killer who uses the seven deadly sins as his motives.",62.      "keyScene": "Brad Pitt's character David Mills shoots John Doe after he reveals that he murdered Mills' wife.",63.      "genre": "Crime, Drama, Mystery, Thriller",64.      "released": "1995"65.      },66.      {67.      "title": "The Silence of the Lambs",68.      "runtime": "118",69.      "plot": "A young F.B.I. cadet must receive the help of an incarcerated and manipulative cannibal killer to help catch another serial killer, a madman who skins his victims.",70.      "keyScene": "Hannibal Lecter explains to Clarice Starling that he ate a census taker's liver with some fava beans and a nice Chianti.",71.      "genre": "Crime, Drama, Thriller",72.      "released": "1991"73.      },74.      {75.      "title": "The Godfather",76.      "runtime": "175",77.      "plot": "An organized crime dynasty's aging patriarch transfers control of his clandestine empire to his reluctant son.",78.      "keyScene": "James Caan's character Sonny Corleone is shot to death at a toll booth by a number of machine gun toting enemies.",79.      "genre": "Crime, Drama",80.      "released": "1972"81.      },82.      {83.      "title": "The Departed",84.      "runtime": "151",85.      "plot": "An undercover cop and a mole in the police attempt to identify each other while infiltrating an Irish gang in South Boston.",86.      "keyScene": "Leonardo DiCaprio's character Billy Costigan is shot to death by Matt Damon's character Colin Sullivan.",87.      "genre": "Crime, Drama, Thriller",88.      "released": "2006"89.      },90.      {91.      "title": "The Usual Suspects",92.      "runtime": "106",93.      "plot": "A sole survivor tells of the twisty events leading up to a horrific gun battle on a boat, which began when five criminals met at a seemingly random police lineup.",94.      "keyScene": "Kevin Spacey's character Verbal Kint is revealed to be the mastermind behind the crime, when his limp disappears as he walks away from the police station.",95.      "genre": "Crime, Mystery, Thriller",96.      "released": "1995"97.      }98.  ]
markdown 复制代码
1.  $ pwd
2.  /Users/liuxg/python/elser
3.  $ ls movies.json 
4.  movies.json

我们接下来运行如下的代码:

python 复制代码
1.  import json
2.  from elasticsearch import helpers
3.  import time

5.  with open('movies.json') as f:
6.     data_json = json.load(f)

8.  # Prepare the documents to be indexed
9.  documents = []
10.  for doc in data_json:
11.      documents.append({
12.          "_index": "movies",
13.          "_source": doc,
14.      })

16.  # Use helpers.bulk to index
17.  helpers.bulk(es, documents)

19.  print("Done indexing documents into `movies` index!")
20.  time.sleep(5)

我们可以在 Kibana 中查看到刚才摄入的 12 个文档:

更新 movies 索引使用 ELSER 模型

我们已准备好使用 ELSER 模型 .elser_model_2 将 movies 重新索引到新索引。 第一步,我们必须创建新的摄取管道和索引才能使用 ELSER 模型。

创建一个使用 ELSER 模型的新的 ingest pipeline

让我们使用 ELSER 模型 .elser_model_2 创建一个新的摄取管道。

ini 复制代码
1.  es.ingest.put_pipeline(
2.      id="elser-ingest-pipeline", 
3.      description="Ingest pipeline for ELSER",
4.      processors=[
5.      {
6.        "inference": {
7.          "model_id": ".elser_model_2",
8.          "input_output": [
9.              {
10.                "input_field": "plot",
11.                "output_field": "plot_embedding"
12.              }
13.            ]
14.        }
15.      }
16.    ]
17.  )

使用映射创建一个新的索引

接下来,使用 ELSER 所需的映射创建索引。

perl 复制代码
1.  es.indices.delete(index="elser-movies",ignore_unavailable=True)
2.  es.indices.create(
3.    index="elser-movies",
4.    mappings={
5.      "properties": {
6.        "plot": {
7.          "type": "text",
8.          "fields": {
9.            "keyword": {
10.              "type": "keyword",
11.              "ignore_above": 256
12.            }
13.          }
14.        },
15.        "plot_embedding": { 
16.          "type": "sparse_vector" 
17.        }
18.      }
19.    }
20.  )

注意:

  • plot_embedding 是包含生成的类型为稀疏向量的标记的字段的名称
  • plot 是创建稀疏向量的字段的名称。

使用更新的 ingest pipeline 来进行 reindex

借助 Reindex API,我们可以将数据从旧索引电影复制到新索引 elser-movies,并将摄取管道设置为 elser-ingest-pipeline 。 成功后,索引 elser-movies 会在你针对 ELSER 推理的 text_expansion 术语上创建标记。

bash 复制代码
1.  es.reindex(source={
2.      "index": "movies"
3.    }, dest={
4.      "index": "elser-movies",
5.      "pipeline":  "elser-ingest-pipeline"
6.    })
7.  time.sleep(7)

重新索引完成后,检查索引 elser-movies 中的任何文档,并注意到该文档有一个附加字段 plot_embedding,其中包含我们将在 text_expansion 查询中使用的术语。

使用 ELSER 来查询文档

让我们尝试使用 ELSER 模型 .elser_model_2 对索引进行语义搜索:

ini 复制代码
1.  response = es.search(
2.      index='elser-movies', 
3.      size=3,
4.      query={
5.          "text_expansion": {
6.              "plot_embedding": {
7.                  "model_id":".elser_model_2",
8.                  "model_text":"investigation"
9.              }
10.          }
11.      }
12.  )

14.  for hit in response['hits']['hits']:
15.      doc_id = hit['_id']
16.      score = hit['_score']
17.      title = hit['_source']['title']
18.      plot = hit['_source']['plot']
19.      print(f"Score: {score}\nTitle: {title}\nPlot: {plot}\n")

案例二:将 ELSER 模型的索引升级到 .elser_model_2

如果你已有 ELSER 模型 .elser_model_1 的索引,并且想要升级到 .elser_model_2,则可以结合使用 Reindex API 和摄取管道来使用 ELSER .elser_model_2 模型。

注意:在开始之前,请确保你使用的是 Elasticsearch 8.11 版本并且已部署 ELSER 模型 .elser_model_2。

创建一个新的 ingest pipeline

我们将使用 .elser_model_2 创建一个管道,以便能够重新索引。

ini 复制代码
1.  es.ingest.put_pipeline(
2.      id="elser-pipeline-upgrade-demo", 
3.      description="Ingest pipeline for ELSER upgrade demo",
4.      processors=[
5.      {
6.        "inference": {
7.          "model_id": ".elser_model_2",
8.          "input_output": [
9.              {
10.                "input_field": "plot",
11.                "output_field": "plot_embedding"
12.              }
13.            ]
14.        }
15.      }
16.    ]
17.  )

创建一个带有 mapping 的新索引

我们将创建一个新索引,其中包含支持 ELSER 所需的映射:

perl 复制代码
1.  es.indices.delete(index="elser-upgrade-index-demo", ignore_unavailable=True)
2.  es.indices.create(
3.    index="elser-upgrade-index-demo",
4.    mappings={
5.      "properties": {
6.        "plot": {
7.          "type": "text",
8.          "fields": {
9.            "keyword": {
10.              "type": "keyword",
11.              "ignore_above": 256
12.            }
13.          }
14.        },
15.        "plot_embedding": {
16.          "type": "sparse_vector"
17.        },
18.      }
19.    }
20.  )

使用 reindex API

我们将使用 Reindex API 将数据从旧索引移动到新索引 elser-upgrade-index-demo。 我们将从旧索引中排除 target 字段,并在重新索引时使用 .elser_model_2 在字段 plot_embedding 中生成新 token。

注意:请确保将 my-index 替换为你要升级的索引名称,并将字段 my-tokens-field 替换为你之前生成的 token 的字段名称。

bash 复制代码
1.  client.reindex(source={
2.      "index": "my-index", # replace with your index name
3.      "_source": {
4.        "excludes": ["my-tokens-field"]  # replace with the field-name from your index, that has previously generated tokens
5.      }}, 
6.      dest={
7.      "index": "elser-upgrade-index-demo",
8.      "pipeline":  "elser-pipeline-upgrade-demo"
9.    })
10.  time.sleep(5)

为了演示的目的。我们使用上一步中得到的 elser-movies 来进行练习。我们假定它是有 .elser_model_1 所生成的(尽管它是由 .elser_model_2 模型所生成的)。我们使用如下的代码:

bash 复制代码
1.  es.reindex(source={
2.      "index": "elser-movies", # replace with your index name
3.      "_source": {
4.        "excludes": ["plot_embedding"]  # replace with the field-name from your index, that has previously generated tokens
5.      }}, 
6.      dest={
7.      "index": "elser-upgrade-index-demo",
8.      "pipeline":  "elser-pipeline-upgrade-demo"
9.    })
10.  time.sleep(5)

查询你的数据

重新索引完成后,你就可以查询数据并执行语义搜索:

ini 复制代码
1.  response = es.search(
2.      index='elser-upgrade-index-demo', 
3.      size=3,
4.      query={
5.          "text_expansion": {
6.              "plot_embedding": {
7.                  "model_id":".elser_model_2",
8.                  "model_text":"child toy"
9.              }
10.          }
11.      }
12.  )

14.  for hit in response['hits']['hits']:
15.      doc_id = hit['_id']
16.      score = hit['_score']
17.      title = hit['_source']['title']
18.      plot = hit['_source']['plot']
19.      print(f"Score: {score}\nTitle: {title}\nPlot: {plot}\n")

案例三:将不同模型的索引升级到 ELSER

现在我们将了解如何使用不同的模型移动已经生成嵌入的索引。

让我们考虑索引 - blogs,并使用 NLP 模型 Sentence-transformers__all-minilm-l6-v2 生成 text_embedding。 如果你想了解更多如何将 NLP 模型加载到索引的信息,请按照我们的笔记本中的步骤 NLP text search using hugging face transformer model.ipynb

请遵循我们之前执行的类似过程:

  1. 使用 ELSER 模型 .elser_model_2 创建摄取管道
  2. 使用我们在上一步中创建的管道创建带有映射的索引。
  3. 重新索引,从 blogs 索引中排除 embedding 的字段

在开始之前,让我们先看一下我们的索引博客并查看映射:

ini 复制代码
es.indices.get(index="blogs")

注意字段 text_embedding,我们将在新索引中排除 (exclude) 该字段,并根据博客索引中的字段 title 生成新映射

创建 ingest pipeline

接下来,我们将使用 ELSER 模型 .elser_model_2 创建管道

ini 复制代码
1.  client.ingest.put_pipeline(
2.      id="elser-pipeline-blogs", 
3.      description="Ingest pipeline for ELSER upgrade",
4.      processors=[
5.      {
6.        "inference": {
7.          "model_id": ".elser_model_2",
8.          "input_output": [
9.            {
10.              "input_field": "title",
11.              "output_field": "title_embedding"
12.            }
13.          ]
14.        }
15.      }
16.    ]
17.  )

创建带有 mappings 的索引

让我们创建一个带有映射的索引 elser-blogs

perl 复制代码
1.  es.indices.delete(index="elser-blogs", ignore_unavailable=True)
2.  es.indices.create(
3.    index="elser-blogs",
4.    mappings={
5.      "properties": {
6.        "title": {
7.          "type": "text",
8.          "fields": {
9.            "keyword": {
10.              "type": "keyword",
11.              "ignore_above": 256
12.            }
13.          }
14.        },
15.        "title_embedding": {
16.          "type": "sparse_vector"
17.        },
18.      }
19.    }
20.  )

Reindex API

我们将使用 Reindex API 复制数据并生成 text_expansion 嵌入到我们的新索引 elser-blogs 中。

bash 复制代码
1.  es.reindex(source={
2.      "index": "blogs",
3.      "_source": {
4.        "excludes": ["text_embedding"]
5.      }
6.    }, dest={
7.      "index": "elser-blogs",
8.      "pipeline":  "elser-pipeline-blogs"
9.    })
10.  time.sleep(5)

查询你的数据

成功! 现在我们可以在索引 elser-blogs 上查询数据。

ini 复制代码
1.  response = es.search(
2.      index='elser-blogs', 
3.      size=3,
4.      query={
5.          "text_expansion": {
6.              "title_embedding": {
7.                  "model_id":".elser_model_2",
8.                  "model_text":"Track network connections"
9.              }
10.          }
11.      }
12.  )

14.  for hit in response['hits']['hits']:
15.      doc_id = hit['_id']
16.      score = hit['_score']
17.      title = hit['_source']['title']
18.      print(f"Score: {score}\nTitle: {title}")

整个 notebook 可以在地址进行下载。

相关推荐
爱吃土豆的马铃薯ㅤㅤㅤㅤㅤㅤㅤㅤㅤ1 小时前
Elasticsearch的查询语法——DSL 查询
大数据·elasticsearch·jenkins
A陈雷1 小时前
springboot整合elasticsearch,并使用docker desktop运行elasticsearch镜像容器遇到的问题。
spring boot·elasticsearch·docker
Make_magic1 小时前
Git学习教程(更新中)
大数据·人工智能·git·elasticsearch·计算机视觉
Elastic 中国社区官方博客2 小时前
使用真实 Elasticsearch 进行更快的集成测试
大数据·运维·服务器·数据库·elasticsearch·搜索引擎·集成测试
SafePloy安策11 小时前
ES信息防泄漏:策略与实践
大数据·elasticsearch·开源
涔溪11 小时前
Ecmascript(ES)标准
前端·elasticsearch·ecmascript
csdn56597385014 小时前
Elasticsearch 重建索引 数据迁移
elasticsearch·数据迁移·重建索引
天幕繁星14 小时前
docker desktop es windows解决vm.max_map_count [65530] is too low 问题
windows·elasticsearch·docker·docker desktop
Elastic 中国社区官方博客14 小时前
Elasticsearch 8.16:适用于生产的混合对话搜索和创新的向量数据量化,其性能优于乘积量化 (PQ)
大数据·数据库·人工智能·elasticsearch·搜索引擎·ai·全文检索
m1chiru14 小时前
Elasticsearch 实战应用:高效搜索与数据分析
elasticsearch