• kpk ETH Primekpk ETH Prime(KPK ETH PRIME)$2,034.900.01%
  • bitcoinBitcoin(BTC)$69,669.00-1.99%
  • ethereumEthereum(ETH)$2,023.34-2.22%
  • kpk ETH Yieldkpk ETH Yield(KPK ETH YIELD)$2,030.62-0.04%
  • tetherTether(USDT)$1.00-0.01%
  • binancecoinBNB(BNB)$641.53-0.98%
  • rippleXRP(XRP)$1.38-2.71%
  • usd-coinUSDC(USDC)$1.000.00%
  • solanaSolana(SOL)$85.37-2.15%
  • tronTRON(TRX)$0.2878470.80%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.04-0.53%
  • dogecoinDogecoin(DOGE)$0.091924-3.33%
  • whitebitWhiteBIT Coin(WBT)$55.12-2.10%
  • USDSUSDS(USDS)$1.00-0.01%
  • cardanoCardano(ADA)$0.257977-3.33%
  • bitcoin-cashBitcoin Cash(BCH)$448.95-0.35%
  • leo-tokenLEO Token(LEO)$9.170.66%
  • HyperliquidHyperliquid(HYPE)$34.46-1.03%
  • moneroMonero(XMR)$349.530.03%
  • chainlinkChainlink(LINK)$8.92-2.26%
  • Ethena USDeEthena USDe(USDE)$1.000.03%
  • CantonCanton(CC)$0.147873-0.55%
  • stellarStellar(XLM)$0.156201-3.09%
  • USD1USD1(USD1)$1.000.00%
  • RainRain(RAIN)$0.008973-0.21%
  • daiDai(DAI)$1.000.02%
  • litecoinLitecoin(LTC)$53.85-1.05%
  • avalanche-2Avalanche(AVAX)$9.54-0.12%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.02%
  • hedera-hashgraphHedera(HBAR)$0.093610-3.31%
  • suiSui(SUI)$0.95-2.20%
  • zcashZcash(ZEC)$213.46-4.23%
  • shiba-inuShiba Inu(SHIB)$0.000006-1.12%
  • the-open-networkToncoin(TON)$1.30-2.78%
  • crypto-com-chainCronos(CRO)$0.075363-1.89%
  • tether-goldTether Gold(XAUT)$5,151.490.11%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.100939-1.28%
  • pax-goldPAX Gold(PAXG)$5,192.510.17%
  • polkadotPolkadot(DOT)$1.49-2.57%
  • MemeCoreMemeCore(M)$1.42-2.37%
  • uniswapUniswap(UNI)$3.86-2.85%
  • mantleMantle(MNT)$0.690.37%
  • Pi NetworkPi Network(PI)$0.2299535.34%
  • Circle USYCCircle USYC(USYC)$1.120.00%
  • okbOKB(OKB)$95.71-2.40%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • BittensorBittensor(TAO)$196.17-2.05%
  • Falcon USDFalcon USD(USDF)$1.00-0.03%
  • SkySky(SKY)$0.074877-4.22%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
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

SurrealDB 3.0 wants to replace your five-database RAG stack with one

February 17, 2026
in AI & Technology
Reading Time: 3 mins read
A A
SurrealDB 3.0 wants to replace your five-database RAG stack with one
ShareShareShareShareShare

Building retrieval-augmented generation (RAG) systems for AI agents often involves using multiple layers and technologies for structured data, vectors and graph information. In recent months it has also become increasingly clear that agentic AI systems need memory, sometimes referred to as contextual memory, to operate effectively.

YOU MAY ALSO LIKE

Google AI Introduces Gemini Embedding 2: A Multimodal Embedding Model that Lets Your Bring Text, Images, Video, Audio, and Docs into the Embedding Space

Google starts rolling out Gemini in Chrome to users in Canada, India and New Zealand

The complexity and synchronization of having different data layers to enable context can lead to performance and accuracy issues. It’s a challenge that SurrealDB is looking to solve.

SurrealDB on Tuesday launched version 3.0 of its namesake database alongside a $23 million Series A extension, bringing total funding to $44 million. The company had taken a different architectural approach than relational databases like PostgreSQL, native vector databases like Pinecone or a graph database like Neo4j. The OpenAI engineering team recently detailed how it scaled Postgres to 800 million users using read replicas — an approach that works for read-heavy workloads. SurrealDB takes a different approach: Store agent memory, business logic, and multi-modal data directly inside the database. Instead of synchronizing across multiple systems, vector search, graph traversal, and relational queries all run transactionally in a single Rust-native engine that maintains consistency.

“People are running DuckDB, Postgres, Snowflake, Neo4j, Quadrant or Pinecone all together, and then they’re wondering why they can’t get good accuracy in their agents,” CEO and co-founder Tobie Morgan Hitchcock told VentureBeat. “It’s  because they’re having to send five different queries to five different databases which only have the knowledge or the context that they deal with.”

The architecture has resonated with developers, with 2.3 million downloads and 31,000 GitHub stars to date for the database. Existing deployments span edge devices in cars and defense systems, product recommendation engines for major New York retailers, and Android ad serving technologies, according to Hitchcock.

Agentic AI memory baked into the database

SurrealDB stores agent memory as graph relationships and semantic metadata directly in the database, not in application code or external caching layers. 

The Surrealism plugin system in SurrealDB 3.0 lets developers define how agents build and query this memory; the logic runs inside the database with transactional guarantees rather than in middleware.

Here’s what that means in practice: When an agent interacts with data, it creates context graphs that link entities, decisions and domain knowledge as database records. These relationships are queryable through the same SurrealQL interface used for vector search and structured data. An agent asking about a customer issue can traverse graph connections to related past incidents, pull vector embeddings of similar cases, and join with structured customer data — all in one transactional query.

“People don’t want to store just the latest data anymore,” Hitchcock said. “They want to store all that data. They want to analyze and have the AI understand and run through all the data of an organization over the last year or two, because that informs their model, their AI agent about context, about history, and that can therefore deliver better results.”

How SurrealDB’s architecture differs from traditional RAG stacks

Traditional RAG systems query databases based on data types. Developers write separate queries for vector similarity search, graph traversal, and relational joins, then merge results in application code. This creates synchronization delays as queries round-trip between systems.

In contrast, Hitchcock explained that SurrealDB stores data as binary-encoded documents with graph relationships embedded directly alongside them. A single query through SurrealQL can traverse graph relationships, perform vector similarity searches, and join structured records without leaving the database.

That architecture also affects how consistency works at scale: Every node maintains transactional consistency, even at 50+ node scale, Hitchcock said. When an agent writes new context to node A, a query on node B immediately sees that update. No caching, no read replicas.

“A lot of our use cases, a lot of our deployments are where data is constantly updated and the relationships, the context, the semantic understanding, or the graph connections between that data needs to be constantly refreshed,” he said. “So no caching. There’s no read replicas. In SurrealDB, every single thing is transactional.”

What this means for enterprise IT

“It’s important to say SurrealDB is not the best database for every task. I’d love to say we are, but it’s not. And you can’t be,” Hitchcock said. “If you only need analysis over petabytes of data and you’re never really updating that data, then you’re going to be best going with object storage or a columnar database. If you’re just dealing with vector search, then you can go with a vector database like Quadrant or Pinecone, and that’s going to suffice.”

The inflection point comes when you need multiple data types together. The practical benefit shows up in development timelines. What used to take months to build with multi-database orchestration can now launch in days, Hitchcock said.

Credit: Source link

ShareTweetSendSharePin

Related Posts

Google AI Introduces Gemini Embedding 2: A Multimodal Embedding Model that Lets Your Bring Text, Images, Video, Audio, and Docs into the Embedding Space
AI & Technology

Google AI Introduces Gemini Embedding 2: A Multimodal Embedding Model that Lets Your Bring Text, Images, Video, Audio, and Docs into the Embedding Space

March 11, 2026
Google starts rolling out Gemini in Chrome to users in Canada, India and New Zealand
AI & Technology

Google starts rolling out Gemini in Chrome to users in Canada, India and New Zealand

March 11, 2026
Social Security watchdog investigating claims that DOGE engineer copied its databases
AI & Technology

Social Security watchdog investigating claims that DOGE engineer copied its databases

March 10, 2026
NVIDIA AI Releases Nemotron-Terminal: A Systematic Data Engineering Pipeline for Scaling LLM Terminal Agents
AI & Technology

NVIDIA AI Releases Nemotron-Terminal: A Systematic Data Engineering Pipeline for Scaling LLM Terminal Agents

March 10, 2026
Next Post
US-Iran talks underway in Geneva, Iranian media says – CNN

US-Iran talks underway in Geneva, Iranian media says - CNN

Leave a Reply Cancel reply

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

Search

No Result
View All Result
New KV cache compaction technique cuts LLM memory 50x without accuracy loss

New KV cache compaction technique cuts LLM memory 50x without accuracy loss

March 6, 2026
Iran’s future appears unpredictable as strikes in the region continue

Iran’s future appears unpredictable as strikes in the region continue

March 7, 2026
Iran Live Updates: Trump Says U.S. Should Have Role in Picking Iran’s Leader – The New York Times

Iran Live Updates: Trump Says U.S. Should Have Role in Picking Iran’s Leader – The New York Times

March 5, 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!