-
Notifications
You must be signed in to change notification settings - Fork 1
/
infrastructure_initiation.py
153 lines (132 loc) · 4.27 KB
/
infrastructure_initiation.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
import config
import tasks
from logger_infrastructure import *
if __name__ == '__main__':
client = tasks.create_client(cred_json=config.cred_json, project_id=config.project_id)
logging.info(f"Client object has been created in {config.project_id}")
# creating the schema
tasks.create_schema(
client=client, project_id=config.project_id, dataset_id=config.dataset_id
)
logging.info(f"Schema {config.dataset_id }has been created in {config.project_id}")
# dropping tables if they exist
tasks.drop_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="badges_fact",
)
logging.info("badges_fact has been dropped")
tasks.drop_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="comments_fact",
)
logging.info("comments_fact has been dropped")
tasks.drop_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="",
)
logging.info("post_answers_fact has been dropped")
tasks.drop_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="post_answers_fact",
)
logging.info("post_answers_fact has been dropped")
tasks.drop_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="post_history_fact",
)
logging.info("post_history_fact has been dropped")
tasks.drop_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="post_links_fact",
)
logging.info("post_links_fact has been dropped")
tasks.drop_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="users_dim",
)
logging.info("users_dim has been dropped")
tasks.drop_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="tags_dim",
)
logging.info("tags_dim has been dropped")
tasks.drop_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="posts_question_dim",
)
logging.info("posts_question_dim has been dropped")
# creating tables
tasks.create_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="badges_fact",
)
logging.info("badges_fact has been created")
tasks.create_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="comments_fact",
)
logging.info("comments_fact has been created")
tasks.create_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="comments_fact",
)
logging.info("DimPlatform_SCD1 has been created")
tasks.create_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="post_answers_fact",
)
logging.info("post_answers_fact has been created")
tasks.create_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="post_link_fact",
)
logging.info("post_links_fact has been created")
tasks.create_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="users_dim",
)
logging.info("users_dim has been created")
tasks.create_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="tags_dim",
)
logging.info("tags_dim has been created")
tasks.create_table(
client=client,
project_id=config.project_id,
dataset_id=config.dataset_id,
table_name="post_question_dim",
)
logging.info("posts_question_dim has been created")