-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql_queries.py
More file actions
300 lines (264 loc) · 6.51 KB
/
sql_queries.py
File metadata and controls
300 lines (264 loc) · 6.51 KB
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
import configparser
"""
Support module for both `create_tables.py` and `etl.py`.
Contains the queries used by the following functions:
create_tables.drop_tables(),
create_tables.create_tables(),
etl.load_staging_tables(),
etl.insert_final_tables()
"""
# CONFIG
config = configparser.ConfigParser()
config.read('dwh.cfg')
DWH_ROLE_ARN = config['IAM_ROLE']['ARN']
LOG_DATA = config['S3']['LOG_DATA']
SONG_DATA = config['S3']['SONG_DATA']
LOG_JSONPATH = config['S3']['LOG_JSONPATH']
# DROP TABLES
# We use CASCADE here in dropping some tables because we have used `references`
# to these tables when creating the `songplays` table.
staging_events_table_drop = "DROP TABLE IF EXISTS staging_events"
staging_songs_table_drop = "DROP TABLE IF EXISTS staging_songs"
songplay_table_drop = "DROP TABLE IF EXISTS songplays"
user_table_drop = "DROP TABLE IF EXISTS users CASCADE"
song_table_drop = "DROP TABLE IF EXISTS songs CASCADE"
artist_table_drop = "DROP TABLE IF EXISTS artists CASCADE"
time_table_drop = "DROP TABLE IF EXISTS time CASCADE"
# CREATE TABLES
staging_events_table_create = ("""
CREATE TABLE IF NOT EXISTS staging_events (
artist text,
auth text,
first_name text,
gender char(1),
item_session numeric,
last_name text,
length numeric,
level text,
location text,
method text,
page text distkey,
registration numeric,
session_id numeric,
song text,
status numeric,
ts timestamp sortkey,
user_agent text,
user_id numeric
)
""")
staging_songs_table_create = ("""
CREATE TABLE IF NOT EXISTS staging_songs (
num_songs numeric,
artist_id text distkey,
artist_latitude numeric,
artist_longitude numeric,
artist_location text,
artist_name text,
song_id text,
title text,
duration numeric,
year numeric
)
""")
songplay_table_create = ("""
CREATE TABLE songplays (
songplay_id bigint IDENTITY(0, 1),
start_time timestamp references time(start_time) sortkey not null,
user_id int references users(user_id) distkey not null,
level text,
song_id text references songs(song_id),
artist_id text references artists(artist_id),
session_id int,
location text,
user_agent text,
PRIMARY KEY (songplay_id))
""")
user_table_create = ("""
CREATE TABLE users (
user_id int distkey sortkey not null,
first_name text,
last_name text,
gender text,
level text,
PRIMARY KEY (user_id))
""")
song_table_create = ("""
CREATE TABLE songs (
song_id text distkey sortkey not null,
title text,
artist_id text,
year int,
duration double precision,
PRIMARY KEY (song_id))
""")
artist_table_create = ("""
CREATE TABLE artists (
artist_id text distkey sortkey not null,
name text,
location text,
latitude double precision,
longitude double precision,
PRIMARY KEY (artist_id))
""")
time_table_create = ("""
CREATE TABLE time (
start_time timestamp distkey sortkey not null,
hour int,
day int,
week int,
month int,
year int,
weekday int,
PRIMARY KEY (start_time))
""")
# STAGING TABLES
# Copy code adapted from 'Cloud Data Warehouses' module exercises.
# Redshift timeformat code from -
# https://stackoverflow.com/questions/28496065/epoch-to-timeformat-yyyy-mm-dd-hhmiss-while-redshift-copy
staging_events_copy = ("""
copy staging_events from {}
iam_role {}
json {}
timeformat as 'epochmillisecs'
blanksasnull
emptyasnull
region 'us-west-2';
""").format(LOG_DATA, DWH_ROLE_ARN, LOG_JSONPATH)
staging_songs_copy = ("""
copy staging_songs from {}
iam_role {}
format as json 'auto'
blanksasnull
emptyasnull
region 'us-west-2';
""").format(SONG_DATA, DWH_ROLE_ARN)
# FINAL TABLES
songplay_table_insert = ("""
insert into songplays (
start_time,
user_id,
level,
song_id,
artist_id,
session_id,
location,
user_agent)
select
distinct staging_events.ts as start_time,
staging_events.user_id,
staging_events.level,
staging_songs.song_id,
staging_songs.artist_id,
staging_events.session_id,
staging_events.location,
staging_events.user_agent
from staging_events
inner join staging_songs on
staging_events.artist = staging_songs.artist_name and
staging_events.song = staging_songs.title
where staging_events.page = 'NextSong'
""")
# Redshift UPSERT equivalent via Udacity mentor answer -
# https://knowledge.udacity.com/questions/276119
user_table_insert = ("""
insert into users (
user_id,
first_name,
last_name,
gender,
level)
select
distinct user_id,
staging_events.first_name,
staging_events.last_name,
staging_events.gender,
staging_events.level
from staging_events
where staging_events.page = 'NextSong' and
user_id NOT IN (SELECT DISTINCT user_id FROM users)
""")
song_table_insert = ("""
insert into songs (
song_id,
title,
artist_id,
year,
duration
)
select
distinct staging_songs.song_id,
staging_songs.title,
staging_songs.artist_id,
staging_songs.year,
staging_songs.duration
from staging_songs
where staging_songs.song_id NOT IN (SELECT DISTINCT song_id FROM songs)
""")
artist_table_insert = ("""
insert into artists (
artist_id,
name,
location,
latitude,
longitude)
select
distinct staging_songs.artist_id,
staging_songs.artist_name as name,
staging_songs.artist_location as location,
staging_songs.artist_latitude as latitude,
staging_songs.artist_longitude as longitude
from staging_songs
where staging_songs.artist_id NOT IN (SELECT DISTINCT artist_id FROM artists)
""")
# Using Redshit's EXTRACT function -
# https://docs.aws.amazon.com/redshift/latest/dg/r_EXTRACT_function.html
time_table_insert = ("""
insert into time (
start_time,
hour,
day,
week,
month,
year,
weekday)
select
distinct staging_events.ts as start_time,
extract (hour from staging_events.ts) as hour,
extract (day from staging_events.ts) as day,
extract (week from staging_events.ts) as week,
extract (month from staging_events.ts) as month,
extract (year from staging_events.ts) as year,
extract (weekday from staging_events.ts) as weekday
from staging_events
""")
# QUERY LISTS
create_table_queries = [
staging_events_table_create,
staging_songs_table_create,
user_table_create,
song_table_create,
artist_table_create,
time_table_create,
songplay_table_create
]
drop_table_queries = [
staging_events_table_drop,
staging_songs_table_drop,
songplay_table_drop,
user_table_drop,
song_table_drop,
artist_table_drop,
time_table_drop
]
staging_table_queries = [
staging_events_copy,
staging_songs_copy
]
final_table_queries = [
songplay_table_insert,
user_table_insert,
song_table_insert,
artist_table_insert,
time_table_insert
]