forked from scylladb/scylladb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fix_system_distributed_tables.py
executable file
·156 lines (137 loc) · 5.21 KB
/
fix_system_distributed_tables.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
#!/usr/bin/env python
#
# Copyright 2017 ScyllaDB
#
#
# This file is part of Scylla.
#
# Scylla is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Scylla is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Scylla. If not, see <http://www.gnu.org/licenses/>.
#
import argparse
import sys
from cassandra.cluster import Cluster
from cassandra.auth import PlainTextAuthProvider
events_cols = {
'session_id' : 'uuid',
'event_id' : 'timeuuid',
'activity' : 'text',
'source' : 'inet',
'source_elapsed': 'int',
'thread' : 'text'
}
sessions_cols = {
'session_id' : 'uuid',
'command' : 'text',
'client' : 'inet',
'coordinator' : 'inet',
'duration' : 'int',
'parameters' : 'map<text, text>',
'request' : 'text',
'started_at' : 'timestamp'
}
slow_query_log_cols = {
'node_ip' : 'inet',
'shard' : 'int',
'session_id' : 'uuid',
'date' : 'timestamp',
'start_time' : 'timeuuid',
'command' : 'text',
'duration' : 'int',
'parameters' : 'map<text, text>',
'source_ip' : 'inet',
'table_names' : 'set<text>',
'username' : 'text'
}
traces_tables_defs = {
'events' : events_cols,
'sessions' : sessions_cols,
'node_slow_log': slow_query_log_cols
}
################################################################################
credentials_cols = {
'username' : 'text',
'options' : 'map<text, text>',
'salted_hash' : 'text'
}
permissions_cols = {
'username' : 'text',
'resource' : 'text',
'permissions' : 'set<text>'
}
users_cols = {
'name' : 'text',
'super' : 'boolean'
}
auth_tables_defs = {
'credentials' : credentials_cols,
'permissions' : permissions_cols,
'users' : users_cols
}
################################################################################
ks_defs = {
'system_traces' : traces_tables_defs,
'system_auth' : auth_tables_defs
}
################################################################################
def validate_and_fix(args):
res = True
if args.user:
auth_provider = PlainTextAuthProvider(username=args.user, password=args.password)
cluster = Cluster(auth_provider=auth_provider, contact_points=[ args.node ], port=args.port)
else:
cluster = Cluster(contact_points=[ args.node ], port=args.port)
try:
session = cluster.connect()
cluster_meta = session.cluster.metadata
for ks, tables_defs in ks_defs.items():
if not ks in cluster_meta.keyspaces:
print("keyspace {} doesn't exist - skipping".format(ks))
continue
ks_meta = cluster_meta.keyspaces[ks]
for table_name, table_cols in tables_defs.items():
if not table_name in ks_meta.tables:
print("{}.{} doesn't exist - skipping".format(ks, table_name))
continue
print "Adjusting {}.{}".format(ks, table_name)
table_meta = ks_meta.tables[table_name]
for column_name, column_type in table_cols.items():
if column_name in table_meta.columns:
column_meta = table_meta.columns[column_name]
if column_meta.cql_type != column_type:
print("ERROR: {}.{}::{} column has an unexpected column type: expected '{}' found '{}'".format(ks, table_name, column_name, column_type, column_meta.cql_type))
res = False
else:
try:
session.execute("ALTER TABLE {}.{} ADD {} {}".format(ks, table_name, column_name, column_type))
print "{}.{}: added column '{}' of the type '{}'".format(ks, table_name, column_name, column_type)
except:
print "ERROR: {}.{}: failed to add column '{}' with type '{}': {}".format(ks, table_name, column_name, column_type, sys.exc_info())
res = False
except:
print "ERROR: {}".format(sys.exc_info())
res = False
return res
################################################################################
if __name__ == '__main__':
argp = argparse.ArgumentParser(description = 'Validate distributed system keyspaces')
argp.add_argument('--user', '-u')
argp.add_argument('--password', '-p', default='none')
argp.add_argument('--node', default='127.0.0.1', help='Node to connect to.')
argp.add_argument('--port', default='9042', help='Port to connect to.')
args = argp.parse_args()
res = validate_and_fix(args)
if res:
sys.exit(0)
else:
sys.exit(1)