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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
AI
AI
B
Blog RSS Feed
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
Threatpost
I
Intezer
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
T
Threat Research - Cisco Blogs
Google DeepMind News
Google DeepMind News
GbyAI
GbyAI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
Schneier on Security
Webroot Blog
Webroot Blog
Recorded Future
Recorded Future
aimingoo的专栏
aimingoo的专栏
L
Lohrmann on Cybersecurity
Simon Willison's Weblog
Simon Willison's Weblog
MyScale Blog
MyScale Blog
Project Zero
Project Zero
L
LangChain Blog
B
Blog
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
美团技术团队
Engineering at Meta
Engineering at Meta
Cisco Talos Blog
Cisco Talos Blog
D
Docker
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
S
Security Affairs
Attack and Defense Labs
Attack and Defense Labs
N
News | PayPal Newsroom
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
量子位
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
W
WeLiveSecurity
V2EX - 技术
V2EX - 技术
TaoSecurity Blog
TaoSecurity Blog
博客园 - Franky
P
Proofpoint News Feed
Jina AI
Jina AI
Google DeepMind News
Google DeepMind News
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
The Hacker News
The Hacker News
G
GRAHAM CLULEY

The Cloud Experience Everywhere articles

What I learned about Epistemia: A new way to build AI you can trust Strategy is the easy part, but can you deliver? Simplify HPE Morpheus Software automation with the new visual workflow builder AI evolution: Shifting from training to inference needs infrastructure modernization HPE Morpheus Central is here. Managing a multisite fleet just changed. Architecting your IT environment for change is key to the Great VM Reset An overview of IT service management using HPE OpsRamp Software Service Desk Beyond the basics: Deeper observability for HPE Morpheus Software – VM essentials Simpler, faster hybrid cloud management with agentic AI in HPE Morpheus Software 9.0 Navigating the signal tsunami: Why shared observability matters today HPE OpsRamp Software named as major player in the IDC MarketScape Achieving zero downtime: A deep dive into HPE Morpheus Software high availability Scaling the hybrid cloud: Unveiling HPE Morpheus Software version 9.0 The rise of agentic AI: Ushering in the next era of intelligent IT Unleashing AI factory ROI: Secure agentic AI on multitenant infrastructure Introducing HPE CloudOps Software for cloud service providers Introducing HPE CloudOps Software for cloud service providers Next-gen IT unleashed: The boom of cloud paging and application packaging The critical role of security fundamentals in the age of AI GreenLake Marketplace launches end-to-end commerce capabilities Discover what’s next with HPE Services at HPE Discover Las Vegas 2026 Secure application modernization with the Strangler Pattern to reduce security risk The private cloud resurgence by IDC—rebalancing cost, control, and AI HPE global trade integration: Enabling compliance in a connected digital world Sovereign by design for the workplace Reset with intent: Four smart moves to rationalize VMware exposure Building the high-performance data foundation for enterprise AI with HPE Storage Mastering hybrid cloud migration with HPE CloudOps Software suite Why sovereign cloud is becoming the backbone of modern workplace solutions Facilitating federated data and AI at scale with federated mesh architectures Reviving private cloud by automating day‑2 operations using Kubernetes operators From alerts to action: how Operations Copilot accelerates incident response Unleashing enterprise AI factories with Kubeflow: Overcoming multitenancy hurdles What a ride it has been—HPE Morpheus VM Essentials Software hits version 8.1 Cyber resilience: Securing the last line of defense in the digital age AI-augmented endpoint engineering: From deterministic to autonomous delivery HPE OpsRamp Software March 2026 release: Key updates for IT operations teams Simplify bare metal management with HPE Morpheus Enterprise Software BMaaS Operations Copilot from HPE OpsRamp Software: Your partner for next-gen IT operations ITIL (version 5): What’s new, what’s different, and why recertification matters Stop overpaying for platforms: Invest in GPUs for real AI value Why buying a training subscription is just like buying a gym membership HPE Morpheus Enterprise Software enhances its Kubernetes service with new features The great VM reset: Why enterprise virtualization needs a new foundation Engineering modern resilient-by-design applications for hybrid cloud Streamlining hybrid cloud: Announcing the unified HPE/hpe Terraform provider v1.1.0 Inside HPE Morpheus Minute: A closer look at storage types in HPE Morpheus Software Half your AI factory is sitting idle; here is the blueprint that fixes it Introducing True N-Tier Multi-Tenancy in HPE Morpheus Enterprise Software v8.1.0 Beyond observability: From signals to semantic intelligence in hybrid cloud Operationalizing agentic AI with NVIDIA Nemotron and HPE agents hub
PostgreSQL's BM25 ranking algorithm for enterprise-grade search quality
2026-03-17 · via The Cloud Experience Everywhere articles

Learn how PostgreSQL’s native BM25 brings advanced full-text search to your database, removing the need for external search tools and cutting infrastructure complexity.

Picture1.png

Why PostgreSQL’s BM25 changes everything for enterprise search

For years, enterprise architects have relied on specialized engines like Elasticsearch for sophisticated full-text search, running them alongside operational databases. This approach, while effective, introduces complexity, data synchronization challenges, and higher costs. Now, with PostgreSQL’s integration of the Okapi BM25 ranking algorithm, organizations can deliver Elasticsearch-quality search relevance directly from their database—eliminating the need for a separate search infrastructure.

BM25: Smarter search, better results

BM25 is a proven ranking formula that powers modern search engines. Unlike basic keyword counting, BM25 uses:

  • Term frequency saturation: Limits the impact of repeated keywords
  • Inverse document frequency: Elevates rare, meaningful terms
  • Length normalization: Rewards focused documents over lengthy, unfocused ones

This results in relevance ranking that matches user expectations and solves common problems like keyword stuffing and irrelevant long documents.

The impact for PostgreSQL users

With BM25, organizations can consolidate search and transactional workloads on PostgreSQL, ensuring data consistency, reducing infrastructure footprint, and lowering costs. DevOps teams benefit from managing fewer systems, and business users experience faster, more accurate search.

BM25 in action: Practical benefits

Consider a knowledge base with 100,000 articles. Traditional search might rank verbose or keyword-heavy documents too high. BM25 ensures focused, authoritative content rises to the top, improving user satisfaction and productivity.

PostgreSQL + BM25 vs. Elasticsearch

BM25 in PostgreSQL (through extensions like pg_textsearch) creates a new decision point: when is Elasticsearch necessary, and when is PostgreSQL sufficient?

PostgreSQL advantages:

  • Integration and consistency: Search index and operational data are unified, eliminating lag and stale results
  • Operational simplicity: One system to manage, patch, and scale
  • Cost efficiency: Open-source licensing and reduced infrastructure
  • SQL flexibility: Combine BM25 search with relational queries

Elasticsearch advantages:

  • Massive scale: Distributed architecture for billions of documents
  • Advanced features: Fuzzy matching, aggregations, and language analyzers
  • Search optimization: Purpose built for high-volume search workloads

Key insight: For most organizations, PostgreSQL with BM25 is preferable unless you have specific needs for massive scale or advanced search features.

Real-world use cases

  • Knowledge bases and documentation: Instant, relevant search across thousands of articles without a separate search cluster
  • Online marketplace catalogs: Intelligent product search directly in PostgreSQL
  • Log analytics: Efficient log search for moderate data volumes
  • Hybrid AI search: Combine BM25 and vector similarity for advanced AI applications
  • Regulatory environments: Simplified compliance and audit processes

 Modernization implications

BM25 support in PostgreSQL aligns with trends in cost optimization, architectural simplification, open-source leadership, and cloud/container strategies. For large-scale distributed databases, it also simplifies disaster recovery and backup.

Why partner with HPE?
Adopting new database capabilities—especially ones that reshape your architecture—requires more than documentation and community forums. It demands expertise, confidence, and a partner who understands your environment.

By partnering with the Advisory and Professional Services team, you gain the architectural design, deep implementation expertise, and seasoned operational knowledge needed to reduce the risk of your enterprise search on PostgreSQL adoption and verify your critical data infrastructure is truly unbreakable. We’ve navigated the complexities, so you don’t have to.

Engage us from start to finish, or wherever you are in your journey.

Figure 1. HPE Services from start to finish of database journey.png

 Figure 1. HPE Services from start to finish of database journey

Conclusion
PostgreSQL's BM25 integration represents more than a feature addition; it's a fundamental shift in what's possible within a single database platform. For organizations tired of managing multiple systems, paying for specialized search infrastructure, and dealing with data synchronization complexity, PostgreSQL now offers a compelling alternative.

The decision to consolidate search into your operational database isn't just technically sound—it's increasingly the prudent choice. You simplify architecture, reduce costs, and maintain tighter data consistency. You move faster, with fewer moving parts to break.

The era of you need separate systems for transactions and search is ending. Your database is ready to handle both—and do it better, faster, and cheaper than before.

Ready to explore how PostgreSQL BM25 can modernize your database architecture? Reach out to HPE. Let's discuss your specific environment, validate the opportunity, and chart a path to simpler, more efficient infrastructure.

Learn about technology services consulting from HPE.

Learn more: hpe.com/us/en/services/advisory-and-professional.html.

Meet the authors:

Rayaguru Dash.png

Rayaguru Dash, Database Delivery Lead

Meet Rayaguru, a seasoned database expert and consultant at HPE since 2012. With over 18 years of hands-on experience across a spectrum of database technologies, for clients seeking migration, design, and performance tuning solutions. He has empowered numerous clients to optimize their systems, ensuring seamless operations and enhanced efficiency. With a passion for unravelling complexities and a track record of delivering impactful solutions, Rayaguru continues to be a driving force in the realm of database consultancy.

Ronnie Arangali.jpg

Ronnie Arangali, WW Database Lead

Meet Ronnie, a highly skilled database expert with extensive experience in architecting, implementing, and optimizing complex database solutions with proven ability to mentor and guide teams, fostering a culture of innovation and best practices. He has demonstrated success in delivering high-performance, scalable, and secure database systems.