惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Hugging Face - Blog
Hugging Face - Blog
F
Fortinet All Blogs
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
Y
Y Combinator Blog
博客园_首页
Martin Fowler
Martin Fowler
博客园 - 司徒正美
MyScale Blog
MyScale Blog
宝玉的分享
宝玉的分享
B
Blog
有赞技术团队
有赞技术团队
A
About on SuperTechFans
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
Jina AI
Jina AI

Elastic Blog - Elasticsearch, Kibana, and ELK Stack

The search multiplier: Driving revenue, productivity, and AI at scale Elastic Stack 9.5.2 released ECK 3.5: Dynamic namespaces, pause orchestration, and mTLS everywhere 7 lessons for IT leaders on using observability to monitor AI applications How state and local agencies can get ahead of fraud starting with the data they already have Why agentic treasury needs search and observability From retrieval to agents: 5 takeaways on production architecture for AI agents Elastic achieves Defence Cyber Certification Level 0 in the UK Elastic Stack 8.19.20 released Elastic Stack 9.5.1 released Elastic Stack 9.4.5 released Building trusted agentic AI in financial services: From data to autonomous action Azure Private Link for Elastic Cloud Serverless is now generally available Elastic 9.5: Columnar, VectorDB index mode & auto-calibration, and AI-driven alert triage AI consolidation: Why platforms will win and portfolios will break Closing the AI gap in government: Next-gen knowledge access | Elastic Elastic and OpenAI collaborate to bring frontier intelligence to unstructured enterprise data Elastic Cloud Serverless continues global expansion to 4 more regions Elastic joins NVIDIA and industry leaders as inaugural member in the Open Secure AI Alliance Rethinking the SOC: From tool procurement to platform architecture Elastic’s new metrics capabilities will dramatically improve uptime for public sector IT Elastic and Deductive AI join forces to accelerate agentic incident investigation for engineering teams Higher education analytics for the ultra-intelligent university Elastic Stack 8.19.19 released Elastic Stack 9.4.4 released Elastic Stack 9.3.8 released Elastic Stack 9.4.3 released Elastic achieves the AWS AI Security Distinction, securing AI-specific risks Elastic and Axonius integrate to deliver unified asset intelligence for security teams Elastic’s guide to AI in the interview process
Elastic community newsletter — August 2026
ByElastic DevRel teamAugust 13, 2026 · 2026-08-13 · via Elastic Blog - Elasticsearch, Kibana, and ELK Stack

Hello from the Elastic DevRel team! In this newsletter, we cover version 9.5 of Elasticsearch, the latest blogs and videos, and upcoming events.

What’s new?

Version 9.5 of Elasticsearch and the Elastic Stack promotes native PromQL, Dashboards API, Cases as Data, and natural language authoring to general availability. 9.5 also introduces Columnar Mode, VectorDB index mode, a new multimodal semantic field, and Elastic Agent Builder tracing in technical preview.

Columnar Mode: A new storage foundation

Columnar Mode is a new index mode available in technical preview. It stores each field once in the column store with no inverted index by default. The result is a smaller storage footprint and a faster foundation for analytical queries and long data retention.

Built on Columnar Mode, Columnar Logs is the first profile designed for log data. It keeps a single inverted index on the message field, so full-text search stays fast while storing all other fields in columnar format. Storage use is significantly lower than standard logs without changing the search experience. Both modes are opt-in and existing indices are not affected.

Vector search: VectorDB index mode and auto-calibration

Two technical preview features reduce the setup and tuning work for vector search.

VectorDB index mode sets up a vector index with a single setting. It applies defaults already tuned for vector workloads, including quantization, merge policy, and cache loading, so there is nothing to configure manually:

PUT my-index
{
  "settings": {
    "index": {
      "mode": "vectordb_document"
    }
  }
}

Auto-calibration for DiskBBQ vector search automatically sets quantization depth, preconditioning, and oversampling by analyzing the actual vectors in the index. The tuning that normally requires expertise and repeated testing now happens on its own:

PUT /my_vector_index
{
  "mappings": {
    "properties": {
      "my_vector_field": {
        "type": "dense_vector",
        "dims": 1536,
        "index_options": {
          "type": "bbq-disk",
          "auto_calibration": true
        }
      }
    }
  }
}

Together, these two features mean a vector search index can be created and tuned with minimal configuration.

Multimodal semantic search: Images, audio, video, and PDFs

The new semantic field extends semantic search to images, audio, video, and PDF files. It works the same way as semantic_text for text: Define a field, index your content, and query. Embeddings are generated at ingest time automatically.

You can mix content types in a single field. A document can hold a text description, an image, and an audio clip together. A text query then retrieves the best match across all of them. To search by image rather than text, send the image as a query and Elasticsearch generates the embedding on the fly.

The feature is powered by the jina-embeddings-v5-omni model, which places text, images, audio, video, and PDFs into a shared vector space. It is available as a technical preview in Elasticsearch 9.5 and Elastic Cloud Serverless. Read the full blog post for setup details and code examples.

Agent Builder: Tracing, human approvals, and faster responses

Elastic 9.5 adds three new Agent Builder capabilities.

Agent Observability and Monitoring (technical preview) records every LLM call, tool invocation, and reasoning step as OpenTelemetry (OTel) in Elasticsearch. Teams can inspect token usage, find timing bottlenecks, and debug agent behavior using the same Kibana they already use for operational data. A built-in agent-builder-traces skill lets you query this data in plain language. Custom dashboards and cost-threshold alerts can be built directly against the trace index.

Human-in-the-loop approvals let an agent pause and wait for a person to confirm a sensitive action before continuing. Each approval or rejection is recorded in an audit trail. Approval requests can be sent to external tools, such as Slack, so the decision does not require the approver to be in Kibana.

Agent Builder also delivers faster responses at lower token cost by routing specific tasks to faster models and removing redundant LLM calls. These improvements apply automatically to all Agent Builder users with no configuration change needed.

Prometheus and PromQL now generally available

Native Prometheus and PromQL support is now generally available (GA). Teams can point existing Grafana dashboards and Prometheus tooling at Elastic and run PromQL queries alongside ES|QL with no changes to their existing setup. A migration tool, also now GA, helps bring Grafana and Datadog dashboards and alerts into Kibana.

The new ES95 codec stores metrics at roughly three bytes per sample (about 20% lower than 9.4) and significantly more efficiently than a plain Prometheus storage backend. Elastic also now supports all OpenTelemetry metric temporalities, so any OTel-instrumented application can send metrics over OTLP exactly as emitted with no workarounds.

Alert Zero, Workflows, and rule version history

The goal of Alert Zero is an alert queue that contains only what matters. In 9.5, Attack Discovery works toward that goal by investigating alerts the way an analyst would; it checks entity risk, searches raw events, and looks for supporting evidence before calling something an attack. When it finds a coverage gap, it drafts an ES|QL detection rule for analyst review. Attack Discovery can now run automatically via an Elastic Workflow on a schedule or manually.

Elastic Workflows in 9.5 adds versioning so that teams can see who changed a workflow, compare any two versions, and roll back in one click. A new visual mode shows the workflow as a graph with its triggers, steps, and logic visible alongside the YAML. Human-in-the-loop steps can now send approval requests to Slack, so the workflow can pause and wait for a decision from outside Kibana.

Detection rule version history (technical preview) keeps a full log of every saved rule state, including who made each change and when. Teams can view any past version, compare it to the one before, and restore it in a single action. This is useful for finding out when a rule stopped generating alerts and for compliance frameworks that require evidence of change control.

Upcoming events

Learn Elastic at no cost: Explore self-paced modules to build your Elastic skills.

Elastic{ON} tour, the one-day Elastic conference series around the world, is back. Register and join us in:

  • Mumbai September 30

  • New York October 8

  • Amsterdam  October 20

  • San Francisco  November 4

  • London  February 25

  • Singapore  March 23

Want to speak at Elastic{ON}?

The call for presentations is now open! We're looking for 30-minute technical talks covering Elasticsearch, Kibana, search, observability, security, and real-world use cases. Whether you're new to Elastic or an experienced user, we'd love to hear your ideas. Submit your proposal today.

Join your local Elastic User Group chapter for the latest news on upcoming events! You can also find us on meetup.com. If you’re interested in presenting at a meetup, send an email to meetups@elastic.co.

The release and timing of any features or functionality described in this post remain at Elastic's sole discretion. Any features or functionality not currently available may not be delivered on time or at all. In this blog post, we may have used or referred to third party generative AI tools, which are owned and operated by their respective owners. Elastic does not have any control over the third party tools and we have no responsibility or liability for their content, operation or use, nor for any loss or damage that may arise from your use of such tools. Please exercise caution when using AI tools with personal, sensitive or confidential information. Any data you submit may be used for AI training or other purposes. There is no guarantee that information you provide will be kept secure or confidential. You should familiarize yourself with the privacy practices and terms of use of any generative AI tools prior to use. Elastic, Elasticsearch, and associated marks are trademarks, logos or registered trademarks of elasticsearch B.V. in the United States and other countries. All other company and product names are trademarks, logos or registered trademarks of their respective owners.