🎉 What’s new in Elastic 8.15

Learn about Elastic 8.15 which includes better semantic search, new OTel distribution, SIEM data import, and more.

The 8.15 release includes:

  • semantic_text: making RAG development much easier with simplified mapping, type and automatic chunking. With this, you basically switch from this 8.14 index/query:
POST semantic-starwars/_doc
{
  "quote": "These are <em>not</em> the droids you are looking for.",
  "quote_e5": [ 0.5, 10, 6, ...]
}
GET semantic-starwars/_search
{
  "query": {
    "knn": {
      "field": "quote_e5"
      "k" : 10,
      "num_candidates": 100,
      "query_vector_builder": {
        "text_embedding": {
          "model_id": "e5-small-multilingual",
          "model_text": "search for an android"
}}}}}

To this 8.15 version:

POST semantic-starwars/_doc
{
  "quote": "These are <em>not</em> the droids you are looking for."
}
GET semantic-starwars/_search
{
  "query": {
    "semantic": {
      "field": "quote_e5"
      "query" : "search for an android"
}}}

Easier, right?

Release blogs

Learn more with our release blog posts:

3 Likes