Streaming
Everything on SkillVeris tagged Streaming — collected across the glossary, study notes, blog, and cheat sheets.
16 resources across 2 libraries
Study Notes(10)
Structured Streaming Basics
Learn how Spark's Structured Streaming engine treats a live data stream as an unbounded, continuously growing table processed with the same DataFrame API used…
Checkpointing
How Flink takes consistent, distributed snapshots of a running job's state to enable automatic recovery from failures.
Flink vs Spark Streaming
A technical comparison of Flink's true streaming model against Spark Structured Streaming's micro-batch engine.
Streaming Replication Explained
Learn how PostgreSQL ships write-ahead log records from a primary to standby servers in real time, and how to configure, secure, and monitor a physical replica…
Bidirectional Streaming RPC
A gRPC pattern where client and server each send an independent, ordered stream of messages over the same connection at the same time.
Client Streaming RPC
A gRPC pattern where the client sends a sequence of messages over one stream and the server replies with a single response once the client finishes.
gRPC Interceptors
How to use gRPC interceptors to implement cross-cutting logic like logging, authentication, retries, and tracing without touching individual handlers.
Server Streaming RPC
A gRPC pattern where the client sends one request and the server replies with a sequence of messages over time on the same stream.
Streaming and Suspense
Learn how Next.js streams HTML from the server using React Suspense so pages can show content progressively instead of waiting on the slowest data fetch.
LINQ Basics
Language Integrated Query lets you write expressive, type-safe queries directly in C# over collections, databases, and XML using a unified syntax.
Interview Questions(6)
What is Chunked Transfer Encoding?
Chunked transfer encoding is an HTTP/1.1 mechanism that lets a server stream a response body in a series of independently-sized chunks without knowing the tota…
Long Polling vs Server-Sent Events: Which for Real-Time Updates?
Long polling simulates real-time delivery by having the client repeatedly open an HTTP request that the server holds open until new data exists or a timeout hi…
What Is Hydration in React?
Hydration is the process where React attaches event listeners and internal state to server-rendered HTML that is already sitting in the browser, turning static…
WebSockets vs Server-Sent Events: When to Use Each?
WebSockets provide a full-duplex connection where both client and server can send messages at any time over one persistent socket, while Server-Sent Events (SS…
What Are Async Generators in JavaScript?
An async generator is a function declared with `async function*` that can both `await` promises internally and `yield` a sequence of values over time, and is c…
What Are React Server Components?
React Server Components (RSC) are components that render exclusively on the server, ship zero JavaScript to the browser, and can read data or the filesystem di…