Zalando¶
What they do¶
Zalando SE is Europe's largest online fashion and lifestyle platform, headquartered in Berlin. Beyond commerce, Zalando is known in the systems community for heavy open-source contribution around Postgres-on-Kubernetes and for in-house experimentation platform work:
- Postgres Operator — open-source Kubernetes operator for managing Postgres clusters with high availability, connection pooling, and backups.
- Skipper — HTTP router and reverse-proxy written in Go, used as the default Kubernetes Ingress proxy across 140+ Zalando Kubernetes clusters (Source: sources/2020-06-30-zalando-launching-the-engineering-blog).
- Kubernetes Ingress
Controller for AWS — Zalando-incubator controller that
provisions an AWS ALB + ACM cert for each
Ingress. - Patroni — HA template for PostgreSQL (via Python + DCS), used industry-wide.
- Spilo — Docker image for running Postgres with Patroni.
- Octopus — in-house A/B testing / experimentation platform, released 2015; analysis system rebuilt on systems/apache-spark over ~2 years. Source of Zalando's crawl/walk/run experimentation- platform retrospective (sources/2021-01-11-zalando-experimentation-platform-at-zalando-part-1-evolution).
Zalando Engineering (engineering.zalando.com) is a Tier-2 source on the sysdesign-wiki: consistent output on distributed systems, Kubernetes, Postgres internals, cloud platform engineering, and experimentation / A/B-testing infrastructure, though the blog mixes in recruiting and product-announcement posts.
Wiki anchor axes¶
Zalando has nine canonical axes on the wiki so far:
- Postgres-on-Kubernetes / kernel-level latency (opened
2020-06-23) — empirical kernel-level measurement
(
perf, softirq tracepoints, network namespaces) combined with operator-level deployment pragmatism. - Experimentation platform evolution (opened 2021-01-11) — Octopus + the org-level crawl/walk/run journey structured around concepts/experimentation-evolution-model-fabijan; statistical trustworthiness via concepts/sample-ratio-mismatch auto-alerts, A/B-test design audit, OEC guidance, quasi-experimental methods.
- Mobile testing discipline / open-source Swift tooling (opened 2021-02-01) — Vijaya Kandel's Randomizer open-source Swift library for randomised-input testing in iOS codebases. Entry-level property-based testing at mobile altitude; names the example-based constant-input antipattern and provides a type-class- driven random generator as the fix.
- JVM integration testing discipline / Testcontainers idiom
(opened 2021-02-24) — Zalando Marketing Services's Java
backend team documents the canonical application-developer
altitude Testcontainers setup: singleton
PostgreSQLContaineron anAbstractIntegrationTestbase class,@DynamicPropertySourcewiring, Maven Surefire - Failsafe phase split, ~4 s / ~0.4 s / ~20 s startup numbers quoted, and the explicit caveat that Testcontainers alone doesn't catch real-API drift → concepts/contract-testing (Spring Cloud Contract). Pairs with axis 3 at a complementary JVM-backend altitude; the two 2021 posts form a Zalando testing-discipline sub-axis.
- Cyber-Week prep / load-test automation (opened 2020-10-07, extended 2021-03-01) — two-part narrative from the Payments + SRE orgs. (a) The 2020 retrospective (sources/2020-10-07-zalando-how-zalando-prepares-for-cyber-week) establishes patterns/live-load-test-in-production and patterns/annual-peak-event-as-capability-forcing-function plus concepts/adaptive-paging as the organisational pattern. (b) The 2021 follow-up (sources/2021-03-01-zalando-building-an-end-to-end-load-test-automation-system-on-top-of-kubernetes) opens the pre-prod break-things complement: the Load Test Conductor Go microservice exposes a declarative load-test API inspired by Kubernetes, drives Locust workers via a KPI-closed-loop orders-per-minute algorithm, and uses Skipper's header-based routing to switch each request between the real dependency and a Hoverfly mock. Ties Zalando's load-testing discipline across live-prod and break-things- pre-prod into a single capability stack.
- Unified GraphQL BFF / API platform (opened 2021-03-03) — Rajesh Jain's retrospective on Zalando's migration from per-surface BFFs (adopted in 2015 alongside microservices) to a single-service Unified Backend-For-Frontends GraphQL owning one schema across 12+ domains (in production since end of 2018; sources/2021-03-03-zalando-how-we-use-graphql-at-europes-largest-fashion-e-commerce-company). The axis names five BFF pathologies rooted in Conway's Law (including the delivery-window inconsistency worked example), runs on Zalando's in-house open-source graphql-jit JIT executor, enforces a No Business Logic principle in the GraphQL layer, and uses per-platform deployment bulkhead (separate Web / mobile-App deployments of the same service) for fault isolation. Positions Zalando's single-service unified-graph choice explicitly against Apollo Federation.
- Frontend platform evolution / micro-frontends → entity-based composition (opened 2021-03-10) — Part 1 of a series on Zalando's second-generation frontend platform Interface Framework (IF; designed 2018, ~90% traffic by March 2021), which replaces the 2015-era Project Mosaic Fragment-based micro-frontend architecture with an entity- based page-composition model: pages are request-time trees of typed Entities (Product, Collection, Outfit) chosen by personalisation, and [[patterns/entity-to- renderer-mapping|Renderers]] (one-per-Entity-type React components) are the contribution unit. The Rendering Engine (Node.js + browser runtime) walks the tree, applies declarative rendering rules, and composes the output. Cross-cutting concerns (monitoring, consent, A/B testing via Octopus, design system, bundle-size optimisation) move into the platform, and every PR is gated by Lighthouse CI + Bundle Size Limits + Web Vitals. The axis pairs tightly with axis 6 (the GraphQL BFF is IF's data aggregation layer).
- JVM language governance / Kotlin ADOPT ring + backend stack blueprint (opened 2021-06-30) — Zalando's Tech Radar promotes Kotlin TRIAL → ADOPT (100+ new apps / year, 250+-member Kotlin Guild), and the promotion post publishes the default Kotlin backend-service stack: Spring Boot on Kubernetes with Gradle (Kotlin DSL)
- Ktlint; OpenAPI contracts linted by Zally on every build as the API- first gate; Skipper OAuth filters / Route Groups / Fabric Gateway as the three-tier AuthN/AuthZ choice; Lettuce for Redis; Spring Data JPA or jOOQ for RDBMS; opentracing-toolbox (with a Kotlin submodule) for tracing. The axis canonicalises repository-template nudges over mandates as the Zalando consistency discipline — patterns/template-project-nudges-consistency. Ktor
- GraalVM flagged as ASSESS-ring successor. Canonical wiki source for "what does an ADOPT-ring promotion look like operationally."
- MDM / knowledge-graph-driven data modeling (opened 2021-07-28) — Zalando's in-house MDM component uses a knowledge graph in Neo4j as the design-time authoring substrate from which both the logical data model of the golden record and the per-source transformation data model are generated via a Python script (sources/2021-07-28-zalando-knowledge-graph-technologies-accelerate-and-improve-the-data-model-definition). Domain experts author column → Concept / Attribute / Relationship mappings (direct 1-to-1 or indirect 1-to-many with a transformation function); a semantic layer of business concepts sits between source schemas and the golden-record schema. Knowledge- graph-for-MDM-modeling is the core pattern; mapping- driven schema generation is the generalised pattern; [[patterns/visual-graph-for-business-engineering- alignment|visual-graph-for-business-engineering- alignment]] — using Neo4j-rendered diagrams as the primary business-engineering communication artifact — is named by the post as the #1 benefit ("The dialogue between business and technology in designing the golden record logical data model has improved and accelerated the process of creating a correct model"). Consolidated- style MDM; scoped to "tens of tables and hundreds of columns". Data lineage falls out of the graph as a side-effect capability. Opens Zalando's third canonical knowledge-graph wiki instance alongside Dropbox Dash (retrieval substrate) and Netflix UDA (enterprise integration substrate).
Key systems¶
- systems/zalando-postgres-operator — the flagship Kubernetes operator; release 1.5 (2020) introduced the built-in PgBouncer connection-pooling feature that motivates the first ingest.
- systems/skipper-proxy — Go HTTP router / reverse proxy,
default Kubernetes Ingress across 140+ clusters; reused to
serve
engineering.zalando.comvia a single route annotation (compress()+setDynamicBackendUrl) that proxies to an S3 website endpoint. - systems/kube-ingress-aws-controller — auto-provisions AWS ALB + ACM cert per Ingress.
- systems/external-dns — SIG Kubernetes controller used in combination with the above for end-to-end Ingress → ALB → DNS automation.
- systems/octopus-zalando-experimentation-platform — in-house A/B testing platform; 2015–present; three subsystems (management, execution, analysis); analysis rebuilt on systems/apache-spark.
- systems/randomizer-swift — open-source Swift library for
randomised-input testing.
Randomprotocol + Standard Library conformances + user-type extension point. Authored by Vijaya Kandel (Zalando Mobile, iOS). Used inside Zalando's iOS codebase. - systems/testcontainers — Zalando Marketing Services
canonicalises the JVM / Java / Spring Boot altitude use
pattern: singleton
PostgreSQLContaineron a base class,@DynamicPropertySource-wired into Spring, amortised across all ITs in the JVM. Complements the existing Canva CI-framework altitude Seen-in. - systems/localstack · systems/mockserver · systems/wiremock · systems/ryuk-testcontainers-reaper — companion containers called out in the ZMS post.
- systems/junit5 · systems/maven-surefire-plugin · systems/maven-failsafe-plugin · systems/spring-boot — the JVM test stack Zalando ZMS plugs Testcontainers into.
- systems/zalando-load-test-conductor — Go microservice built by the Payments department (2021-03) to own the full lifecycle of an end-to-end load test: production-version cloning, multi-substrate scaling (Kubernetes + AWS ECS), KPI-closed-loop Locust steering, scale-down, and data cleanup. Exposes a declarative Kubernetes-inspired API; invoked both manually and via Kubernetes CronJob.
- systems/locust · systems/hoverfly — the Payments department's chosen open-source traffic generator and API mocking tool. Locust over Vegeta / JMeter on developer- familiarity; Hoverfly over Wiremock / MockServer on record-and-replay + stateful behaviour + language-agnostic deployment.
- systems/nakadi — Zalando's open-source event bus (Kafka wrapper with REST + schema registry); named in the 2021-03 post as a centrally-managed event queue whose test-cluster parity required cross-team alignment.
- systems/opentracing — the distributed tracing substrate powering concepts/adaptive-paging (from the 2020-10 Cyber-Week retrospective).
- systems/zalando-graphql-ubff — Zalando's single-service Unified Backend-For-Frontends GraphQL; in production since end of 2018; 12+ domains, 200+ consuming developers, 25-30 feature teams; >80% Web / >50% App coverage.
- systems/graphql-jit — Zalando's in-house open-source
JIT-compiled GraphQL executor (
zalando-incubator/graphql-jit), the execution engine the UBFF runs on. - systems/graphql — the query-language substrate.
- systems/zalando-interface-framework — second-generation frontend platform; designed 2018, ~90% of zalando.com traffic by March 2021. Supersedes the Mosaic Fragment architecture with an entity-based page-composition model.
- systems/zalando-mosaic — the 2015-era Fragment-based micro-frontend architecture Zalando retrospectively critiques; retained via hybrid Rendering-Engine modes during the migration to IF.
- systems/zalando-rendering-engine — the Node.js + browser runtime at the heart of IF; resolves Entity trees into Renderer trees using declarative rendering rules.
- systems/zally — Zalando's open-source OpenAPI linter that codifies the RESTful API Guidelines. MUST-severity rules gate CI builds — the enforcement point of API-first at Zalando.
- systems/fabric-gateway-zalando — Zalando's declarative Kubernetes API gateway built on top of Skipper; one of the three default AuthN/AuthZ options for new backend services.
- systems/opentracing-toolbox — Zalando's Java/Kotlin integration library for OpenTracing; named as the Kotlin Guild's default tracing library with a dedicated Kotlin submodule.
- systems/zalando-mdm-system — Zalando's in-house Master Data Management component (in-design as of mid-2021). Uses a knowledge graph in Neo4j as the design- time authoring substrate; Python script walks the graph to generate the logical data model of the golden record plus per-source-system transformation data models. Consolidated- style MDM scoped to "tens of tables and hundreds of columns".
- systems/neo4j — the property-graph database used as the knowledge-graph store and visualisation tool for the MDM modeling work. Chosen explicitly for "best look-and-feel" / domain-expert communication, not query-path semantics.
Key concepts and patterns surfaced¶
Postgres-on-Kubernetes / kernel-level latency axis:
- concepts/kube-proxy-iptables-probability — canonical observation of non-uniform kube-proxy load distribution.
- concepts/hyperthread-softirq-contention — canonical
first-person reproduction with
perfsoftirq tracepoints. - concepts/cpu-manager-static-policy — Kubernetes-native fix.
- concepts/so-reuseport-pgbouncer-scaling — PgBouncer's multi-core scaling primitive.
- concepts/network-namespace-benchmarking — the reproducible benchmark recipe.
- patterns/connection-pooler-as-separate-deployment — Zalando Operator's default topology.
- patterns/big-pooler-affinity-plus-small-pooler-ha — the documented escape hatch.
- patterns/fixed-cpu-pinning-for-latency-sensitive-pool
- patterns/so-reuseport-multi-process-single-port
- patterns/static-site-via-ingress-proxy-to-s3-website — Skipper Ingress + S3 website endpoint as a CloudFront alternative when the ingress platform is already operated.
- concepts/git-based-content-workflow — Zalando's PR-driven engineering blog publishing model.
- concepts/reuse-existing-infrastructure-over-purpose-built-service — the explicit reasoning behind choosing Skipper over CloudFront for the blog.
Experimentation-platform axis:
- concepts/experimentation-evolution-model-fabijan — the crawl/walk/run framework the entire Zalando evolution post is structured around.
- concepts/sample-ratio-mismatch — Zalando's 20%+ historical SRM rate vs 6–10% peer baseline.
- concepts/experimentation-culture — five org-level moves (integration, training, embedded owners, internal blogs, consultation hours) to build data-driven decision-making.
- concepts/ab-test-design-audit — 5-dimension pre-launch quality review.
- concepts/non-inferiority-test — identified in peer review as an improvement area over the default two-sided t-test.
- concepts/quasi-experimental-methods — causal-inference tools for use cases that can't be cleanly A/B-tested (country comparisons).
- concepts/overall-evaluation-criterion — team-specific + LTV-proxy guidelines for KPI selection.
- patterns/centralized-experimentation-platform — platformise A/B testing instead of team-by-team manual setup.
- patterns/controlled-rollout-with-traffic-rampup — gradual traffic exposure + feature toggles as Octopus platform primitives.
- patterns/open-source-wrapped-by-production-system — Octopus's inaugural architectural decoupling between Python stats library and Scala backend.
- patterns/automated-srm-alert — auto-alert + dashboard gating as Octopus's SRM remediation.
Mobile testing discipline axis:
- concepts/example-based-test-constant-input-antipattern — the failure mode Kandel names: hand-typed constants in test inputs make tests near-tautological against hard-coded implementations.
- concepts/type-class-driven-random-generator — the generator-
dispatch mechanism:
T.randomresolves per type via protocol conformance; user types compose via per-field delegation. - patterns/property-based-testing — extended with Zalando's Swift iOS implementer-altitude Seen-in; entry-level form of the pattern (one permutation per run, no shrinker, no seed replay).
JVM integration testing discipline axis:
- concepts/test-pyramid — Fowler/Cohn shape; Zalando ZMS's empirical ratio ≈ 25% integration tests to unit tests varies per app.
- concepts/first-test-principles — FIRST (Fast, Isolated, Repeatable, Self-Validating, Thorough) as the property contract ITs must still satisfy on shared containers.
- concepts/h2-vs-real-database-testing — the antipattern Testcontainers replaces; 4 s Postgres-in-Docker vs 0.4 s H2.
- concepts/singleton-container-pattern —
staticcontainer on an abstract base class, started once per JVM via static initialiser, inherited by every subclass IT. - concepts/contract-testing — the gap Testcontainers alone doesn't close; Zalando names Spring Cloud Contract as the complement.
- patterns/real-docker-container-over-in-memory-fake — prefer real Postgres / Localstack / MockServer over H2 / embedded-fakes / mocks-in-JVM.
- patterns/failsafe-integration-test-separation — Maven
Surefire (unit,
testphase) + Failsafe (IT,integration-testphase) gated by awith-integration-testsprofile. - patterns/shared-static-container-across-tests — the
ZMS-canonical
AbstractIntegrationTestidiom realising the singleton-container pattern.
Cyber-Week prep / load-test automation axis:
- concepts/declarative-load-test-api — the Kubernetes- inspired API style the Payments department chose for the Load Test Conductor ("Executing a load test is now just one API call away!").
- concepts/kpi-driven-load-ramp-up — the 60-second closed-loop algorithm keyed on orders-per-minute rather than a fixed users→orders ratio.
- concepts/header-based-mock-switching — how the test cluster lets a single service deployment serve both mocked- dependency (load-test) and real-dependency (integration- test) traffic per request.
- concepts/production-version-cloning-for-load-test — the Deployer + Scaler subcomponent invariant: match production version + replica count + resource allocation.
- concepts/test-cluster-as-break-things-environment — the complement to patterns/live-load-test-in-production; a non-prod cluster deliberately pushed past failure.
- concepts/adaptive-paging — from the 2020-10 Cyber-Week retrospective; OpenTracing-based alert-routing that pages the team closest to a fault.
- concepts/sre-organizational-evolution — three-phase (grassroots → tracing + capacity → dedicated department) SRE maturation named in the 2020-10 post.
- patterns/live-load-test-in-production — the in-prod discipline (2020-10 post) that the 2021-03 conductor's break-things cluster complements.
- patterns/declarative-load-test-conductor — the pattern abstracted from Zalando's Load Test Conductor.
- patterns/kpi-closed-loop-load-ramp-up — the algorithm pattern.
- patterns/mock-external-dependencies-for-isolated-load-test — the mocking-layer pattern.
- patterns/header-routed-mock-vs-real-dependency — the per-request switching pattern.
- patterns/scheduled-cron-triggered-load-test — the Kubernetes-CronJob-driven recurring-run pattern.
- patterns/annual-peak-event-as-capability-forcing-function — Cyber Week as the organisational forcing function that funds the load-test infrastructure investment.
Unified GraphQL BFF / API platform axis:
- concepts/backend-for-frontend — the pattern Zalando adopted in 2015 alongside microservices and replaced in 2018 with the UBFF; the wiki's canonical account of the five BFF pathologies at e-commerce scale.
- concepts/unified-graph-principled-graphql — the "one graph" discipline from Principled GraphQL; Zalando's 2021 post is the wiki's canonical discussion of this concept across six peer industry instances (GitHub, Shopify, Airbnb, Expedia, Netflix, Zalando).
- concepts/conways-law — named by Zalando as the root cause of cross-BFF inconsistency; the UBFF is an Inverse-Conway remediation.
- patterns/unified-graphql-backend-for-frontend — the single-service (non-federated) implementation of the unified-graph discipline; Zalando UBFF is the canonical wiki instance.
- patterns/business-logic-free-data-aggregation-layer — Zalando's "No Business Logic" principle; aggregation layer is platform- and domain-agnostic, presentation- layer backends own business logic.
- patterns/per-platform-deployment-bulkhead — Bulkhead applied at deployment level: separate Web + mobile-App instances of the same service, canonical at Zalando UBFF.
- patterns/graphql-unified-api-platform — Zalando UBFF extends the umbrella pattern's canonical instance list alongside Twitter and Netflix.
JVM language governance / Kotlin ADOPT ring axis:
- concepts/tech-radar-language-governance — ring-based (ASSESS/TRIAL/ADOPT/HOLD) governance for language and framework lifecycle; Zalando's public Tech Radar (opensource.zalando.com/tech-radar) is the canonical wiki instance.
- concepts/api-first-principle — OpenAPI-first contract design paired with build-time linter enforcement; Zalando operationalises it via Zally + published RESTful API Guidelines + the central API portal.
- patterns/template-project-nudges-consistency — bootstrap new services from a pre-wired template that "nudges teams towards higher consistency across different services and departments." The Kotlin Guild's template-ready deliverables are what graduated Kotlin from TRIAL to ADOPT.
MDM / knowledge-graph-driven data modeling axis:
- concepts/master-data-management — the enclosing discipline; "technology-enabled discipline in which business and Information Technology work together to ensure the uniformity, accuracy, stewardship, semantic consistency and accountability of the enterprise's official shared master data assets." Zalando chose consolidated-style MDM.
- concepts/golden-record — "a common, shared, and trusted view on data for a particular domain"; the output of consolidation over source systems.
- concepts/logical-data-model — the schema of the golden record; generated from the knowledge graph rather than authored directly.
- concepts/transformation-data-model — per-source-system
mapping showing direct (1-to-1) vs. indirect (1-to-many,
transformation-function) column → concept mappings. The
worked System A / System B
Addressexample (free-text address lines vs. structured street / zip / city / country_code fields) illustrates both mapping types. - concepts/semantic-layer-of-business-concepts — the graph of Concept / Attribute / Relationship nodes between source schemas and the target logical data model; the "shared conceptual vocabulary" that makes business- engineering alignment tractable.
- concepts/knowledge-graph — extended with Zalando MDM as its third canonical wiki instance (alongside Dropbox Dash retrieval substrate and Netflix UDA enterprise-data- integration substrate). A new H2 in the knowledge-graph concept page contrasts the three altitudes.
- concepts/data-lineage — extended with Zalando MDM as a design-time byproduct Seen-in, complementary to the existing Meta (enforcement-primitive) and Redpanda (agent-interaction envelope) framings.
- patterns/knowledge-graph-for-mdm-modeling — the core pattern; System / Table / Column / Concept / Attribute / Relationship node schema, Python generator, direct vs. indirect mappings.
- patterns/mapping-driven-schema-generation — the generalised pattern across MDM, Netflix UDA, and dbt-style data-build tools: make the mapping authoritative and derive both target schema and transformation code.
- patterns/visual-graph-for-business-engineering-alignment — Neo4j-rendered graph diagrams as the primary business- engineering communication artifact, replacing SQL DDL / spreadsheets. Named by the post as the #1 benefit.
Recent articles¶
- [2021-07-28] Knowledge Graph Technologies Accelerate and Improve the Data Model Definition for Master Data — sources/2021-07-28-zalando-knowledge-graph-technologies-accelerate-and-improve-the-data-model-definition
- [2021-06-30] How we use Kotlin for backend services at Zalando — sources/2021-06-30-zalando-how-we-use-kotlin-for-backend-services
- [2021-04-12] Modeling Errors in GraphQL — sources/2021-04-12-zalando-modeling-errors-in-graphql
- [2021-03-10] Micro Frontends: from Fragments to Renderers (Part 1) — sources/2021-03-10-zalando-micro-frontends-from-fragments-to-renderers-part-1
- [2021-03-03] How we use GraphQL at Europe's largest fashion e-commerce company — sources/2021-03-03-zalando-how-we-use-graphql-at-europes-largest-fashion-e-commerce-company
- [2021-03-01] Building an End to End load test automation system on top of Kubernetes — sources/2021-03-01-zalando-building-an-end-to-end-load-test-automation-system-on-top-of-kubernetes
- [2021-02-24] Integration tests with Testcontainers — sources/2021-02-24-zalando-integration-tests-with-testcontainers
- [2021-02-01] Stop using constants. Feed randomized input to test cases. — sources/2021-02-01-zalando-stop-using-constants-feed-randomized-input-to-test-cases
- [2021-01-11] Experimentation Platform at Zalando: Part 1 - Evolution — sources/2021-01-11-zalando-experimentation-platform-at-zalando-part-1-evolution
- [2020-10-07] How Zalando prepares for Cyber Week — sources/2020-10-07-zalando-how-zalando-prepares-for-cyber-week
- [2020-06-30] Launching the Engineering Blog — sources/2020-06-30-zalando-launching-the-engineering-blog
- [2020-06-23] PgBouncer on Kubernetes and how to achieve minimal latency — sources/2020-06-23-zalando-pgbouncer-on-kubernetes-minimal-latency
Related¶
- systems/zalando-postgres-operator · systems/postgresql · systems/pgbouncer · systems/kubernetes · systems/skipper-proxy · systems/external-dns · systems/kube-ingress-aws-controller · systems/octopus-zalando-experimentation-platform · systems/apache-spark · systems/randomizer-swift · systems/testcontainers · systems/spring-boot · systems/junit5 · systems/maven-surefire-plugin · systems/maven-failsafe-plugin · systems/localstack · systems/mockserver · systems/wiremock · systems/ryuk-testcontainers-reaper · systems/zalando-graphql-ubff · systems/graphql-jit · systems/graphql · systems/rfc-7807-problem-details · systems/zalando-interface-framework · systems/zalando-mosaic · systems/zalando-rendering-engine · systems/react · systems/typescript · systems/nodejs · systems/locust · systems/hoverfly · systems/zalando-load-test-conductor · systems/nakadi · systems/grafana · systems/amazon-ecs · systems/opentracing · systems/opentracing-toolbox · systems/zally · systems/fabric-gateway-zalando · systems/zalando-mdm-system · systems/neo4j
- concepts/example-based-test-constant-input-antipattern · concepts/type-class-driven-random-generator · concepts/test-pyramid · concepts/first-test-principles · concepts/h2-vs-real-database-testing · concepts/singleton-container-pattern · concepts/contract-testing · concepts/backend-for-frontend · concepts/unified-graph-principled-graphql · concepts/conways-law · concepts/micro-frontends · concepts/entity-based-page-composition · concepts/monorepo · concepts/graphql-error-extensions · concepts/error-action-taker-classification · concepts/problem-vs-error-distinction · concepts/graphql-error-propagation · concepts/schema-discoverability-gap-in-errors · concepts/declarative-load-test-api · concepts/kpi-driven-load-ramp-up · concepts/header-based-mock-switching · concepts/production-version-cloning-for-load-test · concepts/test-cluster-as-break-things-environment · concepts/adaptive-paging · concepts/sre-organizational-evolution · concepts/api-first-principle · concepts/tech-radar-language-governance · concepts/knowledge-graph · concepts/master-data-management · concepts/golden-record · concepts/logical-data-model · concepts/transformation-data-model · concepts/semantic-layer-of-business-concepts · concepts/data-lineage
- patterns/property-based-testing · patterns/real-docker-container-over-in-memory-fake · patterns/failsafe-integration-test-separation · patterns/shared-static-container-across-tests · patterns/unified-graphql-backend-for-frontend · patterns/business-logic-free-data-aggregation-layer · patterns/per-platform-deployment-bulkhead · patterns/graphql-unified-api-platform · patterns/entity-to-renderer-mapping · patterns/page-performance-quality-gates · patterns/result-union-type-for-mutation-outcome · patterns/problem-type-for-customer-actionable-errors · patterns/error-extensions-code-for-developer-actionable-errors · patterns/live-load-test-in-production · patterns/declarative-load-test-conductor · patterns/kpi-closed-loop-load-ramp-up · patterns/mock-external-dependencies-for-isolated-load-test · patterns/header-routed-mock-vs-real-dependency · patterns/scheduled-cron-triggered-load-test · patterns/annual-peak-event-as-capability-forcing-function · patterns/template-project-nudges-consistency · patterns/knowledge-graph-for-mdm-modeling · patterns/mapping-driven-schema-generation · patterns/visual-graph-for-business-engineering-alignment