• bitcoinBitcoin(BTC)$84,180.000.49%
  • ethereumEthereum(ETH)$2,686.290.23%
  • tetherTether(USDT)$1.000.00%
  • binancecoinBNB(BNB)$772.19-0.03%
  • rippleXRP(XRP)$1.52-1.91%
  • usd-coinUSDC(USDC)$1.00-0.01%
  • solanaSolana(SOL)$121.530.42%
  • tronTRON(TRX)$0.335029-0.86%
  • zcashZcash(ZEC)$1,666.229.01%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.030.15%
  • HyperliquidHyperliquid(HYPE)$92.120.52%
  • dogecoinDogecoin(DOGE)$0.096721-0.88%
  • chainlinkChainlink(LINK)$14.112.42%
  • moneroMonero(XMR)$554.850.17%
  • whitebitWhiteBIT Coin(WBT)$83.970.40%
  • USDSUSDS(USDS)$1.000.00%
  • cardanoCardano(ADA)$0.2533860.00%
  • RainRain(RAIN)$0.0128867.79%
  • leo-tokenLEO Token(LEO)$8.961.40%
  • stellarStellar(XLM)$0.217212-0.53%
  • bitcoin-cashBitcoin Cash(BCH)$337.00-0.48%
  • nearNEAR Protocol(NEAR)$4.930.39%
  • uniswapUniswap(UNI)$9.743.10%
  • litecoinLitecoin(LTC)$72.011.67%
  • CantonCanton(CC)$0.1349746.21%
  • Ethena USDeEthena USDe(USDE)$1.00-0.02%
  • avalanche-2Avalanche(AVAX)$10.782.89%
  • suiSui(SUI)$1.160.11%
  • daiDai(DAI)$1.00-0.01%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.5810.27%
  • USD1USD1(USD1)$1.000.00%
  • hedera-hashgraphHedera(HBAR)$0.093341-0.88%
  • BittensorBittensor(TAO)$319.323.59%
  • shiba-inuShiba Inu(SHIB)$0.0000061.32%
  • crypto-com-chainCronos(CRO)$0.0667182.19%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
  • BitwayBitway(BTW)$1.03-21.03%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.02%
  • MemeCoreMemeCore(M)$1.212.35%
  • EthenaEthena(ENA)$0.2721424.51%
  • tether-goldTether Gold(XAUT)$4,279.20-0.17%
  • OndoOndo(ONDO)$0.54-0.37%
  • okbOKB(OKB)$120.580.27%
  • Ripple USDRipple USD(RLUSD)$1.000.01%
  • Circle USYCCircle USYC(USYC)$1.140.00%
  • aaveAave(AAVE)$155.142.71%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • mantleMantle(MNT)$0.693.95%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.15-0.05%
  • polkadotPolkadot(DOT)$1.243.80%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

OceanBase Releases seekdb: An Open Source AI Native Hybrid Search Database for Multi-model RAG and AI Agents

November 27, 2025
in AI & Technology
Reading Time: 7 mins read
A A
OceanBase Releases seekdb: An Open Source AI Native Hybrid Search Database for Multi-model RAG and AI Agents
ShareShareShareShareShare

AI applications rarely deal with one clean table. They mix user profiles, chat logs, JSON metadata, embeddings, and sometimes spatial data. Most teams answer this with a patchwork of an OLTP database, a vector store, and a search engine. OceanBase released seekdb, an open source AI focused database (under the Apache 2.0 license). seekdb is described as an AI native search database that unifies relational data, vector data, text, JSON, and GIS in one engine and exposes hybrid search and in database AI workflows. 

What is seekdb?

seekdb is positioned as the lightweight, embedded version of the OceanBase engine, aimed at AI applications rather than general purpose distributed deployments. It runs as a single node database, supports embedded mode and client or server mode, and remains compatible with MySQL drivers and SQL syntax.

YOU MAY ALSO LIKE

This External GPU Uses Wi-Fi To Transform Any Device Into A Gaming Rig

You Can Use Your Old Laptop To Make A Smart Home Hub

In the capability matrix, seekdb is marked as:

  • Embedded database supported
  • Standalone database supported
  • Distributed database not supported

while the full OceanBase product covers the distributed case.

From a data model perspective, seekdb supports:

  • Relational data with standard SQL
  • Vector search
  • Full text search
  • JSON data
  • Spatial GIS data

all inside one storage and indexing layer.

Hybrid search as the core feature

The main feature OceanBase pushes is hybrid search. This is search that combines vector based semantic retrieval, full text keyword retrieval, and scalar filters in a single query and a single ranking step.

seekdb implements hybrid search through a system package named DBMS_HYBRID_SEARCH with two entry points:

  • DBMS_HYBRID_SEARCH.SEARCH which returns results as JSON, sorted by relevance
  • DBMS_HYBRID_SEARCH.GET_SQL which returns the concrete SQL string used for execution

The hybrid search path can run:

  • pure vector search
  • pure full text search
  • combined hybrid search

and can push relational filters and joins down into storage. It also supports query reranking strategies like weighted scores and reciprocal rank fusion and can plug in large language model based re-rankers.

For retrieval augmented generation (RAG) and agent memory, this means you can write a single SQL query that does semantic matching on embeddings, exact matching on product codes or proper nouns, and relational filtering on user or tenant scopes.

Vector and full text engine details

At its core, seekdb exposes a modern vector and full text stack.

For vectors, seekdb:

  • supports dense vectors and sparse vectors
  • supports Manhattan, Euclidean, inner product, and cosine distance metrics
  • provides in memory index types such as HNSW, HNSW SQ, HNSW BQ
  • provides disk based index types including IVF and IVF PQ

Hybrid vector index show how you can store raw text, let seekdb call an embedding model automatically, and have the system maintain the corresponding vector index without a separate preprocessing pipeline.

For text, seekdb offers full text search with:

  • keyword, phrase, and Boolean queries
  • BM25 ranking for relevance
  • multiple tokenizer modes

The key point is that full text and vector indexes are first class and are integrated in the same query planner as scalar indexes and GIS indexes, so hybrid search does not need external orchestration.

AI functions inside the database

seekdb includes built in AI function expressions that let you call models directly from SQL, without a separate application service mediating every call. The main functions are:

  • AI_EMBED to convert text into embeddings
  • AI_COMPLETE for text generation using a chat or completion model
  • AI_RERANK to rerank a list of candidates
    AI_PROMPT to assemble prompt templates and dynamic values into a JSON object for AI_COMPLETE

Model metadata and endpoints are managed by the DBMS_AI_SERVICE package, which lets you register external providers, set URLs, and configure keys, all on the database side. 

Multimodal data and workloads

seekdb is built to handle multiple data modalities in one node. it has a multimodal data and indexing layer that covers vectors, text, JSON, and GIS, and a multi-model compute layer for hybrid workloads across vector, full text, and scalar conditions.

It also provides JSON indexes for metadata queries and GIS indexes for spatial conditions. This allows queries like:

  • find semantically similar documents
  • filter by JSON metadata like tenant, region, or category
  • constrain by spatial range or polygon

without leaving the same engine.

Because seekdb is derived from the OceanBase engine, it inherits ACID transactions, row and column hybrid storage, and vectorized execution, although high scale distributed deployments remain a job for the full OceanBase database.

Comparison Table

Key Takeaways

  1. AI native hybrid search: seekdb unifies vector search, full text search and relational filtering in a single SQL and DBMS_HYBRID_SEARCH interface, so RAG and agent workloads can run multi signal retrieval in one query instead of stitching together multiple engines.
  2. Multimodal data in one engine: seekdb stores and indexes relational data, vectors, text, JSON and GIS in the same engine, which lets AI applications keep documents, embeddings and metadata consistent without maintaining separate databases.
  3. In database AI functions for RAG: With AI_EMBED, AI_COMPLETE, AI_RERANK and AI_PROMPT, seekdb can call embedding models, LLMs and rerankers directly from SQL, which simplifies RAG pipelines and moves more orchestration logic into the database layer.
  4. Single node, embedded friendly design: seekdb is a single node, MySQL compatible engine that supports embedded and standalone modes, while distributed, large scale deployments remain the role of full OceanBase, which makes seekdb suitable for local, edge and service embedded AI workloads.
  5. Open source and tool ecosystem: seekdb is open sourced under Apache 2.0 and integrates with a growing ecosystem of AI tools and frameworks, with Python support via pyseekdb and MCP based integration for code assistants and agents, so it can act as a unified data plane for AI applications.

Check out the Repo and Project. Feel free to check out our GitHub Page for Tutorials, Codes and Notebooks. Also, feel free to follow us on Twitter and don’t forget to join our 100k+ ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.


Asif Razzaq is the CEO of Marktechpost Media Inc.. As a visionary entrepreneur and engineer, Asif is committed to harnessing the potential of Artificial Intelligence for social good. His most recent endeavor is the launch of an Artificial Intelligence Media Platform, Marktechpost, which stands out for its in-depth coverage of machine learning and deep learning news that is both technically sound and easily understandable by a wide audience. The platform boasts of over 2 million monthly views, illustrating its popularity among audiences.

🙌 Follow MARKTECHPOST: Add us as a preferred source on Google.

Credit: Source link

ShareTweetSendSharePin

Related Posts

This External GPU Uses Wi-Fi To Transform Any Device Into A Gaming Rig
AI & Technology

This External GPU Uses Wi-Fi To Transform Any Device Into A Gaming Rig

September 26, 2026
You Can Use Your Old Laptop To Make A Smart Home Hub
AI & Technology

You Can Use Your Old Laptop To Make A Smart Home Hub

September 26, 2026
TikTok Will Pay Alabama 0 Million To Settle Social Media Addiction Lawsuit
AI & Technology

TikTok Will Pay Alabama $100 Million To Settle Social Media Addiction Lawsuit

September 26, 2026
This App Lets You Use An Apple Watch With An Android Phone
AI & Technology

This App Lets You Use An Apple Watch With An Android Phone

September 26, 2026
Next Post
Officials warn people in Tenn. not to feed bears

Officials warn people in Tenn. not to feed bears

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
,000,000 of Debt in 60 Minutes | The Best of the Ramsey Show

$7,000,000 of Debt in 60 Minutes | The Best of the Ramsey Show

September 22, 2026
Mother and son charged in teen death

Mother and son charged in teen death

September 25, 2026
Plane crash in remote region of Alaska leaves 8 dead

Plane crash in remote region of Alaska leaves 8 dead

September 25, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!