
Online analytical processing
26
MENTIONS
11
EPISODES
10
PODCASTS
Search complete. 26 mentions across 11 episodes found for "Online analytical processing".
Sep 19, 2026
How TigerBeetle code looks | Joran Dirk Greef
J
1:53Joran Dirk GreefGUEST
It's also not an analytics database like DuckDB.
J
1:57Joran Dirk GreefGUEST
It's not OLAP.
J
1:58Joran Dirk GreefGUEST
So it's not OLAP.
J
1:59Joran Dirk GreefGUEST
It's not OLGP.
J
2:00Joran Dirk GreefGUEST
It's only transaction processing.
14 MINS LATER
J
15:47Joran Dirk GreefGUEST
In SQL, again, it would be like 8,000 in 8,000 queries.
J
15:51Joran Dirk GreefGUEST
So you just have way more string serialization overhead Everything is, it's general purpose, it's strings.
J
15:59Joran Dirk GreefGUEST
Maybe, Lukasz, this is the way to think of Tiger Beetle, like DuckDB, OLAP, Postgres, OLGP.
From Financial Data to AI-Ready Decisions: Power BI, Microsoft Fabric, Semantic Models & AI Agents with Rishi Sapra [MVP]
R
30:06Rishi SapraGUEST
To do a simple DAX query, it has to do, you know, 50 joins in the back between all these tables and try and understand how they all relate, and your DAX becomes stupidly complex because it has to then pick out all these tables in different places.
R
30:18Rishi SapraGUEST
So you need to denormalize and actually turn it from an OLTP, or online transactional processor model, data model, into an OLAP, tabular model, which is just dimensions and facts.
R
30:28Rishi SapraGUEST
And there is rep- repetition and redundancy, and that's okay because it's just a structure that Power BI could work with and it can aggregate over, analyze it.
R
30:36Rishi SapraGUEST
So that's, that's data model.
R
30:46Rishi SapraGUEST
So now you've then said semantic model.
R
30:49Rishi SapraGUEST
And a- again, obviously data model is part of semantic model.
R
30:52Rishi SapraGUEST
That OLAP tabular structure is for a semantic model.
R
30:54Rishi SapraGUEST
That's the data structure you need or is ide- ideally well-suited to.
Why Business Knowledge Beats Tool Complexity in the AI Era
R
13:59Rob CollieGUEST
But it was very much this traditional world but I describe as traditional BI.
R
14:05Rob CollieGUEST
You're talking OLAP
F
14:06Frank La VigneHOST
clues and stuff like that.
F
14:09Frank La VigneHOST
I remember hearing about this in the 90s.
R
15:00Rob CollieGUEST
It's pixels.
R
15:01Rob CollieGUEST
There's not a lot of intelligence going on in the BI part there.
R
15:06Rob CollieGUEST
And analysis services, by contrast, was this incredibly – you mentioned OLAP cubes.
R
15:11Rob CollieGUEST
It was this incredibly intelligent product that allowed you to blend and mesh data from multiple different workflows, multiple different silos, different phases of your business all in one place and express business logic, what is gross profit very precisely – And then ask any sort of like, ask any question you want of your data model without having to go rewrite a whole bunch of SQL each time you wanted to ask a new question.
What Context Really Means in Data Engineering and AI
T
14:11Tobias MaceyHOST
And as you're talking about the different formats and shapes and requirements around these projections of context, it just makes me think about the perennial challenge of every data engineer everywhere of having to battle the siloization and fragmentation of information where the data warehouse, one of its primary goals is get all the data in one place so we can do something with it, which is never sufficient.
T
14:36Tobias MaceyHOST
And so you end up having to build all these different views and projections over that and reflected into another system if you wanted to be able to do OLAP versus just historical querying.
T
14:45Tobias MaceyHOST
And I'm curious how you're seeing some of the complexities grow as you're bringing these fast moving machine operators into the mix and some of the ways that you can have a shared ground truth that everything else is built and projected from rather than having to do bespoke implementations and multiple different ways.
T
15:09Tobias MaceyHOST
that's a great
What's the Future of Data Engineering in an AI World? S3E19
M
2:26Michael WatsonHOST
And that translation from a business use case to an engineer was all about contextualization of the problem and having the engineer understand to some extent be responsible for like, okay, I understand software and data best practices.
M
2:42Michael WatsonHOST
I understand OLAP versus OLTP databases.
M
2:47Michael WatsonHOST
I understand like when it should be relational versus JSON structured.
M
2:54Michael WatsonHOST
I know how to write Python code and how to use pandas.
Why Data Teams Fail and Succeed with Shachar Meir
S
28:17Shachar MeirGUEST
Um, AI is interesting because in, in a lot of different ways, so I see everybody's getting excited about self-service analytics all of a sudden.
S
28:29Shachar MeirGUEST
I think Jefferson is now commenting old-school business, uh, intelligence, OLAP.
S
28:33Shachar MeirGUEST
Yes, none of these things are new.
S
28:36Shachar MeirGUEST
All of these concepts had existed for many, many, many years.
SE Radio 736: Sahil Walia on Apache Iceberg
R
1:44Robert BlumenHOST
Let's start out with a background question.
R
1:48Robert BlumenHOST
You can run these OLAP workloads less efficiently on a general purpose database.
R
1:54Robert BlumenHOST
What is the cutover point where you want to switch to a specialized OLAP for your workloads?
S
2:01Sahil WaliaGUEST
Absolutely.
S
2:02Sahil WaliaGUEST
For the audiences not familiar, OLTP is essentially transactional.
S
2:15Sahil WaliaGUEST
So one of the examples I would look for is when you're looking for latency budget of milliseconds, you want to stay in OLTP
R
2:23Robert BlumenHOST
world.
S
2:24Sahil WaliaGUEST
But when your latency budget is in about seconds and minutes and you're audience is mostly analytical, training the ML workloads on data, and it's not dependent on transactional data, I would move towards the OLAP.
OpenAI Cuts Off Cursor, Nvidia Buys Hugging Face, Ox Alpha is GLM | This Week In AI
S
24:16Shane ThomasHOST
What is DuckDB for those that are watching that maybe aren't as in tune with different types of
A
24:20Abhi AiyerHOST
databases? It's like an OLAP database for analytics data.
A
24:27Abhi AiyerHOST
It stores the data in a file and then you have a SQL-like querying language on it.
A
24:35Abhi AiyerHOST
Because agents love file systems and you can spin up sandboxes and stuff, the question is, do you really need a full-on database? Or can you just store a file in S3 and that's your database? Monstro uses DuckDB for local observability You could use it in production.
A
25:00Abhi AiyerHOST
Much like a lib SQL from Terso allows you to have a SQL database locally through SQLite.
A
25:07Abhi AiyerHOST
Same kind of concept.
S
25:08Shane ThomasHOST
Yeah, and the biggest OLAP database being Clickhouse, right?
A
25:12Abhi AiyerHOST
Yeah.
Discover three must-read books from Linda Hill, Sanjeev Mohan, and Harveer Singh on scaling AI innovation, AI-ready data, and human-centered AI.
C
50:31Cindi HowsonHOST
Thank you for taking us through that.
C
50:34Cindi HowsonHOST
I also think, you know, if I can argue with you about something, I was a little bit shocked that you were still writing about OLAP, Sandeep, whereas I'm trying to tell customers cubes are dead, like stop that.
C
50:53Cindi HowsonHOST
We don't need that anymore.
C
50:55Cindi HowsonHOST
You have open storage formats.
S
52:08Sanjeev MohanGUEST
between your BI layer, your data transformation layer, your storage layer.
S
52:13Sanjeev MohanGUEST
So we have completely opened up, unbundled storage, and now I can bring any compute engine.
S
52:22Sanjeev MohanGUEST
The only reason I mentioned OLAP is because it's a journey and it's not going to go away anytime soon.
S
52:29Sanjeev MohanGUEST
So that's why I didn't want to exclude it.
Microsoft Fabric End-to-End: From Raw Data to Business Decisions with Amit Chandak [MVP]
A
20:29Amit ChandakGUEST
Now, SQL DB replicate data again in Delta format, which is very similar to warehouse.
A
20:34Amit ChandakGUEST
So live versus means OLTP versus OLAP.
A
20:39Amit ChandakGUEST
In OLAP we have a choice versus technology or versus, uh, basically the structured, unstructured data.
A
20:45Amit ChandakGUEST
Now, lakehouse can have unlimited historical data also.
A
20:50Amit ChandakGUEST
We call time travel.
1 more episode mentions Online analytical processing.
Create an account to see the whole feed, search across every transcript, and follow the entities you care about.