Skip to main content
gRPC

gRPC

Computer programWikipedia

Search complete. 35 mentions across 16 episodes found for "gRPC".

Sep 10, 2026

Sean FalconerHOST
33:31
Am I only basically building a certain part of my application in Rust using Hydro, and I could build other parts of it using whatever language I choose?
Joe HellersteinGUEST
33:41
Yeah, I mean, you know, keep in mind it's the distributed systems world, so you can always take a piece of your system and turn it into a service, and then the endpoints are gRPC or REST or something like that, right? They can be cross language.
Joe HellersteinGUEST
33:53
So certainly that's always an option.
Joe HellersteinGUEST
33:55
You can write a microservice or tear out a piece of your system and turn it into a service and write it in Hydro even though your service was written in something else.
Herman PoppleberryHOST
10:57
But Whisper doesn't speak that protocol.
Herman PoppleberryHOST
11:00
Image generation models use their own thing, typically something like the stable diffusion web, UI API, or a custom gRPC interface.
Herman PoppleberryHOST
11:09
Embedding models usually speak OpenAI compatible too, but not always.
Herman PoppleberryHOST
11:13
So even if you standardize on the OpenAI API format for LLMs, you still have protocol diversity across model types, and something needs to normalize that.
Felipe GutierrezGUEST
49:56
You're going to have even hands on all these you know, creating your MCP server, everything about, obviously, all the Spring AI.
Felipe GutierrezGUEST
50:07
But not only that, you're going to also take a look into the GRCP stuff, right? For example, just to let you know, at least on Cockroach TV, we're using gRPC to connect between nodes, right? If you look for the difference between GraphQL, and maybe we can start a fight, Dan, because...
Dan VegaHOST
50:27
No, not at all.
Felipe GutierrezGUEST
50:30
GraphQL is going all the way kind of up.
HackerNoon AINARRATOR
1:57
The obvious objection first: we already have APIs.
HackerNoon AINARRATOR
2:01
REST, gRPC, OpenAPI specs, decades of tooling.
HackerNoon AINARRATOR
2:05
Why does an AI agent need a new protocol to call a database or a ticketing system? The answer is that traditional API integration was designed for developers, and agents are not developers.
HackerNoon AINARRATOR
2:16
Three gaps matter in practice.
speaker_0HOST
7:01
To keep track of all these automated agent actions, Cloud Monitoring has added robust telemetry for your data connectors.
speaker_0HOST
7:08
You can track exact tool IDs, engine IDs, and gRPC response codes.
speaker_0HOST
7:15
There's also a brand-new request latencies metric in beta to measure exactly how long your agent tool calls are taking.
speaker_0HOST
7:23
And for eligible customers, the standard Emerging Market Edition now has full access to standard AI developer tools.
ChadGUEST
13:11
But, you know... open to new information that i don't have now uh that would say otherwise you know uh but we've identified the root of the current issue and we've already you know got a patch going for that and so i don't think that'll be necessary but yeah that could change within the next 24 hours
KentonHOST
13:31
okay it looks like andy is that you from liquify did you just post this He says that was sorted in a hotfix to enable gRPC loopback, which detached them from consensus delays.
KentonHOST
13:45
I don't know what any of that means.
KentonHOST
13:46
Do you know what that means,
Josh LongHOST
3:26
So really just about every use case, every place I can imagine.
Josh LongHOST
3:28
Messaging, gRPC, Kafka, integration, um, you know, um, web apps, uh, you know, everything.
Josh LongHOST
3:35
Everything you can...
Josh LongHOST
3:36
MCP for AI, you know? There's always a reason to, to use security and to think about security, and there's even more reason to use the Spring Auth Server.

22 MINS LATER

Josh LongHOST
26:04
I mean, just I, I think the, to the extent that we can make OAuth a s- you know, for everybody, you know, like there's, there's so many use cases.
Josh LongHOST
26:12
One of the, one of the things that's, the, one of the strengths and also maybe not weaknesses, but, um, hiccups or bumps in the road for people adopting OAuth is that OAuth 2 is a framework for security.
Josh LongHOST
26:24
It's not just a prescriptive set it once and forget, you know? And so to the extent that I can take it to my desktop, my CLI, my, my web application, my gRPC application, you know, the pieces are all there.
Josh LongHOST
26:38
And, uh, now y- with what you're describing, there's, it sounds like there's, in that same framework, there's these new options for even the core things of like, like doing the authentication itself can become more secure, right? And it's still consistent with the overall intent of OAuth, right? It just, it's expanding.
BillHOST
19:57
Uh, so yeah, first one here is QSO Ripper.
BillHOST
20:00
Uh, it says, "This is a high performance ham radio logging platform built around the shared GPR- gRPC, uh, slash Protobuf contracts, interchangeable engine hosts, and keyboard first clients." Uh, this is a Rust based application, so [laughs] you know, you know it's, uh, built by Claude.
BillHOST
20:20
[laughs] And, uh, it has a, uh, MIT license, and I'm just kinda looking on the GitHub site here for some screenshots, and I don't see any screenshots.
BillHOST
20:33
So I'm not gonna run this.
BillHOST
21:10
But, uh, but anyway, this looks kinda interesting.
BillHOST
21:12
I might actually check this out since it did pass the, uh, pass the security code review, uh, just 'cause we can never have enough logging, uh, logging applications.
BillHOST
21:22
It's interesting that it uses, uh, um, a, a gRPC contracts, 'cause I'm assuming it's, has its contracts with itself, so that means it probably spins up a microservice for itself.
BillHOST
21:33
And it uses gRPC to be highly efficient to transport the data from the, the UI, which I thought it was a, uh, a terminal univer- user interface [laughs] and the API.

Unknown podcast

API Composition: The Architecture Behind Modern Apps

Aug 20 · 3 Mentions

SophiaGUEST
20:06
Google has actually been using this internal design guide since 2014, and it's practically a masterclass in establishing a predictable API ecosystem.
SophiaGUEST
20:15
Interestingly, it applies to both their traditional REST APIs and their high-performance gRPC APIs.
DavidHOST
20:22
Let's talk about gRPC because it's a completely different beast than the normal web APIs most people are familiar with.
DavidHOST
20:29
It relies heavily on protocol buffers or proto buffs instead of the standard JSON payloads we usually see.
SophiaGUEST
20:35
To understand why this matters, you really have to look at the mechanism.
SophiaGUEST
21:23
Through an ingenious process called transcoding, think of it like a real-time UN translator at the edge of their network.
DavidHOST
21:29
OK, I like that.
SophiaGUEST
21:29
They use API service configurations to automatically map standard incoming HTTP and JSON requests directly into internal binary gRPC calls.
Philip O'TooleGUEST
11:05
It means you fire it up, you can send a request to it, you can access it in the browser.
Philip O'TooleGUEST
11:09
There is a lot of, there's a pre-request to add a gRPC, which is an RPC interface, to add a Postgres-compatible front end, They're all fabulous ideas.
Philip O'TooleGUEST
11:20
And of course I've been tempted, and in the advent of LLMs, you'd be tempted to sit down, tell the agent, add this, I'll be back in four hours.
Philip O'TooleGUEST
11:27
But that is going to add a whole new operational element to it that is part of the reason I have resisted.

6 more episodes mention gRPC.

Create an account to see the whole feed, search across every transcript, and follow the entities you care about.

We value your privacy

We use cookies to understand how you use our platform and to improve your experience. Click “Accept All” to consent, or “Decline non-essential” to opt out of non-essential cookies. Read our Privacy Policy.