-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
193 lines (148 loc) · 6.06 KB
/
main.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
"""
S3に保存されているCURマニフェストファイルからAthenaテーブル作成用のDDLを出力するスクリプト。
モード変更によって直接AthenaにDDLを実行することもできる。
"""
import json
import re
import time
from pathlib import Path
import boto3
from jinja2 import Environment, FileSystemLoader
TEMPLATE_NAME_CREATE_TABLE = "template/ddl_create_table.hql.j2"
TEMPLATE_NAME_CREATE_VIEW = "template/ddl_create_view.hql.j2"
TEMPLATE_NAME_DROP_TABLE = "template/ddl_drop_table.hql.j2"
def __print_query(session, args):
"""
クエリを標準出力に表示します。
Parameters
----------
session : boto3.session.Session
セッションオブジェクト
args : dict[str, str]
args.manifest
マニフェストファイルのS3パス
"""
ddl = __get_athena_ddl(session, args.manifest)
print(ddl["create_table"])
def __execute_athena_query(session, args):
"""
クエリをAthenaで実行します。
Parameters
----------
session : boto3.session.Session
セッションオブジェクト
args : dict[str, str]
args.manifest
マニフェストファイルのS3パス
args.output
Athenaクエリ結果格納先のS3パス
"""
ddl = __get_athena_ddl(session, args.manifest)
athena = session.client("athena")
if args.force:
response = athena.start_query_execution(
QueryString=ddl["drop_table"],
ResultConfiguration={"OutputLocation": args.output},
)
result = __get_athena_query_result(athena, response["QueryExecutionId"])
print("DROP TABLE:", result)
response = athena.start_query_execution(
QueryString=ddl["create_table"],
ResultConfiguration={"OutputLocation": args.output},
)
result = __get_athena_query_result(athena, response["QueryExecutionId"])
print("CREATE TABLE:", result)
if args.view:
response = athena.start_query_execution(
QueryString=ddl["create_view"],
ResultConfiguration={"OutputLocation": args.output},
)
result = __get_athena_query_result(athena, response["QueryExecutionId"])
print("CREATE VIEW:", result)
def __get_athena_query_result(athena, execution_id):
"""
指定したIDの結果を取得する。実行が完了するまで5秒間隔でポーリングする。
"""
while True:
stats = athena.get_query_execution(QueryExecutionId=execution_id)
status = stats["QueryExecution"]["Status"]["State"]
if status in ["SUCCEEDED", "FAILED", "CANCELLED"]:
return status
time.sleep(5)
def __get_athena_ddl(session, manifest_path):
"""
CURのマニフェストファイルからAthena用のDDLを作成する。
"""
bucket_name, manifest_path = __parse_s3path(manifest_path)
manifest_data = __get_manifest_data(session, bucket_name, manifest_path)
drop_table_template = __get_template(TEMPLATE_NAME_DROP_TABLE)
create_table_template = __get_template(TEMPLATE_NAME_CREATE_TABLE)
create_view_template = __get_template(TEMPLATE_NAME_CREATE_VIEW)
cur_dirpath = Path(manifest_path).parent
s3_cur_dirpath = f"s3://{bucket_name}/{cur_dirpath}/{manifest_data['assemblyId']}/"
table_name = f"cur_{manifest_data['billingPeriod']['start'][:8]}_{manifest_data['billingPeriod']['end'][:8]}"
drop_table_render_params = {"table_name": table_name}
create_table_render_params = {
"table_name": table_name,
"s3_cur_dirpath": s3_cur_dirpath,
"columns": manifest_data["columns"],
}
create_view_render_params = {
"table_name": table_name,
"view_name": f"v_{table_name}",
"columns": manifest_data["columns"],
}
return {
"drop_table": drop_table_template.render(**drop_table_render_params),
"create_table": create_table_template.render(**create_table_render_params),
"create_view": create_view_template.render(**create_view_render_params),
}
def __parse_s3path(s3_path):
"""
S3のパスをバケット名とオブジェクトのキーに分ける
"""
m = re.match(r"s3://(?P<bucket_name>.+?)/(?P<manifest_path>.+)", s3_path)
bucket_name = m.group("bucket_name")
object_key = m.group("manifest_path")
return (bucket_name, object_key)
def __get_manifest_data(session, bucket_name, manifest_path):
"""
マニフェストファイルの内容をdictで返す
"""
s3 = session.client("s3")
object_body = s3.get_object(Bucket=bucket_name, Key=manifest_path)["Body"]
manifest_data = json.loads(object_body.read().decode())
return manifest_data
def __get_template(template_name):
"""
DDLのテンプレートを返す
"""
env = Environment(loader=FileSystemLoader("."))
template = env.get_template(template_name)
return template
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser(
description="CURのマニフェストファイルからAthena用のDDLを作成する",
allow_abbrev=False,
)
parser.add_argument("-p", "--profile", help="AWS CLI profile (default: default)")
parser.add_argument(
"-m", "--manifest", required=True, help="S3 path for CUR Manifest file"
)
parser.set_defaults(func=__print_query)
subparsers = parser.add_subparsers()
parser_athena = subparsers.add_parser("athena", help="create table for athena mode")
parser_athena.add_argument(
"-o", "--output", required=True, help="athena query output S3 path"
)
parser_athena.add_argument("-v", "--view", action="store_true", help="create view")
parser_athena.add_argument(
"-f", "--force", action="store_true", help="create table after drop table"
)
parser_athena.set_defaults(func=__execute_athena_query)
parser_print = subparsers.add_parser("print", help="output to stdout mode")
parser_print.set_defaults(func=__print_query)
args = parser.parse_args()
session = boto3.Session(profile_name=args.profile)
args.func(session, args)