kaqing 2.0.110__py3-none-any.whl → 2.0.214__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of kaqing might be problematic. Click here for more details.
- adam/__init__.py +0 -2
- adam/app_session.py +9 -12
- adam/apps.py +18 -4
- adam/batch.py +19 -19
- adam/checks/check_utils.py +16 -46
- adam/checks/cpu.py +7 -1
- adam/checks/cpu_metrics.py +52 -0
- adam/checks/disk.py +2 -3
- adam/columns/columns.py +3 -1
- adam/columns/cpu.py +3 -1
- adam/columns/cpu_metrics.py +22 -0
- adam/columns/memory.py +3 -4
- adam/commands/__init__.py +24 -0
- adam/commands/app/app.py +38 -0
- adam/commands/{app_ping.py → app/app_ping.py} +7 -13
- adam/commands/{login.py → app/login.py} +22 -24
- adam/commands/app/show_app_actions.py +49 -0
- adam/commands/{show → app}/show_app_id.py +8 -11
- adam/commands/{show → app}/show_app_queues.py +7 -14
- adam/commands/app/show_login.py +56 -0
- adam/commands/app/utils_app.py +106 -0
- adam/commands/audit/audit.py +22 -40
- adam/commands/audit/audit_repair_tables.py +15 -19
- adam/commands/audit/audit_run.py +15 -22
- adam/commands/audit/completions_l.py +15 -0
- adam/commands/audit/show_last10.py +4 -18
- adam/commands/audit/show_slow10.py +4 -17
- adam/commands/audit/show_top10.py +4 -16
- adam/commands/audit/utils_show_top10.py +15 -3
- adam/commands/bash/__init__.py +5 -0
- adam/commands/bash/bash.py +36 -0
- adam/commands/bash/bash_completer.py +93 -0
- adam/commands/bash/utils_bash.py +16 -0
- adam/commands/cassandra/__init__.py +0 -0
- adam/commands/cassandra/download_cassandra_log.py +45 -0
- adam/commands/{restart.py → cassandra/restart_cluster.py} +12 -26
- adam/commands/cassandra/restart_node.py +51 -0
- adam/commands/cassandra/restart_nodes.py +47 -0
- adam/commands/{rollout.py → cassandra/rollout.py} +20 -25
- adam/commands/cassandra/show_cassandra_repairs.py +37 -0
- adam/commands/cassandra/show_cassandra_status.py +117 -0
- adam/commands/{show → cassandra}/show_cassandra_version.py +5 -18
- adam/commands/cassandra/show_processes.py +50 -0
- adam/commands/cassandra/show_storage.py +44 -0
- adam/commands/{watch.py → cassandra/watch.py} +26 -29
- adam/commands/cli/__init__.py +0 -0
- adam/commands/{cli_commands.py → cli/cli_commands.py} +8 -4
- adam/commands/cli/clipboard_copy.py +86 -0
- adam/commands/cli/show_cli_commands.py +56 -0
- adam/commands/code.py +57 -0
- adam/commands/command.py +211 -40
- adam/commands/commands_utils.py +20 -27
- adam/commands/config/__init__.py +0 -0
- adam/commands/{param_get.py → config/param_get.py} +11 -14
- adam/commands/{param_set.py → config/param_set.py} +8 -12
- adam/commands/{show → config}/show_params.py +2 -5
- adam/commands/cql/alter_tables.py +66 -0
- adam/commands/cql/completions_c.py +29 -0
- adam/commands/cql/cqlsh.py +10 -32
- adam/commands/cql/utils_cql.py +306 -0
- adam/commands/debug/__init__.py +0 -0
- adam/commands/debug/debug.py +22 -0
- adam/commands/debug/debug_completes.py +35 -0
- adam/commands/debug/debug_timings.py +35 -0
- adam/commands/debug/show_offloaded_completes.py +45 -0
- adam/commands/deploy/code_start.py +7 -10
- adam/commands/deploy/code_stop.py +4 -21
- adam/commands/deploy/code_utils.py +3 -3
- adam/commands/deploy/deploy.py +4 -27
- adam/commands/deploy/deploy_frontend.py +14 -17
- adam/commands/deploy/deploy_pg_agent.py +3 -6
- adam/commands/deploy/deploy_pod.py +65 -73
- adam/commands/deploy/deploy_utils.py +14 -24
- adam/commands/deploy/undeploy.py +4 -27
- adam/commands/deploy/undeploy_frontend.py +4 -7
- adam/commands/deploy/undeploy_pg_agent.py +6 -8
- adam/commands/deploy/undeploy_pod.py +11 -12
- adam/commands/devices/__init__.py +0 -0
- adam/commands/devices/device.py +149 -0
- adam/commands/devices/device_app.py +163 -0
- adam/commands/devices/device_auit_log.py +49 -0
- adam/commands/devices/device_cass.py +179 -0
- adam/commands/devices/device_export.py +87 -0
- adam/commands/devices/device_postgres.py +160 -0
- adam/commands/devices/devices.py +25 -0
- adam/commands/diag/__init__.py +0 -0
- adam/commands/{check.py → diag/check.py} +16 -25
- adam/commands/diag/generate_report.py +52 -0
- adam/commands/diag/issues.py +43 -0
- adam/commands/exit.py +1 -4
- adam/commands/export/__init__.py +0 -0
- adam/commands/export/clean_up_all_export_sessions.py +37 -0
- adam/commands/export/clean_up_export_sessions.py +39 -0
- adam/commands/export/completions_x.py +11 -0
- adam/commands/export/download_export_session.py +40 -0
- adam/commands/export/drop_export_database.py +39 -0
- adam/commands/export/drop_export_databases.py +37 -0
- adam/commands/export/export.py +37 -0
- adam/commands/export/export_databases.py +251 -0
- adam/commands/export/export_select.py +34 -0
- adam/commands/export/export_sessions.py +210 -0
- adam/commands/export/export_use.py +49 -0
- adam/commands/export/export_x_select.py +48 -0
- adam/commands/export/exporter.py +419 -0
- adam/commands/export/import_files.py +44 -0
- adam/commands/export/import_session.py +40 -0
- adam/commands/export/importer.py +81 -0
- adam/commands/export/importer_athena.py +157 -0
- adam/commands/export/importer_sqlite.py +78 -0
- adam/commands/export/show_column_counts.py +45 -0
- adam/commands/export/show_export_databases.py +39 -0
- adam/commands/export/show_export_session.py +39 -0
- adam/commands/export/show_export_sessions.py +37 -0
- adam/commands/export/utils_export.py +366 -0
- adam/commands/fs/__init__.py +0 -0
- adam/commands/fs/cat.py +36 -0
- adam/commands/fs/cat_local.py +42 -0
- adam/commands/fs/cd.py +41 -0
- adam/commands/fs/download_file.py +47 -0
- adam/commands/fs/find_files.py +51 -0
- adam/commands/fs/find_processes.py +76 -0
- adam/commands/fs/head.py +36 -0
- adam/commands/fs/ls.py +41 -0
- adam/commands/fs/ls_local.py +40 -0
- adam/commands/fs/pwd.py +45 -0
- adam/commands/fs/rm.py +18 -0
- adam/commands/fs/rm_downloads.py +39 -0
- adam/commands/fs/rm_logs.py +38 -0
- adam/commands/{shell.py → fs/shell.py} +12 -4
- adam/commands/{show → fs}/show_adam.py +3 -3
- adam/commands/{show → fs}/show_host.py +1 -1
- adam/commands/help.py +5 -3
- adam/commands/intermediate_command.py +52 -0
- adam/commands/kubectl.py +38 -0
- adam/commands/medusa/medusa.py +4 -22
- adam/commands/medusa/medusa_backup.py +20 -27
- adam/commands/medusa/medusa_restore.py +35 -48
- adam/commands/medusa/medusa_show_backupjobs.py +16 -18
- adam/commands/medusa/medusa_show_restorejobs.py +13 -18
- adam/commands/medusa/utils_medusa.py +15 -0
- adam/commands/nodetool/__init__.py +0 -0
- adam/commands/{nodetool.py → nodetool/nodetool.py} +9 -20
- adam/commands/postgres/completions_p.py +22 -0
- adam/commands/postgres/postgres.py +47 -55
- adam/commands/postgres/postgres_databases.py +269 -0
- adam/commands/postgres/postgres_ls.py +5 -9
- adam/commands/postgres/postgres_preview.py +5 -9
- adam/commands/postgres/utils_postgres.py +80 -0
- adam/commands/preview_table.py +8 -44
- adam/commands/reaper/reaper.py +4 -27
- adam/commands/reaper/reaper_forward.py +49 -56
- adam/commands/reaper/reaper_forward_session.py +6 -0
- adam/commands/reaper/reaper_forward_stop.py +10 -16
- adam/commands/reaper/reaper_restart.py +7 -14
- adam/commands/reaper/reaper_run_abort.py +8 -33
- adam/commands/reaper/reaper_runs.py +43 -58
- adam/commands/reaper/reaper_runs_abort.py +29 -49
- adam/commands/reaper/reaper_schedule_activate.py +14 -33
- adam/commands/reaper/reaper_schedule_start.py +9 -33
- adam/commands/reaper/reaper_schedule_stop.py +9 -33
- adam/commands/reaper/reaper_schedules.py +4 -14
- adam/commands/reaper/reaper_status.py +8 -16
- adam/commands/reaper/utils_reaper.py +203 -0
- adam/commands/repair/repair.py +4 -22
- adam/commands/repair/repair_log.py +5 -11
- adam/commands/repair/repair_run.py +27 -34
- adam/commands/repair/repair_scan.py +32 -40
- adam/commands/repair/repair_stop.py +5 -12
- adam/commands/show.py +40 -0
- adam/config.py +5 -15
- adam/embedded_params.py +1 -1
- adam/log.py +4 -4
- adam/repl.py +83 -116
- adam/repl_commands.py +86 -45
- adam/repl_session.py +9 -1
- adam/repl_state.py +176 -40
- adam/sql/async_executor.py +62 -0
- adam/sql/lark_completer.py +286 -0
- adam/sql/lark_parser.py +604 -0
- adam/sql/qingl.lark +1076 -0
- adam/sql/sql_completer.py +52 -27
- adam/sql/sql_state_machine.py +131 -19
- adam/sso/authn_ad.py +6 -8
- adam/sso/authn_okta.py +4 -6
- adam/sso/cred_cache.py +4 -9
- adam/sso/idp.py +9 -12
- adam/utils.py +670 -31
- adam/utils_athena.py +145 -0
- adam/utils_audits.py +12 -103
- adam/utils_issues.py +32 -0
- adam/utils_k8s/app_clusters.py +35 -0
- adam/utils_k8s/app_pods.py +41 -0
- adam/utils_k8s/cassandra_clusters.py +35 -20
- adam/utils_k8s/cassandra_nodes.py +15 -6
- adam/utils_k8s/custom_resources.py +16 -17
- adam/utils_k8s/ingresses.py +2 -2
- adam/utils_k8s/jobs.py +7 -11
- adam/utils_k8s/k8s.py +96 -0
- adam/utils_k8s/kube_context.py +3 -6
- adam/{pod_exec_result.py → utils_k8s/pod_exec_result.py} +13 -4
- adam/utils_k8s/pods.py +159 -89
- adam/utils_k8s/secrets.py +4 -4
- adam/utils_k8s/service_accounts.py +5 -4
- adam/utils_k8s/services.py +2 -2
- adam/utils_k8s/statefulsets.py +6 -14
- adam/utils_local.py +80 -0
- adam/utils_net.py +4 -4
- adam/utils_repl/__init__.py +0 -0
- adam/utils_repl/appendable_completer.py +6 -0
- adam/utils_repl/automata_completer.py +48 -0
- adam/utils_repl/repl_completer.py +93 -0
- adam/utils_repl/state_machine.py +173 -0
- adam/utils_sqlite.py +132 -0
- adam/version.py +1 -1
- {kaqing-2.0.110.dist-info → kaqing-2.0.214.dist-info}/METADATA +1 -1
- kaqing-2.0.214.dist-info/RECORD +272 -0
- kaqing-2.0.214.dist-info/top_level.txt +2 -0
- teddy/__init__.py +0 -0
- teddy/lark_parser.py +436 -0
- teddy/lark_parser2.py +618 -0
- adam/commands/alter_tables.py +0 -81
- adam/commands/app.py +0 -67
- adam/commands/bash.py +0 -150
- adam/commands/cd.py +0 -125
- adam/commands/cp.py +0 -95
- adam/commands/cql/cql_completions.py +0 -15
- adam/commands/cql/cql_utils.py +0 -112
- adam/commands/devices.py +0 -118
- adam/commands/issues.py +0 -75
- adam/commands/logs.py +0 -40
- adam/commands/ls.py +0 -146
- adam/commands/postgres/postgres_context.py +0 -239
- adam/commands/postgres/postgres_utils.py +0 -31
- adam/commands/postgres/psql_completions.py +0 -10
- adam/commands/pwd.py +0 -77
- adam/commands/reaper/reaper_session.py +0 -159
- adam/commands/report.py +0 -63
- adam/commands/show/show.py +0 -54
- adam/commands/show/show_app_actions.py +0 -56
- adam/commands/show/show_cassandra_status.py +0 -128
- adam/commands/show/show_commands.py +0 -61
- adam/commands/show/show_login.py +0 -63
- adam/commands/show/show_processes.py +0 -53
- adam/commands/show/show_repairs.py +0 -47
- adam/commands/show/show_storage.py +0 -52
- kaqing-2.0.110.dist-info/RECORD +0 -187
- kaqing-2.0.110.dist-info/top_level.txt +0 -1
- /adam/commands/{show → app}/__init__.py +0 -0
- /adam/commands/{nodetool_commands.py → nodetool/nodetool_commands.py} +0 -0
- {kaqing-2.0.110.dist-info → kaqing-2.0.214.dist-info}/WHEEL +0 -0
- {kaqing-2.0.110.dist-info → kaqing-2.0.214.dist-info}/entry_points.txt +0 -0
adam/commands/command.py
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
from abc import abstractmethod
|
|
2
|
+
from collections.abc import Callable
|
|
2
3
|
import copy
|
|
3
4
|
import subprocess
|
|
4
5
|
import sys
|
|
6
|
+
from typing import Union
|
|
5
7
|
|
|
6
|
-
from adam.
|
|
8
|
+
from adam.config import Config
|
|
7
9
|
from adam.repl_state import ReplState, RequiredState
|
|
8
|
-
from adam.
|
|
10
|
+
from adam.sql.lark_completer import LarkCompleter
|
|
11
|
+
from adam.utils import log2
|
|
9
12
|
|
|
10
13
|
repl_cmds: list['Command'] = []
|
|
11
14
|
|
|
@@ -28,10 +31,39 @@ class Command:
|
|
|
28
31
|
|
|
29
32
|
return None
|
|
30
33
|
|
|
31
|
-
def completion(self, state: ReplState, leaf: dict[str, any] = None) -> dict[str, any]:
|
|
32
|
-
|
|
34
|
+
def completion(self, state: ReplState, leaf: dict[str, any] = None, pods: tuple[list[str], str] = None, auto: str = 'on', auto_key: str = None) -> dict[str, any]:
|
|
35
|
+
# pods is a tuple of list of pod names and the current pod repl is on
|
|
36
|
+
if not pods:
|
|
37
|
+
return self._completion(state, leaf, auto=auto, auto_key=auto_key)
|
|
38
|
+
|
|
39
|
+
c = {}
|
|
40
|
+
|
|
41
|
+
pod_names = pods[0]
|
|
42
|
+
pod = pods[1]
|
|
43
|
+
|
|
44
|
+
if pod:
|
|
45
|
+
c |= self._completion(state, leaf, auto=auto, auto_key=auto_key)
|
|
46
|
+
|
|
47
|
+
c |= {f'@{p}': self._completion(state.with_pod(p), leaf, to_validate=False, auto=auto, auto_key=auto_key) for p in pod_names if p != pod}
|
|
48
|
+
|
|
49
|
+
return c
|
|
50
|
+
|
|
51
|
+
def _completion(self, state: ReplState, leaf: dict[str, any] = None, to_validate = True, auto: str = 'on', auto_key: str = None) -> dict[str, any]:
|
|
52
|
+
if to_validate and not self.validate_state(state, show_err=False):
|
|
33
53
|
return {}
|
|
34
54
|
|
|
55
|
+
if callable(leaf):
|
|
56
|
+
if auto_key:
|
|
57
|
+
auto_key = f'auto-complete.{auto_key}'
|
|
58
|
+
auto = Config().get(auto_key, 'off')
|
|
59
|
+
|
|
60
|
+
if auto == 'on':
|
|
61
|
+
leaf = leaf()
|
|
62
|
+
elif auto in ['lazy', 'jit']:
|
|
63
|
+
leaf = LarkCompleter.from_lambda(auto_key, leaf, auto=auto)
|
|
64
|
+
else:
|
|
65
|
+
leaf = None
|
|
66
|
+
|
|
35
67
|
d = leaf
|
|
36
68
|
for t in reversed(self.command().split(' ')):
|
|
37
69
|
d = {t: d}
|
|
@@ -41,7 +73,10 @@ class Command:
|
|
|
41
73
|
def required(self) -> RequiredState:
|
|
42
74
|
return None
|
|
43
75
|
|
|
44
|
-
def
|
|
76
|
+
def validate(self, args: list[str], state: ReplState, apply = True):
|
|
77
|
+
return ValidateStateHandler(self, args, state, apply = apply)
|
|
78
|
+
|
|
79
|
+
def validate_state(self, state: ReplState, show_err = True):
|
|
45
80
|
return state.validate(self.required(), show_err=show_err)
|
|
46
81
|
|
|
47
82
|
def help(self, _: ReplState) -> str:
|
|
@@ -56,6 +91,9 @@ class Command:
|
|
|
56
91
|
return a
|
|
57
92
|
|
|
58
93
|
def apply_state(self, args: list[str], state: ReplState, resolve_pg = True, args_to_check = 6) -> tuple[ReplState, list[str]]:
|
|
94
|
+
"""
|
|
95
|
+
Applies any contextual arguments such as namespace or statefulset to the ReplState and returns any non-contextual arguments.
|
|
96
|
+
"""
|
|
59
97
|
return state.apply_args(args, cmd=self.command_tokens(), resolve_pg=resolve_pg, args_to_check=args_to_check)
|
|
60
98
|
|
|
61
99
|
def command_tokens(self):
|
|
@@ -87,17 +125,52 @@ class Command:
|
|
|
87
125
|
args.extend(['--help'])
|
|
88
126
|
subprocess.run(args)
|
|
89
127
|
|
|
90
|
-
def extract_options(args: list[str],
|
|
91
|
-
|
|
128
|
+
def extract_options(args: list[str], trailing: Union[str, list[str]] = [], sequence: list[str] = [], options: list[str] = []):
|
|
129
|
+
found_options: list[str] = []
|
|
130
|
+
found_trailing = None
|
|
131
|
+
found_sequence = None
|
|
132
|
+
|
|
133
|
+
if trailing is None:
|
|
134
|
+
trailing = []
|
|
135
|
+
elif isinstance(trailing, str):
|
|
136
|
+
trailing = [trailing]
|
|
137
|
+
|
|
138
|
+
if options is None:
|
|
139
|
+
options = []
|
|
140
|
+
elif isinstance(options, str):
|
|
141
|
+
options = [options]
|
|
142
|
+
|
|
143
|
+
if args and trailing:
|
|
144
|
+
while args and args[-1] in trailing:
|
|
145
|
+
found_trailing = True
|
|
146
|
+
args = args[:-1]
|
|
147
|
+
|
|
148
|
+
if args and sequence:
|
|
149
|
+
args, found_sequence = Command.extract_option_sequence(args, sequence)
|
|
92
150
|
|
|
93
151
|
new_args: list[str] = []
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
152
|
+
if args:
|
|
153
|
+
for arg in args:
|
|
154
|
+
if arg in options:
|
|
155
|
+
found_options.append(arg)
|
|
156
|
+
else:
|
|
157
|
+
new_args.append(arg)
|
|
158
|
+
|
|
159
|
+
return new_args, found_trailing, found_sequence, found_options
|
|
160
|
+
|
|
161
|
+
def extract_option_sequence(args, sequence):
|
|
162
|
+
new_args = args
|
|
99
163
|
|
|
100
|
-
|
|
164
|
+
len_sub = len(sequence)
|
|
165
|
+
len_main = len(args)
|
|
166
|
+
for i in range(len_main - len_sub + 1):
|
|
167
|
+
if args[i:i+len_sub] == sequence:
|
|
168
|
+
new_args = copy.copy(args)
|
|
169
|
+
del new_args[i:i+len_sub]
|
|
170
|
+
|
|
171
|
+
return new_args, True
|
|
172
|
+
|
|
173
|
+
return new_args, False
|
|
101
174
|
|
|
102
175
|
def print_chain(cmd: 'Command'):
|
|
103
176
|
print(f'{cmd.command()}', end = '')
|
|
@@ -106,31 +179,129 @@ class Command:
|
|
|
106
179
|
cmd = s
|
|
107
180
|
print()
|
|
108
181
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
182
|
+
class InvalidStateException(Exception):
|
|
183
|
+
def __init__(self, state: ReplState):
|
|
184
|
+
super().__init__(f'Invalid state')
|
|
185
|
+
|
|
186
|
+
class ValidateStateHandler:
|
|
187
|
+
def __init__(self, cmd: Command, args: list[str], state: ReplState, apply = True):
|
|
188
|
+
self.cmd = cmd
|
|
189
|
+
self.args = args
|
|
190
|
+
self.state = state
|
|
191
|
+
self.apply = apply
|
|
192
|
+
|
|
193
|
+
def __enter__(self) -> tuple[list[str], ReplState]:
|
|
194
|
+
state = self.state
|
|
195
|
+
args = self.args
|
|
196
|
+
if self.apply:
|
|
197
|
+
state, args = self.cmd.apply_state(args, state)
|
|
117
198
|
else:
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
return
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
199
|
+
args = args[len(self.cmd.command_tokens()):]
|
|
200
|
+
|
|
201
|
+
if not self.cmd.validate_state(state):
|
|
202
|
+
raise InvalidStateException(state)
|
|
203
|
+
|
|
204
|
+
return args, state
|
|
205
|
+
|
|
206
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
207
|
+
return False
|
|
208
|
+
|
|
209
|
+
class InvalidArgumentsException(Exception):
|
|
210
|
+
def __init__(self):
|
|
211
|
+
super().__init__(f'Invalid arguments')
|
|
212
|
+
|
|
213
|
+
class ValidateArgCountHandler:
|
|
214
|
+
def __init__(self, args: list[str], state: ReplState, at_least: int = 1, exactly: int = 1,
|
|
215
|
+
name: str = None, msg: Callable[[], None] = None, default: Union[str, list[str]] = None,
|
|
216
|
+
separator: str = None):
|
|
217
|
+
self.args = args
|
|
218
|
+
self.state = state
|
|
219
|
+
self.at_least = at_least
|
|
220
|
+
self.exactly = exactly
|
|
221
|
+
self.name = name
|
|
222
|
+
self.msg = msg
|
|
223
|
+
self.default = default
|
|
224
|
+
self.separator = separator
|
|
225
|
+
|
|
226
|
+
def __enter__(self) -> Union[tuple[list[str], ReplState], tuple[str, ReplState]]:
|
|
227
|
+
if self.exactly > 0 and len(self.args) != self.exactly or len(self.args) < self.at_least:
|
|
228
|
+
if self.default:
|
|
229
|
+
v = self.default
|
|
230
|
+
if isinstance(v, list):
|
|
231
|
+
v = ' '.join(v)
|
|
232
|
+
|
|
233
|
+
return v
|
|
234
|
+
|
|
235
|
+
if self.state.in_repl:
|
|
236
|
+
if self.msg:
|
|
237
|
+
self.msg()
|
|
238
|
+
elif self.name:
|
|
239
|
+
log2(f'{self.name} is required.')
|
|
240
|
+
elif self.name:
|
|
241
|
+
log2(f'* {self.name} is missing.')
|
|
242
|
+
|
|
243
|
+
Command.display_help()
|
|
244
|
+
|
|
245
|
+
raise InvalidArgumentsException()
|
|
246
|
+
|
|
247
|
+
if self.separator == ' ':
|
|
248
|
+
return self.args
|
|
249
|
+
|
|
250
|
+
# join and re-split with separator
|
|
251
|
+
args_to_return = ' '.join(self.args)
|
|
252
|
+
if self.separator:
|
|
253
|
+
args_to_return = [arg.strip(' ') for arg in args_to_return.split(self.separator)]
|
|
254
|
+
|
|
255
|
+
return args_to_return
|
|
256
|
+
|
|
257
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
258
|
+
return False
|
|
259
|
+
|
|
260
|
+
class ExtractOptionsHandler:
|
|
261
|
+
def __init__(self, args: list[str], options: list[str] = None):
|
|
262
|
+
self.args = args
|
|
263
|
+
self.options = options
|
|
264
|
+
|
|
265
|
+
def __enter__(self) -> tuple[list[str], list[str]]:
|
|
266
|
+
args, _, _, options = Command.extract_options(self.args, options=self.options)
|
|
267
|
+
return args, options
|
|
268
|
+
|
|
269
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
270
|
+
return False
|
|
271
|
+
|
|
272
|
+
class ExtractTrailingOptionsHandler:
|
|
273
|
+
def __init__(self, args: list[str], trailing: list[str] = None):
|
|
274
|
+
self.args = args
|
|
275
|
+
self.trailing = trailing
|
|
276
|
+
|
|
277
|
+
def __enter__(self) -> tuple[list[str], list[str]]:
|
|
278
|
+
args, trailing, _, _ = Command.extract_options(self.args, trailing=self.trailing)
|
|
279
|
+
return args, trailing
|
|
280
|
+
|
|
281
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
282
|
+
return False
|
|
283
|
+
|
|
284
|
+
class ExtractAllOptionsHandler:
|
|
285
|
+
def __init__(self, args: list[str], trailing: list[str] = None, sequence: list[str] = None, options: list[str] = None):
|
|
286
|
+
self.args = args
|
|
287
|
+
self.trailing = trailing
|
|
288
|
+
self.sequence = sequence
|
|
289
|
+
self.options = options
|
|
290
|
+
|
|
291
|
+
def __enter__(self) -> tuple[list[str], list[str]]:
|
|
292
|
+
return Command.extract_options(self.args, trailing=self.trailing, sequence=self.sequence, options=self.options)
|
|
293
|
+
|
|
294
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
295
|
+
return False
|
|
296
|
+
|
|
297
|
+
class ExtractSequenceOptionsHandler:
|
|
298
|
+
def __init__(self, args: list[str], sequence: list[str]):
|
|
299
|
+
self.args = args
|
|
300
|
+
self.sequence = sequence
|
|
301
|
+
|
|
302
|
+
def __enter__(self) -> tuple[list[str], list[str]]:
|
|
303
|
+
args, _, sequence, _ = Command.extract_options(self.args, sequence=self.sequence)
|
|
304
|
+
return args, sequence
|
|
305
|
+
|
|
306
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
307
|
+
return False
|
adam/commands/commands_utils.py
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
|
-
from concurrent.futures import ThreadPoolExecutor
|
|
2
1
|
from kubernetes import client
|
|
3
2
|
from typing import List
|
|
4
3
|
|
|
5
4
|
from adam.checks.check_utils import run_checks
|
|
6
5
|
from adam.columns.columns import Columns, collect_checks
|
|
7
|
-
from adam.
|
|
6
|
+
from adam.utils_issues import IssuesUtils
|
|
8
7
|
from adam.utils_k8s.cassandra_nodes import CassandraNodes
|
|
9
8
|
from adam.utils_k8s.pods import Pods
|
|
10
9
|
from adam.utils_k8s.statefulsets import StatefulSets
|
|
11
10
|
from adam.repl_state import ReplState
|
|
12
|
-
from adam.utils import duration,
|
|
11
|
+
from adam.utils import SORT, duration, kaqing_log_file, tabulize, log2
|
|
13
12
|
|
|
14
13
|
def show_pods(pods: List[client.V1Pod], ns: str, show_namespace = True, show_host_id = True):
|
|
15
14
|
if len(pods) == 0:
|
|
@@ -20,18 +19,10 @@ def show_pods(pods: List[client.V1Pod], ns: str, show_namespace = True, show_hos
|
|
|
20
19
|
if show_host_id:
|
|
21
20
|
names = [pod.metadata.name for pod in pods]
|
|
22
21
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
if executor:
|
|
28
|
-
return executor.submit(get_host_id_with_pod, pod, ns)
|
|
29
|
-
|
|
30
|
-
id = CassandraNodes.get_host_id(pod, ns)
|
|
31
|
-
|
|
32
|
-
return (id, pod)
|
|
33
|
-
|
|
34
|
-
host_ids_by_pod = {pod: id for id, pod in Pods.on_pods(names, ns, body, action='get-host-id', show_out=False)}
|
|
22
|
+
msg = 'd`Retrieving|Retrived {size} host ids'
|
|
23
|
+
with Pods.parallelize(names, msg=msg, action = 'get-host-id') as exec:
|
|
24
|
+
host_pods = exec.map(lambda pod: (CassandraNodes.get_host_id(pod, ns), pod))
|
|
25
|
+
host_ids_by_pod = {pod: id for id, pod in host_pods}
|
|
35
26
|
|
|
36
27
|
def line(pod: client.V1Pod):
|
|
37
28
|
pod_cnt = len(pod.status.container_statuses)
|
|
@@ -57,9 +48,7 @@ def show_pods(pods: List[client.V1Pod], ns: str, show_namespace = True, show_hos
|
|
|
57
48
|
line += f"@{ns}"
|
|
58
49
|
return line + f" {ready}/{pod_cnt} {status}"
|
|
59
50
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
log(lines_to_tabular(pod_names, 'HOST_ID POD_NAME READY POD_STATUS' if show_host_id else 'POD_NAME READY POD_STATUS'))
|
|
51
|
+
tabulize(pods, line, header='HOST_ID POD_NAME READY POD_STATUS' if show_host_id else 'POD_NAME READY POD_STATUS')
|
|
63
52
|
|
|
64
53
|
def show_rollout(sts: str, ns: str):
|
|
65
54
|
restarted, rollingout = StatefulSets.restarted_at(sts, ns)
|
|
@@ -70,18 +59,22 @@ def show_rollout(sts: str, ns: str):
|
|
|
70
59
|
else:
|
|
71
60
|
log2(f'Cluster has completed rollout {d} ago.')
|
|
72
61
|
|
|
73
|
-
def show_table(state: ReplState, pods: list[str], cols: str, header: str,
|
|
62
|
+
def show_table(state: ReplState, pods: list[str], cols: str, header: str, show_out=False, backgrounded = False):
|
|
74
63
|
columns = Columns.create_columns(cols)
|
|
75
64
|
|
|
76
|
-
results = run_checks(cluster=state.sts, pod=state.pod, namespace=state.namespace, checks=collect_checks(columns),
|
|
65
|
+
results = run_checks(cluster=state.sts, pod=state.pod, namespace=state.namespace, checks=collect_checks(columns), show_out=show_out)
|
|
66
|
+
|
|
67
|
+
r = tabulize(pods, lambda p: ','.join([c.pod_value(results, p) for c in columns]), header=header, separator=',', sorted=SORT, to = 0 if backgrounded else 1)
|
|
68
|
+
|
|
69
|
+
if backgrounded:
|
|
70
|
+
r = write_to_kaqing_log_file(r)
|
|
77
71
|
|
|
78
|
-
|
|
79
|
-
cells = [c.pod_value(results, pod_name) for c in columns]
|
|
80
|
-
return ','.join(cells)
|
|
72
|
+
IssuesUtils.show(results, state.in_repl)
|
|
81
73
|
|
|
82
|
-
|
|
83
|
-
lines.sort()
|
|
74
|
+
return r
|
|
84
75
|
|
|
85
|
-
|
|
76
|
+
def write_to_kaqing_log_file(r: str):
|
|
77
|
+
with kaqing_log_file() as f:
|
|
78
|
+
f.write(r)
|
|
86
79
|
|
|
87
|
-
|
|
80
|
+
return f.name
|
|
File without changes
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
from adam.commands import validate_args
|
|
1
2
|
from adam.commands.command import Command
|
|
2
3
|
from adam.config import Config
|
|
3
4
|
from adam.repl_state import ReplState
|
|
4
|
-
from adam.utils import
|
|
5
|
+
from adam.utils import tabulize, log, log2
|
|
5
6
|
|
|
6
7
|
class GetParam(Command):
|
|
7
8
|
COMMAND = 'get'
|
|
@@ -22,21 +23,17 @@ class GetParam(Command):
|
|
|
22
23
|
if not(args := self.args(cmd)):
|
|
23
24
|
return super().run(cmd, state)
|
|
24
25
|
|
|
25
|
-
|
|
26
|
+
with self.validate(args, state) as (args, state):
|
|
27
|
+
def msg():
|
|
28
|
+
tabulize(Config().keys(), lambda key: f'{key}\t{Config().get(key, None)}', separator='\t')
|
|
26
29
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
+
with validate_args(args, state, msg=msg) as key:
|
|
31
|
+
if v := Config().get(key, None):
|
|
32
|
+
log(v)
|
|
33
|
+
else:
|
|
34
|
+
log2(f'{key} is not set.')
|
|
30
35
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
key = args[0]
|
|
34
|
-
if v := Config().get(key, None):
|
|
35
|
-
log(v)
|
|
36
|
-
else:
|
|
37
|
-
log2(f'{key} is not set.')
|
|
38
|
-
|
|
39
|
-
return v if v else state
|
|
36
|
+
return v if v else state
|
|
40
37
|
|
|
41
38
|
def completion(self, _: ReplState):
|
|
42
39
|
return {GetParam.COMMAND: {key: None for key in Config().keys()}}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from adam.commands import validate_args
|
|
1
2
|
from adam.commands.command import Command
|
|
2
3
|
from adam.config import Config
|
|
3
4
|
from adam.repl_state import ReplState
|
|
@@ -22,20 +23,15 @@ class SetParam(Command):
|
|
|
22
23
|
if not(args := self.args(cmd)):
|
|
23
24
|
return super().run(cmd, state)
|
|
24
25
|
|
|
25
|
-
|
|
26
|
+
with self.validate(args, state) as (args, state):
|
|
27
|
+
with validate_args(args, state, exactly=2, msg=lambda: log2('set <key> <value>')):
|
|
28
|
+
key = args[0]
|
|
29
|
+
value = args[1]
|
|
30
|
+
Config().set(key, value)
|
|
26
31
|
|
|
27
|
-
|
|
28
|
-
log2('set <key> <value>')
|
|
32
|
+
log(Config().get(key, None))
|
|
29
33
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
key = args[0]
|
|
33
|
-
value = args[1]
|
|
34
|
-
Config().set(key, value)
|
|
35
|
-
|
|
36
|
-
log(Config().get(key, None))
|
|
37
|
-
|
|
38
|
-
return value
|
|
34
|
+
return value
|
|
39
35
|
|
|
40
36
|
def completion(self, _: ReplState):
|
|
41
37
|
return {SetParam.COMMAND: {key: ({'true': None, 'false': None} if Config().get(key, None) in [True, False] else None) for key in Config().keys()}}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from adam.commands.command import Command
|
|
2
2
|
from adam.config import Config
|
|
3
3
|
from adam.repl_state import ReplState
|
|
4
|
-
from adam.utils import
|
|
4
|
+
from adam.utils import tabulize
|
|
5
5
|
|
|
6
6
|
class ShowParams(Command):
|
|
7
7
|
COMMAND = 'show params'
|
|
@@ -22,10 +22,7 @@ class ShowParams(Command):
|
|
|
22
22
|
if not self.args(cmd):
|
|
23
23
|
return super().run(cmd, state)
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
log(lines_to_tabular(lines, separator='\t'))
|
|
27
|
-
|
|
28
|
-
return lines
|
|
25
|
+
return tabulize(Config().keys(), lambda k: f'{k}\t{Config().get(k, None)}', separator='\t')
|
|
29
26
|
|
|
30
27
|
def completion(self, state: ReplState):
|
|
31
28
|
return super().completion(state)
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
from adam.commands import extract_options, validate_args
|
|
2
|
+
from adam.commands.command import Command
|
|
3
|
+
from adam.commands.cql.utils_cql import cassandra, cassandra_tables as get_tables
|
|
4
|
+
from adam.config import Config
|
|
5
|
+
from adam.repl_state import ReplState, RequiredState
|
|
6
|
+
from adam.utils import log2, log_exc
|
|
7
|
+
|
|
8
|
+
class AlterTables(Command):
|
|
9
|
+
COMMAND = 'alter tables with'
|
|
10
|
+
|
|
11
|
+
# the singleton pattern
|
|
12
|
+
def __new__(cls, *args, **kwargs):
|
|
13
|
+
if not hasattr(cls, 'instance'): cls.instance = super(AlterTables, cls).__new__(cls)
|
|
14
|
+
|
|
15
|
+
return cls.instance
|
|
16
|
+
|
|
17
|
+
def __init__(self, successor: Command=None):
|
|
18
|
+
super().__init__(successor)
|
|
19
|
+
|
|
20
|
+
def required(self):
|
|
21
|
+
return RequiredState.CLUSTER
|
|
22
|
+
|
|
23
|
+
def command(self):
|
|
24
|
+
return AlterTables.COMMAND
|
|
25
|
+
|
|
26
|
+
def run(self, cmd: str, state: ReplState):
|
|
27
|
+
if not(args := self.args(cmd)):
|
|
28
|
+
return super().run(cmd, state)
|
|
29
|
+
|
|
30
|
+
with self.validate(args, state) as (args, state):
|
|
31
|
+
with extract_options(args, '--include-reaper') as (args, include_reaper):
|
|
32
|
+
with validate_args(args, state, name='gc grace in seconds') as arg_str:
|
|
33
|
+
excludes = [e.strip(' \r\n') for e in Config().get(
|
|
34
|
+
'cql.alter-tables.excludes',
|
|
35
|
+
'system_auth,system_traces,reaper_db,system_distributed,system_views,system,system_schema,system_virtual_schema').split(',')]
|
|
36
|
+
batching = Config().get('cql.alter-tables.batching', True)
|
|
37
|
+
tables = get_tables(state, on_any=True)
|
|
38
|
+
for k, v in tables.items():
|
|
39
|
+
if k not in excludes or k == 'reaper_db' and include_reaper:
|
|
40
|
+
if batching:
|
|
41
|
+
# alter table <table_name> with GC_GRACE_SECONDS = <timeout>;
|
|
42
|
+
cql = ';\n'.join([f'alter table {k}.{t} with {arg_str}' for t in v])
|
|
43
|
+
with log_exc(True):
|
|
44
|
+
with cassandra(state) as pods:
|
|
45
|
+
pods.cql(cql, show_out=Config().is_debug(), show_query=not Config().is_debug(), on_any=True)
|
|
46
|
+
continue
|
|
47
|
+
else:
|
|
48
|
+
for t in v:
|
|
49
|
+
with log_exc(True):
|
|
50
|
+
# alter table <table_name> with GC_GRACE_SECONDS = <timeout>;
|
|
51
|
+
cql = f'alter table {k}.{t} with {arg_str}'
|
|
52
|
+
with cassandra(state) as pods:
|
|
53
|
+
pods.cql(show_out=Config().is_debug(), show_query=not Config().is_debug(), on_any=True)
|
|
54
|
+
continue
|
|
55
|
+
|
|
56
|
+
log2(f'{len(v)} tables altered in {k}.')
|
|
57
|
+
|
|
58
|
+
# do not continue to cql route
|
|
59
|
+
return state
|
|
60
|
+
|
|
61
|
+
def completion(self, _: ReplState) -> dict[str, any]:
|
|
62
|
+
# auto completion is taken care of by lark completer
|
|
63
|
+
return {}
|
|
64
|
+
|
|
65
|
+
def help(self, _: ReplState) -> str:
|
|
66
|
+
return f'{AlterTables.COMMAND} <param = value> [--include-reaper] \t alter schema on all tables'
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from adam.commands.cql.utils_cql import cassandra_keyspaces, cassandra_table_names
|
|
2
|
+
from adam.commands.export.export_sessions import ExportSessions
|
|
3
|
+
from adam.commands.export.export_databases import ExportDatabases
|
|
4
|
+
from adam.config import Config
|
|
5
|
+
from adam.repl_state import ReplState
|
|
6
|
+
from adam.sql.lark_completer import LarkCompleter
|
|
7
|
+
from adam.utils import log_timing
|
|
8
|
+
from adam.utils_k8s.statefulsets import StatefulSets
|
|
9
|
+
|
|
10
|
+
def completions_c(state: ReplState) -> dict[str, any]:
|
|
11
|
+
ps = Config().get('cql.alter-tables.gc-grace-periods', '3600,86400,864000,7776000').split(',')
|
|
12
|
+
|
|
13
|
+
with log_timing('lark.completions'):
|
|
14
|
+
return LarkCompleter(
|
|
15
|
+
expandables = {
|
|
16
|
+
'tables': lambda x: cassandra_table_names(state),
|
|
17
|
+
'keyspaces': lambda x: cassandra_keyspaces(state.with_no_pod()),
|
|
18
|
+
'table-props': {
|
|
19
|
+
'GC_GRACE_SECONDS': ps
|
|
20
|
+
},
|
|
21
|
+
'table-props-value': lambda x: {None: None, 'GC_GRACE_SECONDS': ps}[x],
|
|
22
|
+
'export-database-types': ['athena', 'sqlite', 'csv'],
|
|
23
|
+
'export-databases': lambda x: ExportDatabases.database_names(),
|
|
24
|
+
'export-sessions': lambda x: ExportSessions.export_session_names(state.sts, state.pod, state.namespace),
|
|
25
|
+
'export-sessions-incomplete': lambda x: ExportSessions.export_session_names(state.sts, state.pod, state.namespace, export_state='pending_import'),
|
|
26
|
+
'hosts': lambda x: [f'@{p}' for p in StatefulSets.pod_names(state.sts, state.namespace)],
|
|
27
|
+
},
|
|
28
|
+
variant=ReplState.C
|
|
29
|
+
).completions_for_nesting()
|
adam/commands/cql/cqlsh.py
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import click
|
|
2
2
|
|
|
3
|
+
from adam.commands import extract_trailing_options
|
|
3
4
|
from adam.commands.command import Command
|
|
4
5
|
from adam.commands.command_helpers import ClusterOrPodCommandHelper
|
|
5
|
-
from adam.commands.cql.
|
|
6
|
-
from .
|
|
6
|
+
from adam.commands.cql.completions_c import completions_c
|
|
7
|
+
from adam.commands.cql.utils_cql import cassandra
|
|
7
8
|
from adam.repl_state import ReplState, RequiredState
|
|
8
|
-
from adam.utils import log
|
|
9
|
+
from adam.utils import log
|
|
9
10
|
|
|
10
11
|
class Cqlsh(Command):
|
|
11
12
|
COMMAND = 'cql'
|
|
@@ -29,45 +30,22 @@ class Cqlsh(Command):
|
|
|
29
30
|
if not(args := self.args(cmd)):
|
|
30
31
|
return super().run(cmd, state)
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
background = False
|
|
37
|
-
opts = []
|
|
38
|
-
cqls = []
|
|
39
|
-
for index, arg in enumerate(args):
|
|
40
|
-
if arg.startswith('--'):
|
|
41
|
-
opts.append(arg)
|
|
42
|
-
elif index == len(args) -1 and arg == '&':
|
|
43
|
-
background = True
|
|
44
|
-
elif arg != '-e':
|
|
45
|
-
cqls.append(arg)
|
|
46
|
-
if not cqls:
|
|
47
|
-
if state.in_repl:
|
|
48
|
-
log2('Please enter cql statement. e.g. select host_id from system.local')
|
|
49
|
-
else:
|
|
50
|
-
log2('* CQL statement is missing.')
|
|
51
|
-
log2()
|
|
52
|
-
Command.display_help()
|
|
53
|
-
|
|
54
|
-
return 'no-cql'
|
|
55
|
-
|
|
56
|
-
cql = ' '.join(cqls)
|
|
57
|
-
return run_cql(state, cql, opts, show_out=True, background=background)
|
|
33
|
+
with self.validate(args, state) as (args, state):
|
|
34
|
+
with extract_trailing_options(args, '&') as (args, backgrounded):
|
|
35
|
+
with cassandra(state) as pods:
|
|
36
|
+
pods.cql(args, backgrounded=backgrounded)
|
|
58
37
|
|
|
59
38
|
def completion(self, state: ReplState) -> dict[str, any]:
|
|
60
39
|
if state.device != state.C:
|
|
61
|
-
# conflicts with psql completions
|
|
62
40
|
return {}
|
|
63
41
|
|
|
64
42
|
if state.sts or state.pod:
|
|
65
|
-
return
|
|
43
|
+
return completions_c(state)
|
|
66
44
|
|
|
67
45
|
return {}
|
|
68
46
|
|
|
69
47
|
def help(self, _: ReplState) -> str:
|
|
70
|
-
return f'
|
|
48
|
+
return f'<cql-statements> [&]\t run cqlsh with queries'
|
|
71
49
|
|
|
72
50
|
class CqlCommandHelper(click.Command):
|
|
73
51
|
def get_help(self, ctx: click.Context):
|