Search the practice set

275 questions, 991 terms and 600 topics in 30 areas.

45 results for “Pipeline Secrets”

Terminology · 27
term

Workload Identity Federation

A pipeline proving what it is with a short-lived signed token from its own platform, so no long-lived cloud credential is ever stored.

Pipeline Secrets
term

Deployment Pipeline

The automated path from commit to production, structured so that each stage increases confidence and the whole is fast enough to be run on every change.

CI/CD
term

Dynamic Secrets

Credentials generated on demand for a specific consumer with a short lease, rather than stored, shared and rotated periodically.

Secrets Management
term

Idempotent Pipeline

A pipeline whose task can be re-run for the same input window any number of times and produce the same result.

ETL & ELT
term

Pipeline Anomaly Detection

Monitoring row counts, distributions, freshness and schema for unexplained change, because data pipelines fail silently far more often than they error.

Data Observability
term

Pipeline Fan-Out

Splitting independent verification work to run in parallel, bounded by what genuinely has no ordering dependency on anything else.

Pipeline Architecture
term

Pipeline Orchestration

Coordinating the execution of data tasks by dependency rather than by clock, with retries, backfill and observability built in.

ETL & ELT
term

Pipeline Stage Contract

What each pipeline stage promises the next — an artifact of a stated shape plus a specific claim about it that has been verified.

Delivery & Release Engineering
term

Replay Pipeline

A single processing path that produces both live and historical results by re-running the same code over retained input, replacing the two-path Lambda arrangement.

Kappa vs Lambda
term

Retrieval Pipeline Stages

The stages that turn a user question into grounded context — query processing, retrieval, reranking and assembly — each independently tunable.

RAG Architecture
term

Secrets Management

Storing, distributing, rotating and auditing credentials so that they never live in code, images or configuration files.

Security Architecture
term

Artifact Signing

Cryptographically signing build outputs so that deployment can verify what is being run was produced by the expected pipeline from the expected source.

Supply Chain Security
term

Automated Governance

Encoding architectural rules as executable checks in the build pipeline, so conformance is verified continuously rather than reviewed periodically.

Fitness Functions
term

Backfill

Re-running a pipeline over historical periods to populate new data or correct a past error, and the operation that proves whether a pipeline is well designed.

ETL & ELT
term

CDC Initial Snapshot

The consistent full copy taken when a CDC pipeline starts, before streaming begins — and the step that determines whether the target is correct.

Change Data Capture
term

CI/CD

Merging work continuously into a shared trunk with automated verification, and keeping every commit in a state that could be released.

Software Architecture
term

Contract Verification Gate

A provider's pipeline stage that replays every consumer's recorded expectations and fails the build if any would break.

Contract Testing at Scale
term

Data Product Interface

The stable surface a data product exposes — its schema, its access path, its documentation and its guarantees — as distinct from the pipeline behind it.

Data Products
term

Filter Composability

The property that makes a pipeline style work — each stage transforms input to output with no shared state, so stages can be reordered, reused and scaled independently.

Pipes and Filters
term

Log-Based Ingestion

Building the pipeline around a database's own change log — an initial snapshot followed by a continuous delta stream, with the two stitched together.

CDC Pipeline Design
term

Pipes and Filters

Decomposing processing into independent steps connected by channels, each transforming its input and passing it on.

Architecture Patterns
term

Producer Obligation

What a data contract binds the producing team to do, and — crucially — what happens in their pipeline when they are about to break it.

Data Contracts
term

Reprocessing Window

How far back a pipeline can be replayed, set by the shortest retention anywhere along the path rather than by intent.

Backfill & Reprocessing
term

Scheduler Control Plane

The orchestrator's own state and availability, which becomes a critical dependency for every pipeline it runs.

Workflow Schedulers
term

Secret Zero

The credential a workload needs in order to authenticate to the secret manager — the one secret that cannot itself be stored in the secret manager.

Secrets Management
term

Shift-Left Security

Moving security checks earlier so findings arrive while the author still has context, on the condition that the signal-to-noise ratio justifies it.

Security Testing in the Pipeline
term

Submission Deadline Architecture

Designing a reporting pipeline around a fixed external deadline, where late is a breach and the recovery window is part of the schedule rather than a contingency.

Regulatory Reporting Pipelines
Questions · 5
quiz

A CDC pipeline feeding your warehouse falls three hours behind during a source system's batch job, and the source's transaction log retention is 24 hours. What is the risk and what do you change?

The immediate risk Lag consumes the retention window. At three hours behind against a 24 hour retention, you have 21 hours of margin. If the consumer stops enti

CDC Pipeline Design
quiz

A nightly pipeline failed halfway and the retry produced duplicate rows. Walk me through fixing this properly.

The immediate problem The task appends rather than replacing its window , so a partial run followed by a retry writes some rows twice. The data is now wrong in

ETL & ELT
quiz

A team's pipeline takes 80 minutes from commit to a deployable artifact and engineers have stopped watching it. How do you approach fixing it?

Measure per stage before changing anything Get the duration of every stage over the last few hundred runs, with the distribution rather than the mean. The shape

Pipeline Architecture
quiz

An estate has database passwords in environment variables across 200 services. Design the migration to a secrets manager.

Sequence it by risk, not by convenience Phase 0 — stop the bleeding. Secret scanning in CI and on the existing repositories, blocking new commits containing cre

Secrets Management
quiz

You are handing a streaming pipeline to an operations team who have never run one. What must exist before they accept it?

The signals they will be paged on Consumer lag in time , not in messages — ten thousand messages means nothing without the rate. And alert on the derivative : g

Streaming SLOs