-
Notifications
You must be signed in to change notification settings - Fork 95
/
MySqlToSpanner_parameterize_script.py
162 lines (134 loc) · 5.11 KB
/
MySqlToSpanner_parameterize_script.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
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from typing import Dict, Sequence, Optional, Any
import argparse
import json
import papermill as pm
from parameterize_script import BaseParameterizeScript
import parameterize_script.util.notebook_constants as constants
from parameterize_script.util import get_common_args
__all__ = ["MySqlToSpannerScript"]
class MySqlToSpannerScript(BaseParameterizeScript):
"""
Script to parameterize MySqlToSpanner notebook.
"""
@staticmethod
def parse_args(args: Optional[Sequence[str]] = None) -> Dict[str, Any]:
parser = argparse.ArgumentParser()
parser.add_argument(
f"--{constants.MYSQL_HOST_ARG}",
dest=constants.MYSQL_HOST,
required=True,
help="MySQL host or IP address",
)
parser.add_argument(
f"--{constants.MYSQL_PORT_ARG}",
dest=constants.MYSQL_PORT,
default="3306",
required=False,
help="MySQL port (Default: 3306)",
)
parser.add_argument(
f"--{constants.MYSQL_USERNAME_ARG}",
dest=constants.MYSQL_USERNAME,
required=True,
help="MySQL username",
)
parser.add_argument(
f"--{constants.MYSQL_PASSWORD_ARG}",
dest=constants.MYSQL_PASSWORD,
required=True,
help="MySQL password",
)
parser.add_argument(
f"--{constants.MYSQL_DATABASE_ARG}",
dest=constants.MYSQL_DATABASE,
required=True,
help="MySQL database name",
)
parser.add_argument(
f"--{constants.MYSQL_TABLE_LIST_ARG}",
dest=constants.MYSQL_TABLE_LIST,
required=False,
default="",
help="MySQL table list to migrate. "
'Leave empty for migrating complete database else provide tables as "table1,table2"',
)
parser.add_argument(
f"--{constants.MYSQL_OUTPUT_SPANNER_MODE_ARG}",
dest=constants.MYSQL_OUTPUT_SPANNER_MODE,
required=False,
default=constants.OUTPUT_MODE_OVERWRITE,
help="Spanner output write mode (Default: overwrite). "
"Use append when schema already exists in Spanner",
choices=[constants.OUTPUT_MODE_OVERWRITE, constants.OUTPUT_MODE_APPEND],
)
parser.add_argument(
f"--{constants.SPANNER_INSTANCE_ARG}",
dest=constants.SPANNER_INSTANCE,
required=True,
help="Spanner instance name",
)
parser.add_argument(
f"--{constants.SPANNER_DATABASE_ARG}",
dest=constants.SPANNER_DATABASE,
required=True,
help="Spanner database name",
)
parser.add_argument(
f"--{constants.SPANNER_TABLE_PRIMARY_KEYS_ARG}",
dest=constants.SPANNER_TABLE_PRIMARY_KEYS,
required=True,
help='Provide table & PK column which do not have PK in MySQL table {"table_name":"primary_key"}',
)
parser.add_argument(
f"--{constants.MAX_PARALLELISM_ARG}",
dest=constants.MAX_PARALLELISM,
type=int,
default=5,
required=False,
help="Maximum number of tables that will migrated parallelly (Default: 5)",
)
parser = get_common_args(parser)
known_args: argparse.Namespace
known_args, _ = parser.parse_known_args()
return vars(known_args)
def run(self, args: Dict[str, Any]) -> None:
"""
Run the notebook.
"""
# Convert comma separated string to list
args[constants.MYSQL_TABLE_LIST] = list(
map(str.strip, args[constants.MYSQL_TABLE_LIST].split(","))
)
# Convert JSON string to object
args[constants.SPANNER_TABLE_PRIMARY_KEYS] = json.loads(
args[constants.SPANNER_TABLE_PRIMARY_KEYS]
)
# Exclude arguments that are not needed to be passed to the notebook
ignore_keys = {constants.LOG_LEVEL_ARG, constants.OUTPUT_NOTEBOOK_ARG}
nb_parameters = {
key: val for key, val in args.items() if key not in ignore_keys
}
# Get environment variables
env_vars = MySqlToSpannerScript.get_env_vars()
nb_parameters.update(env_vars)
# Run the notebook
output_path = args[constants.OUTPUT_NOTEBOOK_ARG]
pm.execute_notebook(
"mysql2spanner/MySqlToSpanner_notebook.ipynb",
output_path,
parameters=nb_parameters,
log_output=True,
)