-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.py
279 lines (264 loc) · 8.17 KB
/
example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
from airflow import DAG
from airflow.operators.bash_operator import BashOperator
from airflow.operators.python_operator import PythonOperator
from airflow.utils.dates import days_ago
from datetime import timedelta
from .generator import generate_airflows
### Python operator callables
def check_python_dependencies():
import subprocess
import sys
dependencies = ['pandas', 'pymongo', 'urllib']
for dep in dependencies:
try:
exec(f"import {dep}")
except:
subprocess.check_call([
sys.executable, "-m", "pip", "install",
dep
])
def process_csv():
import pandas as pd
temperature = pd.read_csv(
'/tmp/p2/csv/temperature.csv',
header=0
)
humidity = pd.read_csv(
'/tmp/p2/csv/humidity.csv',
header=0
)
frame = pd.DataFrame(data={
'DATE': temperature['datetime'],
'TEMP': temperature['San Francisco'],
'HUM': humidity['San Francisco']
})
frame.to_csv(
'/tmp/p2/mongo/sanfrancisco.csv',
sep=',',
encoding='utf-8',
index=False
)
FLOWS = [
{
'flow_id': 'check_dependencies',
'tasks': [
{
'id': 'check_python_dependencies',
'type': PythonOperator,
'params': {
'python_callable': check_python_dependencies
}
},
{
'id': 'create_root_folder',
'type': BashOperator,
'params': {
'bash_command': '\
rm -rf /tmp/p2/* && \
mkdir -p /tmp/p2 && \
mkdir -p /tmp/p2/csv'
}
}
]
},
{
'flow_id': 'download_data',
'depends_on': 'create_root_folder',
'tasks': [
{
'id': 'download_csv_data',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/csv && \
wget https://raw.githubusercontent.com/manuparra/MaterialCC2020/master/humidity.csv.zip && \
wget https://raw.githubusercontent.com/manuparra/MaterialCC2020/master/temperature.csv.zip'
}
},
{
'id': 'show_folder',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/csv && \
ls -lah'
}
},
{
'id': 'unzip_csv_data',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/csv && \
unzip -u humidity.csv.zip && \
unzip -u temperature.csv.zip'
}
},
{
'id': 'download_repo',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2 && \
git clone https://github.com/harvestcore/cc2'
}
},
{
'id': 'extract_apis',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2 && \
ls -lah && \
mv cc2/p2/api . && \
mv cc2/p2/mongo .'
}
}
]
},
{
'flow_id': 'process_data',
'depends_on': 'extract_apis',
'tasks': [
{
'id': 'process_csv',
'type': PythonOperator,
'params': {
'python_callable': process_csv
}
},
{
'id': 'run_mongo_database',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/mongo && \
docker-compose down && \
docker-compose up -d'
}
}
]
},
{
'flow_id': 'test_api',
'depends_on': 'run_mongo_database',
'tasks': [
{
'id': 'parallel_branch_api',
'parallel': [
{
'id': 'train_api_v1_data',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/api/v1 && \
if test -f "/data/humidity.pkl"; then cp /data/humidity.pkl ./data; fi && \
if test -f "/data/temperatures.pkl"; then cp /data/temperatures.pkl ./data; else \
pip3 install -r requirements.txt && python3 train.py && cp *.pkl /data; fi'
}
},
{
'id': 'build_test_api_v2',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/api/v2 && \
docker-compose down && \
docker build . -f Dockerfile.test -t test-api-v2:latest'
}
}
]
}
]
},
{
'flow_id': 'test_and_deploy_api_v1',
'depends_on': 'train_api_v1_data',
'tasks': [
{
'id': 'build_test_api_v1',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/api/v1 && \
docker build . -f Dockerfile.test -t test-api-v1:latest'
}
},
{
'id': 'test_api_v1',
'type': BashOperator,
'params': {
'bash_command': 'docker run test-api-v1:latest'
}
},
{
'id': 'build_image_api_v1',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/api/v1 && \
docker-compose down && \
docker-compose build'
}
},
{
'id': 'run_image_api_v1',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/api/v1 && \
docker-compose up -d'
}
}
]
},
{
'flow_id': 'test_and_deploy_api_v2',
'depends_on': 'build_test_api_v2',
'tasks': [
{
'id': 'test_api_v2',
'type': BashOperator,
'params': {
'bash_command': 'docker run test-api-v2:latest'
}
},
{
'id': 'build_image_api_v2',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/api/v2 && \
docker-compose down && \
docker-compose build'
}
},
{
'id': 'run_image_api_v2',
'type': BashOperator,
'params': {
'bash_command': '\
cd /tmp/p2/api/v2 && \
docker-compose up -d'
}
}
]
}
]
DEFAULT_ARGS = {
'owner': 'airflow',
'depends_on_past': False,
'start_date': days_ago(1),
'retries': 1,
'retry_delay': timedelta(minutes=10),
}
dag = DAG(
dag_id = 'deploy_v1_v2',
default_args = DEFAULT_ARGS,
description = 'Deploy API v1 and v2',
dagrun_timeout = timedelta(minutes=2),
schedule_interval = timedelta(days=1),
)
out = generate_airflows(dag, FLOWS)
for flow in out:
next(out)