data-pipelines-with-apache-airflow icon indicating copy to clipboard operation
data-pipelines-with-apache-airflow copied to clipboard

Code for Data Pipelines with Apache Airflow

Results 39 data-pipelines-with-apache-airflow issues
Sort by recently updated
recently updated
newest added

While trying to start to project I found the issue with the path to NYC data that is stored in s3 More explanation here: https://coiled.io/blog/nyc-taxi-parquet-csv-index-error/ Solution proposal: ```sh https://s3.amazonaws.com/nyc-tlc/trip+data/yellow_tripdata_2019- to...

Hi Team, The concepts of chapter 9 help me a lot and I found codes in the path of airflowbook.operators.movielens_operator are missing. Could you help upload them? Thank you for...

Fix Jinja2 version due to escape module was [dropped in newer versions of Jinja](https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-0). Without it, I got the following error: > ImportError: cannot import name 'escape' from 'jinja2'

fix for the jinja2 import error ``` ImportError: cannot import name 'escape' from 'jinja2' ```

On Macbook Pro M1 Max, after running `docker-compose up -d`, the following error occured on port 8083 and 8082. ``` Traceback (most recent call last): File "app.py", line 4, in...

The citibike_api_1 fails to run , showing an error ` File "app.py", line 6, in from flask import Flask, jsonify, Response File "/usr/local/lib/python3.7/site-packages/flask/__init__.py", line 14, in from jinja2 import escape`...

chapter 7 directory has two readme files: `README.md` and `readme.md`. This caused git to give the warning about colliding paths: ``` warning: the following paths have collided (e.g. case-sensitive paths...

I was reading Chapter 7 of book and tried to reproduce the examples there, so I came here to check it out. If I go to https://github.com/BasPH/data-pipelines-with-apache-airflow/tree/master/chapter07, there is code...

There is also an error in Listing 5.15 in the book...

https://github.com/BasPH/data-pipelines-with-apache-airflow/blob/40b52ba6fcda3203b194be9e1c2850135997215a/chapter04/dags/listing_4_8.py#L13-L14 airflow==2.2.2 shows ``` DeprecationWarning: Accessing 'execution_date' from the template is deprecated and will be removed in a future version. Please use 'logical_date' or 'data_interval_start' instead. ``` and ``` DeprecationWarning:...