Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
23 changes: 23 additions & 0 deletions chapters/chapter07/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Chapter 7

Code accompanying Chapter 7 of the book [Data Pipelines with Apache Airflow](https://www.manning.com/books/data-pipelines-with-apache-airflow).

## Contents


## Usage

To get started with the code examples, start Airflow with Docker Compose with the following command:

```bash
docker-compose up -d
```

The webserver initializes a few things, so wait for a few seconds, and you should be able to access the
Airflow webserver at http://localhost:8080.

To stop running the examples, run the following command:

```bash
docker-compose down -v
```
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from sagemaker.amazon.common import write_numpy_to_dense_tensor

dag = DAG(
dag_id="chapter9_aws_handwritten_digit_classifier",
dag_id="chapter_7_aws_handwritten_digit_classifier",
schedule_interval=None,
start_date=airflow.utils.dates.days_ago(3),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from custom.postgres_to_s3_operator import PostgresToS3Operator

dag = DAG(
dag_id="chapter9_insideairbnb",
dag_id="chapter_7_insideairbnb",
start_date=datetime(2015, 4, 5),
end_date=datetime(2019, 12, 7),
schedule_interval="@monthly",
Expand Down
21 changes: 0 additions & 21 deletions chapters/chapter9/readme.md

This file was deleted.