loader from loading.io

SE Radio 717: Eric Tschetter on Decoupling Observability

Software Engineering Radio - the podcast for professional software developers

Release Date: 04/23/2026

SE Radio 719: Birol Yildiz on Building an Agentic AI SRE show art SE Radio 719: Birol Yildiz on Building an Agentic AI SRE

Software Engineering Radio - the podcast for professional software developers

Birol Yildiz, CEO and co-founder of iLert, joins host Kanchan Shringi to explore how iLert built an AI SRE — an autonomous agent for handling production incidents — and what the experience revealed about building AI agents in the real world. Birol explains why incident response is a fundamentally agentic problem, where the unpredictability of novel incidents makes rule-based runbooks insufficient and reasoning models essential. He describes how the AI SRE evolved from an early browser-based approach to its current architecture, built around two key ingredients: reasoning models and the...

info_outline
SE Radio 718: Will Sentance on JS Modernization show art SE Radio 718: Will Sentance on JS Modernization

Software Engineering Radio - the podcast for professional software developers

Will Sentance, educator and co-founder of Codesmith, joins SE Radio’s Adi Narayan to discuss the evolution of JavaScript and modern best practices. They begin with JavaScript's origins as a simple scripting language and its growth into the backbone of modern web development, highlighting the core theme of the "don't break the web" constraint. The requirement that JavaScript must remain backward-compatible has shaped everything from naming decisions (e.g., flat instead of flatten) to the introduction of Symbols as a collision-safe way to extend objects. Will explains how the TC39 group uses...

info_outline
SE Radio 717: Eric Tschetter on Decoupling Observability show art SE Radio 717: Eric Tschetter on Decoupling Observability

Software Engineering Radio - the podcast for professional software developers

In this episode, host Amey Ambade sits with Eric Tschetter, co-founder of Apache Druid and Chief Architect at Imply, to dissect the critical move toward Decoupling Observability. To begin, they define three pillars—logs, metrics, and traces—and consider why the rise of microservices has made traditional, tightly coupled stacks a major source of pain. Such coupled systems can lead to issues such as vendor lock-in, prohibitive scaling costs, and operational complexity. Drawing parallels to the Business Intelligence world's separation, Tschetter presents an architectural solution with four...

info_outline
SE Radio 716: Martin Kleppmann Local-First Software show art SE Radio 716: Martin Kleppmann Local-First Software

Software Engineering Radio - the podcast for professional software developers

Martin Kleppmann, Associate Professor at the University of Cambridge and author of the best-selling O’Reilly book Designing Data-Intensive Applications, talks to host Adi Narayan about local-first collaboration software. They discuss what the term means, how it leads to simpler application architectures compared to the cloud-first model, and the benefits to developers and users from keeping all of their data on their own devices.  Martin goes into detail about how applications can synchronize data with and without a server, as well as conflict-resolution techniques, and the open-source...

info_outline
SE Radio 715: Sahaj Garg on Designing for Ambiguity in Human Input show art SE Radio 715: Sahaj Garg on Designing for Ambiguity in Human Input

Software Engineering Radio - the podcast for professional software developers

Sahaj Garg, co-founder and CTO of Wispr, a voice-to-text AI that turns speech into polished writing, talks with host Amey Ambade about designing systems for the ambiguity that's inherent in human input (text, voice, multimodal). Sahaj focuses on concrete architectural and training strategies for building robust AI systems. This episode examines the problem of ambiguity, where it shows up, building robust systems, personalization, communicating uncertainty, and evaluation. The conversation starts by exploring the difference between inherent and reducible ambiguity, major categories of ambiguity...

info_outline
SE Radio 714: Costa Alexoglou on Remote Pair Programming show art SE Radio 714: Costa Alexoglou on Remote Pair Programming

Software Engineering Radio - the podcast for professional software developers

Costa Alexoglou, co-founder of the open source Hopp pair-programming application, talks with host Brijesh Ammanath about remote pair programming. They start with a quick introduction to pair programming and its importance to software development before discussing the various problems with the current toolset available and the challenges that tool developers face for enabling pair programming. They consider the key features necessary for a good pair-programming tool, and then Costa describes the journey of building Hopp and the challenges faced while building it.

info_outline
SE Radio 713: Héctor Ramón Jiménez on Building a GUI library in Rust show art SE Radio 713: Héctor Ramón Jiménez on Building a GUI library in Rust

Software Engineering Radio - the podcast for professional software developers

Héctor Ramón Jiménez, creator of iced, an Elm-inspired, cross-platform GUI toolkit for Rust, speaks with SE Radio host Gavin Henry about building a GUI library in Rust. Héctor discusses why he created iced, what was needed, the process required to paint on the screen across different operating systems, how multi-operating systems are handled, and what the iced testing ecosystem is like. This episode explores the Elm architecture, how iced compares to other frameworks, what the core components of iced are, Elements, asynchronous functions, state, threads, 3d rendering, headless mode...

info_outline
SE Radio 712: Dan Lorenc on Sigstore show art SE Radio 712: Dan Lorenc on Sigstore

Software Engineering Radio - the podcast for professional software developers

Dan Lorenc, co-founder and CEO of Chainguard, joins host Priyanka Raghavan to explore Sigstore and its role in securing the software supply chain. They unpack the challenges of supply chain security, including verifying the origin and integrity of software artifacts, and explain the problems Sigstore is designed to solve. The conversation goes under the hood to examine how Sigstore works, covering key components such as code signing, verification, the certificate authority model, and transparency logs—often compared conceptually to blockchain for their auditability. The episode also...

info_outline
SE Radio 711: Scott Hanselman on AI-Assisted Development Tools show art SE Radio 711: Scott Hanselman on AI-Assisted Development Tools

Software Engineering Radio - the podcast for professional software developers

Scott Hanselman, the VP of Developer Community at Microsoft, speaks with host about AI-assisted coding. They start by considering how the tools are a progression from syntax highlighting and autocomplete. Scott describes the ambiguity and non-determinism of agentic loops, why vague high-level prompts usually don't give good results, and the need to express intent and steer the models. He explains how knowing fundamentals helps you create better plans and know what to ask the models, and how to treat agents differently based on your knowledge level. He discusses his experience porting Windows...

info_outline
SE Radio 710: Marc Brooker on Spec-Driven AI Dev show art SE Radio 710: Marc Brooker on Spec-Driven AI Dev

Software Engineering Radio - the podcast for professional software developers

Marc Brooker, VP and Distinguished Engineer at AWS, joins host Kanchan Shringi to explore specification-driven development as a scalable alternative to prompt-by-prompt “vibe coding” in AI-assisted software engineering. Marc explains how accelerating code generation shifts the bottleneck to requirements, design, testing, and validation, making explicit specifications the central artifact for maintaining quality and velocity over time. He describes how specifications can guide both code generation and automated testing, including property-based testing, enabling teams to catch regressions...

info_outline
 
More Episodes

In this episode, host Amey Ambade sits with Eric Tschetter, co-founder of Apache Druid and Chief Architect at Imply, to dissect the critical move toward Decoupling Observability. To begin, they define three pillars—logs, metrics, and traces—and consider why the rise of microservices has made traditional, tightly coupled stacks a major source of pain. Such coupled systems can lead to issues such as vendor lock-in, prohibitive scaling costs, and operational complexity.

Drawing parallels to the Business Intelligence world's separation, Tschetter presents an architectural solution with four distinct layers: Ingest/Route, Data Storage, Query/Compute, and Visualization. This framework aims to provide flexibility to combat the limitations of monolithic observability tools. The conversation moves into the practical challenges and significant benefits of this decoupled model, focusing heavily on data portability and the role of technologies such as OpenTelemetry in standardizing schemas so that data can flow freely between multiple back-ends. A significant portion of the discussion is dedicated to the Query/Compute layer, specifically how Apache Druid addresses the unique demands of real-time analytics on observability data, including indexing strategies and unifying results across hot and cold storage. They also delve into operational survival, covering critical topics like smart sampling to preserve high-value signals, best practices for buffering and backpressure, and the governance models required for multiple teams to safely access the same data lake.

The episode concludes with an honest look at the complexity trade-offs and a roadmap for organizations considering a migration from a coupled vendor stack.