Release It!: Design and Deploy Production-Ready Software, Michael T. Nygard, 2018 (The Pragmatic Bookshelf) - This is the seminal work introducing the circuit breaker pattern, providing foundational principles directly applicable to data pipelines.
Apache Airflow Documentation: ShortCircuitOperator, Apache Software Foundation, 2023 (Apache Software Foundation) - Provides specific implementation details for the ShortCircuitOperator in Apache Airflow, a common tool for blocking pipeline execution.
dbt Docs: Testing your dbt project, dbt Labs, 2023 (dbt Labs) - Explains how to configure dbt tests with severity: error to halt pipeline execution when data quality assertions fail.
Anomaly Detection Principles and Techniques, Varun Chandola, Arindam Banerjee, Vipin Kumar, 2009ACM Computing Surveys, Vol. 41 (Association for Computing Machinery (ACM))DOI: 10.1145/1541880.1541882 - Provides a comprehensive overview of anomaly detection methods, including statistical approaches like Z-score, which are relevant to adaptive circuit breakers.