Skip to content
brickster.ai
All topics

Lakebase

Recent items mentioning Lakebase across the Databricks ecosystem — releases, news, videos, and community Q&A. Updated hourly.

60 recent items5 releases14 news24 videos17 community threads
What's happening in LakebaseAI synthesis · updated 1d ago

Databricks Lakebase, which enables running production OLTP applications on a serverless Postgres surface within Databricks 2, now offers Native Lakehouse Sync (Public Preview) to automatically replicate Lakebase Postgres data into Unity Catalog managed tables 9. This integration facilitates use cases like healthcare patient risk scoring using feature stores 1 and operational data in CPG retail analytics 45, bridging the gap between applications and analytics 8. Lakebase also provides 1-second database branching and sub-4-second point-in-time recovery for schema migrations 2.

Generated daily from the 10 most recent items mentioning Lakebase. Click any [N] to jump to the source.

Databricks CommunityLakebase Articles

Databricks Lakebase - Healthcare Patient Risk Scoring using Feature Stores powered by Lake base

002d ago
Databricks CommunityData Engineering

Lakebase not showing up

005d ago
Databricks CommunityMVP Articles

One Platform for Ops + Analytics: Lakebase in a CPG etail Lakehouse

005d ago
Databricks CommunityLakebase Articles

In our retail analytics project (CPG domain), Lakebase transformed how we handled operational data

005d ago
Databricks CommunityLakebase Articles

Share your Lakebase story and receive a $50 gift card!

005d ago
Databricks CommunityLakebase Articles

The Gap Between Applications and Analytics, and "How Lakebase Solves It"

006d ago
Databricks CommunityData Engineering

Connecting DBeaver to Databricks Lakebase — Setup & Troubleshooting

001w ago
RedditDiscussion

New to Databricks DevRel - what do you want to learn about Apps + Lakebase?

Hello r/databricks! Tony here 👋 Long-time web developer, first-time poster in this subreddit 🙂 I recently joined the DevRel team at Databricks, where I’ll be focused on helping developers build with Databricks Apps + Lakebase. My background is in webdev, and I’ve always cared a lot about developer experience. I love tools like vite / hono / playwright, because they have super fast feedback loops, are simple to use, have great docs, etc. One thing that excited me about joining Databricks is the opportunity to make building on the platform feel more approachable for developers coming from more traditional app/web backgrounds (like me). I’m still very new to the Databricks ecosystem (less than a month in!!), so I’m still in full “learn everything” mode. As I ramp up, I’m hoping to work in public a bit and share what I learn along the way. So, I’d love to hear from this community: * What would you want to learn about Databricks Apps or Lakebase? * What do you wish was easier when building apps on Databricks? * What parts of the DX feel rough or confusing? * Are there example projects, integrations, or tutorials you wish existed? <- I’d love to help by creating some content if it’s useful. Just lmk! Looking forward to learning from everyone and being part of the community!

2821tony-dang1w ago
RedditNews

Lakehouse Sync

Lakehouse Sync replicates data from Lakebase/Postgres directly into Unity Catalog Delta tables. It uses CDC from PostgreSQL WAL, with wal2delta doing the work. #databricks

111hubert-dudek1w ago
RedditGeneral

Eng blog: How lakebase increased write throughput, decreased latency by disabling full-page writes in Postgres

50scriptedlife1w ago
HackerNews

Lakebase architecture delivers faster Postgres writes

--- top comments --- [hardwaresofton] This is essentially a re-explanation of Neon’s architecture as a blog post. Amazing that the Postgres ecosystem got this software for “free” (as in at least a basic version of it is F/OSS, IIRC there wasn’t any core bits held back), and the extremely engineer-heavy company got to make money, AND they got bought out in true acquisition style by a larger player that truly benefits from the tech. The Postgres ecosystem is pretty unique in its ability to produce a “boring” stable product, innovate, stay F/OSS, and create financial outcomes for participants. [uhoh-itsmaciek] >Without those periodic full page images in the log, the storage layer would have to replay an infinitely long chain of small deltas to reconstruct a page for a read request. What was once a bounded O(checkpoint frequency) replay becomes an unbounded chain, leading to a spike in read latency and resource consumption. I don't follow: read requests are not served from the WAL. They read the current state of the page from the buffer cache, where the page is updated after the change (FPI or not) is written to the WAL. [gavinray] So, the general architecture described here is solid, and I support it, but I take issue with the "Lakebase" naming thing. Disaggregated storage and disaggregated compute have been an open trend in DBMS development for the last half-decade. This is an obvious move with modern computing paradigms, and the academic literature has a standard name for it. This feels like "JAMStack" from Netlify happening all over again. I tweeted about this in 2022, as a general trend, and also from the RocksDB meetup emphasizing disaggregated storage: - https://x.com/GavinRayDev/status/1607769112234823680 - https://x.com/GavinRayDev/status/1600666127025156096 [nikita] I'm a VP on Databricks and former CEO of Neon. Happy to answer performance related or any other questions here. [noashavit] Lakebase is based on then Neon, that is why it was acquired. These are the performance gains from that underlying tech

12236sp_from_db1w ago
Databricks CommunityTechnical Blog

Semantic Caching for LLM Applications with Databricks Lakebase and pgvector

001w ago
Databricks CommunityLakebase Articles

Databricks Lakebase Just Eliminated the Wall Between Applications and Analytics.

001w ago
RedditGeneral

Databricks latest investment

Databricks to invest US$300 million in ANZ over the next three years. The plan is to open a new ANZ headquarters, grow Lakebase and Genie adoption, and upskill 100,000 people in data and AI.

80sai-nageshwaran1w ago
RedditDiscussion

Lakebase synced tables and bloat

We are running in GCP so I have not gotten to play with lakebase at all yet. I was curious with synced tables from the lakehouse that are highly modified..... how bloat is handled in the event autovacuum cannot keep up? I cant imagine standard tools like pg\_repack would be an option.... Thanks for any insight!

43CropDustingKing1w ago
Databricks CommunityTechnical Blog

Deploying Django apps on Databricks Apps with Lakebase

001w ago
RedditHelp

Using a separate Databricks App as a backend? Anyone doing this in practice?

I’m working on an internal operational app and trying to figure out the “right” architecture within Databricks. The use case is pretty straightforward: \- Generate recommendations in Databricks (served via Lakebase) \- Combine that with live operational data (APIs) \- Display everything in a Databricks App What I’m debating is where the composition/orchestration layer should live. One idea I’m exploring: Databricks App #1 → user-facing UI Databricks App #2 → acts like a lightweight backend (aggregates recommendation + live data) Basically treating a Databricks App as a dedicated backend layer. I don’t see this pattern mentioned much in the Databricks Apps Cookbook or docs, which seem to lean toward: single app direct access to data + endpoints So I’m curious: Has anyone actually used a separate Databricks App as a backend/service layer? Did it hold up in terms of latency / maintainability? Any gotchas with auth, scaling, or observability? Or is this one of those “it works but you shouldn’t” patterns? For context, this is internal, medium usage (\~10–20 concurrent users), not internet-scale.

1011Terrible_Bed10382w ago