kaqing 2.0.14__py3-none-any.whl → 2.0.189__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 +20 -6
- adam/batch.py +16 -6
- adam/checks/check_utils.py +19 -49
- adam/checks/compactionstats.py +1 -1
- adam/checks/cpu.py +9 -3
- adam/checks/cpu_metrics.py +52 -0
- adam/checks/disk.py +3 -4
- adam/checks/gossip.py +1 -1
- adam/checks/memory.py +3 -3
- adam/checks/status.py +1 -1
- 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/alter_tables.py +66 -0
- adam/commands/app/app.py +38 -0
- adam/commands/{app_ping.py → app/app_ping.py} +8 -14
- adam/commands/app/show_app_actions.py +49 -0
- adam/commands/{show → app}/show_app_id.py +9 -12
- adam/commands/{show → app}/show_app_queues.py +8 -14
- adam/commands/app/utils_app.py +106 -0
- adam/commands/audit/__init__.py +0 -0
- adam/commands/audit/audit.py +67 -0
- adam/commands/audit/audit_repair_tables.py +72 -0
- adam/commands/audit/audit_run.py +50 -0
- adam/commands/audit/completions_l.py +15 -0
- adam/commands/audit/show_last10.py +36 -0
- adam/commands/audit/show_slow10.py +36 -0
- adam/commands/audit/show_top10.py +36 -0
- adam/commands/audit/utils_show_top10.py +71 -0
- 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/cat.py +36 -0
- adam/commands/cd.py +14 -88
- adam/commands/check.py +18 -21
- adam/commands/cli_commands.py +11 -7
- adam/commands/clipboard_copy.py +87 -0
- adam/commands/code.py +57 -0
- adam/commands/command.py +220 -19
- adam/commands/commands_utils.py +28 -31
- adam/commands/cql/__init__.py +0 -0
- adam/commands/cql/completions_c.py +28 -0
- adam/commands/{cqlsh.py → cql/cqlsh.py} +13 -32
- adam/commands/cql/utils_cql.py +305 -0
- adam/commands/deploy/code_start.py +7 -10
- adam/commands/deploy/code_stop.py +4 -21
- adam/commands/deploy/code_utils.py +5 -5
- adam/commands/deploy/deploy.py +4 -40
- adam/commands/deploy/deploy_frontend.py +15 -18
- adam/commands/deploy/deploy_pg_agent.py +4 -7
- adam/commands/deploy/deploy_pod.py +74 -77
- adam/commands/deploy/deploy_utils.py +16 -26
- adam/commands/deploy/undeploy.py +4 -40
- adam/commands/deploy/undeploy_frontend.py +5 -8
- adam/commands/deploy/undeploy_pg_agent.py +7 -8
- adam/commands/deploy/undeploy_pod.py +16 -17
- 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/download_file.py +47 -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 +246 -0
- adam/commands/export/export_select.py +34 -0
- adam/commands/export/export_sessions.py +209 -0
- adam/commands/export/export_use.py +49 -0
- adam/commands/export/export_x_select.py +48 -0
- adam/commands/export/exporter.py +332 -0
- adam/commands/export/import_files.py +44 -0
- adam/commands/export/import_session.py +44 -0
- adam/commands/export/importer.py +81 -0
- adam/commands/export/importer_athena.py +148 -0
- adam/commands/export/importer_sqlite.py +67 -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 +344 -0
- adam/commands/find_files.py +51 -0
- adam/commands/find_processes.py +76 -0
- adam/commands/head.py +36 -0
- adam/commands/help.py +14 -9
- adam/commands/intermediate_command.py +52 -0
- adam/commands/issues.py +14 -40
- adam/commands/kubectl.py +38 -0
- adam/commands/login.py +26 -25
- adam/commands/logs.py +5 -7
- adam/commands/ls.py +11 -115
- adam/commands/medusa/medusa.py +4 -46
- adam/commands/medusa/medusa_backup.py +22 -29
- adam/commands/medusa/medusa_restore.py +51 -49
- adam/commands/medusa/medusa_show_backupjobs.py +20 -21
- adam/commands/medusa/medusa_show_restorejobs.py +16 -21
- adam/commands/medusa/utils_medusa.py +15 -0
- adam/commands/nodetool.py +8 -17
- adam/commands/param_get.py +11 -14
- adam/commands/param_set.py +9 -13
- adam/commands/postgres/completions_p.py +22 -0
- adam/commands/postgres/postgres.py +49 -73
- adam/commands/postgres/postgres_databases.py +270 -0
- adam/commands/postgres/postgres_ls.py +4 -8
- adam/commands/postgres/postgres_preview.py +5 -9
- adam/commands/postgres/utils_postgres.py +79 -0
- adam/commands/preview_table.py +10 -69
- adam/commands/pwd.py +14 -43
- adam/commands/reaper/reaper.py +6 -49
- 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 +8 -15
- 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 -46
- adam/commands/repair/repair_log.py +6 -12
- adam/commands/repair/repair_run.py +29 -36
- adam/commands/repair/repair_scan.py +33 -41
- adam/commands/repair/repair_stop.py +6 -13
- adam/commands/report.py +25 -21
- adam/commands/restart.py +27 -28
- adam/commands/rollout.py +20 -25
- adam/commands/shell.py +12 -4
- adam/commands/show/show.py +15 -46
- adam/commands/show/show_adam.py +3 -3
- adam/commands/show/show_cassandra_repairs.py +37 -0
- adam/commands/show/show_cassandra_status.py +48 -52
- adam/commands/show/show_cassandra_version.py +5 -18
- adam/commands/show/show_cli_commands.py +56 -0
- adam/commands/show/show_host.py +33 -0
- adam/commands/show/show_login.py +23 -27
- adam/commands/show/show_params.py +2 -5
- adam/commands/show/show_processes.py +18 -21
- adam/commands/show/show_storage.py +11 -20
- adam/commands/watch.py +27 -30
- adam/config.py +8 -6
- adam/embedded_params.py +1 -1
- adam/log.py +4 -4
- adam/pod_exec_result.py +13 -5
- adam/repl.py +136 -120
- adam/repl_commands.py +66 -24
- adam/repl_session.py +8 -1
- adam/repl_state.py +343 -73
- adam/sql/__init__.py +0 -0
- adam/sql/lark_completer.py +284 -0
- adam/sql/lark_parser.py +604 -0
- adam/sql/sql_completer.py +118 -0
- adam/sql/sql_state_machine.py +630 -0
- adam/sql/term_completer.py +76 -0
- adam/sso/authn_ad.py +7 -9
- adam/sso/authn_okta.py +4 -6
- adam/sso/cred_cache.py +4 -6
- adam/sso/idp.py +10 -13
- adam/utils.py +539 -11
- adam/utils_athena.py +145 -0
- adam/utils_audits.py +102 -0
- adam/utils_issues.py +32 -0
- adam/utils_k8s/__init__.py +0 -0
- adam/utils_k8s/app_clusters.py +28 -0
- adam/utils_k8s/app_pods.py +36 -0
- adam/utils_k8s/cassandra_clusters.py +44 -0
- adam/{k8s_utils → utils_k8s}/cassandra_nodes.py +12 -5
- adam/{k8s_utils → utils_k8s}/custom_resources.py +16 -17
- adam/{k8s_utils → utils_k8s}/deployment.py +2 -2
- adam/{k8s_utils → utils_k8s}/ingresses.py +2 -2
- adam/{k8s_utils → utils_k8s}/jobs.py +7 -11
- adam/utils_k8s/k8s.py +96 -0
- adam/{k8s_utils → utils_k8s}/kube_context.py +3 -3
- adam/{k8s_utils → utils_k8s}/pods.py +132 -83
- adam/{k8s_utils → utils_k8s}/secrets.py +7 -3
- adam/{k8s_utils → utils_k8s}/service_accounts.py +5 -4
- adam/{k8s_utils → utils_k8s}/services.py +2 -2
- adam/{k8s_utils → utils_k8s}/statefulsets.py +9 -16
- adam/utils_local.py +4 -0
- adam/utils_net.py +24 -0
- 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 +172 -0
- adam/utils_repl/state_machine.py +173 -0
- adam/utils_sqlite.py +137 -0
- adam/version.py +1 -1
- {kaqing-2.0.14.dist-info → kaqing-2.0.189.dist-info}/METADATA +1 -1
- kaqing-2.0.189.dist-info/RECORD +253 -0
- kaqing-2.0.189.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/app.py +0 -67
- adam/commands/bash.py +0 -87
- adam/commands/cp.py +0 -95
- adam/commands/cql_utils.py +0 -53
- adam/commands/devices.py +0 -89
- adam/commands/postgres/postgres_session.py +0 -247
- adam/commands/reaper/reaper_session.py +0 -159
- adam/commands/show/show_app_actions.py +0 -53
- adam/commands/show/show_commands.py +0 -61
- adam/commands/show/show_repairs.py +0 -47
- adam/k8s_utils/cassandra_clusters.py +0 -48
- kaqing-2.0.14.dist-info/RECORD +0 -167
- kaqing-2.0.14.dist-info/top_level.txt +0 -1
- /adam/{k8s_utils → commands/app}/__init__.py +0 -0
- /adam/{k8s_utils → utils_k8s}/config_maps.py +0 -0
- /adam/{k8s_utils → utils_k8s}/volumes.py +0 -0
- {kaqing-2.0.14.dist-info → kaqing-2.0.189.dist-info}/WHEEL +0 -0
- {kaqing-2.0.14.dist-info → kaqing-2.0.189.dist-info}/entry_points.txt +0 -0
adam/commands/command.py
CHANGED
|
@@ -1,10 +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
8
|
from adam.config import Config
|
|
7
9
|
from adam.repl_state import ReplState, RequiredState
|
|
10
|
+
from adam.sql.lark_completer import LarkCompleter
|
|
11
|
+
from adam.utils import log2
|
|
8
12
|
|
|
9
13
|
repl_cmds: list['Command'] = []
|
|
10
14
|
|
|
@@ -22,14 +26,44 @@ class Command:
|
|
|
22
26
|
# Do not do child of child!!!
|
|
23
27
|
@abstractmethod
|
|
24
28
|
def run(self, cmd: str, state: ReplState):
|
|
25
|
-
Config().debug(cmd)
|
|
26
29
|
if self._successor:
|
|
27
30
|
return self._successor.run(cmd, state)
|
|
28
31
|
|
|
29
32
|
return None
|
|
30
33
|
|
|
31
|
-
def completion(self,
|
|
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, 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):
|
|
53
|
+
return {}
|
|
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
|
+
|
|
33
67
|
d = leaf
|
|
34
68
|
for t in reversed(self.command().split(' ')):
|
|
35
69
|
d = {t: d}
|
|
@@ -39,12 +73,14 @@ class Command:
|
|
|
39
73
|
def required(self) -> RequiredState:
|
|
40
74
|
return None
|
|
41
75
|
|
|
42
|
-
def
|
|
43
|
-
return
|
|
76
|
+
def validate(self, args: list[str], state: ReplState, apply = True):
|
|
77
|
+
return ValidateStateHandler(self, args, state, apply = apply)
|
|
44
78
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
79
|
+
def validate_state(self, state: ReplState, show_err = True):
|
|
80
|
+
return state.validate(self.required(), show_err=show_err)
|
|
81
|
+
|
|
82
|
+
def help(self, _: ReplState) -> str:
|
|
83
|
+
return None
|
|
48
84
|
|
|
49
85
|
def args(self, cmd: str):
|
|
50
86
|
a = list(filter(None, cmd.split(' ')))
|
|
@@ -54,8 +90,11 @@ class Command:
|
|
|
54
90
|
|
|
55
91
|
return a
|
|
56
92
|
|
|
57
|
-
def apply_state(self, args: list[str], state: ReplState, resolve_pg = True) -> tuple[ReplState, list[str]]:
|
|
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
|
+
"""
|
|
97
|
+
return state.apply_args(args, cmd=self.command_tokens(), resolve_pg=resolve_pg, args_to_check=args_to_check)
|
|
59
98
|
|
|
60
99
|
def command_tokens(self):
|
|
61
100
|
return self.command().split(' ')
|
|
@@ -86,21 +125,183 @@ class Command:
|
|
|
86
125
|
args.extend(['--help'])
|
|
87
126
|
subprocess.run(args)
|
|
88
127
|
|
|
89
|
-
def extract_options(args: list[str],
|
|
90
|
-
|
|
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)
|
|
91
150
|
|
|
92
151
|
new_args: list[str] = []
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
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
|
|
98
160
|
|
|
99
|
-
|
|
161
|
+
def extract_option_sequence(args, sequence):
|
|
162
|
+
new_args = args
|
|
163
|
+
|
|
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
|
|
100
174
|
|
|
101
175
|
def print_chain(cmd: 'Command'):
|
|
102
176
|
print(f'{cmd.command()}', end = '')
|
|
103
177
|
while s := cmd._successor:
|
|
104
178
|
print(f'-> {s.command()}', end = '')
|
|
105
179
|
cmd = s
|
|
106
|
-
print()
|
|
180
|
+
print()
|
|
181
|
+
|
|
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)
|
|
198
|
+
else:
|
|
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,16 +1,17 @@
|
|
|
1
|
-
from
|
|
2
|
-
import time
|
|
1
|
+
from datetime import datetime
|
|
3
2
|
from kubernetes import client
|
|
4
3
|
from typing import List
|
|
5
4
|
|
|
6
5
|
from adam.checks.check_utils import run_checks
|
|
7
6
|
from adam.columns.columns import Columns, collect_checks
|
|
8
|
-
from adam.
|
|
9
|
-
from adam.
|
|
10
|
-
from adam.
|
|
11
|
-
from adam.
|
|
7
|
+
from adam.config import Config
|
|
8
|
+
from adam.repl_session import ReplSession
|
|
9
|
+
from adam.utils_issues import IssuesUtils
|
|
10
|
+
from adam.utils_k8s.cassandra_nodes import CassandraNodes
|
|
11
|
+
from adam.utils_k8s.pods import Pods
|
|
12
|
+
from adam.utils_k8s.statefulsets import StatefulSets
|
|
12
13
|
from adam.repl_state import ReplState
|
|
13
|
-
from adam.utils import
|
|
14
|
+
from adam.utils import SORT, duration, tabulize, log, log2
|
|
14
15
|
|
|
15
16
|
def show_pods(pods: List[client.V1Pod], ns: str, show_namespace = True, show_host_id = True):
|
|
16
17
|
if len(pods) == 0:
|
|
@@ -21,18 +22,10 @@ def show_pods(pods: List[client.V1Pod], ns: str, show_namespace = True, show_hos
|
|
|
21
22
|
if show_host_id:
|
|
22
23
|
names = [pod.metadata.name for pod in pods]
|
|
23
24
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
if executor:
|
|
29
|
-
return executor.submit(get_host_id_with_pod, pod, ns)
|
|
30
|
-
|
|
31
|
-
id = CassandraNodes.get_host_id(pod, ns)
|
|
32
|
-
|
|
33
|
-
return (id, pod)
|
|
34
|
-
|
|
35
|
-
host_ids_by_pod = {pod: id for id, pod in Pods.on_pods(names, ns, body, action='get-host-id', show_out=False)}
|
|
25
|
+
msg = 'd`Retrieving|Retrived {size} host ids'
|
|
26
|
+
with Pods.parallelize(names, msg=msg, action = 'get-host-id') as exec:
|
|
27
|
+
host_pods = exec.map(lambda pod: (CassandraNodes.get_host_id(pod, ns), pod))
|
|
28
|
+
host_ids_by_pod = {pod: id for id, pod in host_pods}
|
|
36
29
|
|
|
37
30
|
def line(pod: client.V1Pod):
|
|
38
31
|
pod_cnt = len(pod.status.container_statuses)
|
|
@@ -58,9 +51,7 @@ def show_pods(pods: List[client.V1Pod], ns: str, show_namespace = True, show_hos
|
|
|
58
51
|
line += f"@{ns}"
|
|
59
52
|
return line + f" {ready}/{pod_cnt} {status}"
|
|
60
53
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
log(lines_to_tabular(pod_names, 'HOST_ID POD_NAME READY POD_STATUS' if show_host_id else 'POD_NAME READY POD_STATUS'))
|
|
54
|
+
tabulize(pods, line, header='HOST_ID POD_NAME READY POD_STATUS' if show_host_id else 'POD_NAME READY POD_STATUS')
|
|
64
55
|
|
|
65
56
|
def show_rollout(sts: str, ns: str):
|
|
66
57
|
restarted, rollingout = StatefulSets.restarted_at(sts, ns)
|
|
@@ -71,18 +62,24 @@ def show_rollout(sts: str, ns: str):
|
|
|
71
62
|
else:
|
|
72
63
|
log2(f'Cluster has completed rollout {d} ago.')
|
|
73
64
|
|
|
74
|
-
def show_table(state: ReplState, pods: list[str], cols: str, header: str,
|
|
65
|
+
def show_table(state: ReplState, pods: list[str], cols: str, header: str, show_out=False, backgrounded = False):
|
|
75
66
|
columns = Columns.create_columns(cols)
|
|
76
67
|
|
|
77
|
-
results = run_checks(cluster=state.sts, pod=state.pod, namespace=state.namespace, checks=collect_checks(columns),
|
|
68
|
+
results = run_checks(cluster=state.sts, pod=state.pod, namespace=state.namespace, checks=collect_checks(columns), show_out=show_out)
|
|
69
|
+
|
|
70
|
+
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)
|
|
71
|
+
|
|
72
|
+
if backgrounded:
|
|
73
|
+
log_prefix = Config().get('log-prefix', '/tmp/qing')
|
|
74
|
+
log_file = f'{log_prefix}-{datetime.now().strftime("%d%H%M%S")}.log'
|
|
75
|
+
|
|
76
|
+
with open(log_file, 'w') as f:
|
|
77
|
+
f.write(r)
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
cells = [c.pod_value(results, pod_name) for c in columns]
|
|
81
|
-
return ','.join(cells)
|
|
79
|
+
ReplSession().append_history(f':sh cat {log_file}')
|
|
82
80
|
|
|
83
|
-
|
|
84
|
-
lines.sort()
|
|
81
|
+
r = log_file
|
|
85
82
|
|
|
86
|
-
|
|
83
|
+
IssuesUtils.show(results, state.in_repl)
|
|
87
84
|
|
|
88
|
-
|
|
85
|
+
return r
|
|
File without changes
|
|
@@ -0,0 +1,28 @@
|
|
|
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': lambda x: {
|
|
19
|
+
'GC_GRACE_SECONDS': ps
|
|
20
|
+
},
|
|
21
|
+
'export-database-types': lambda x: ['athena', 'sqlite', 'csv'],
|
|
22
|
+
'export-databases': lambda x: ExportDatabases.database_names(),
|
|
23
|
+
'export-sessions': lambda x: ExportSessions.export_session_names(state.sts, state.pod, state.namespace),
|
|
24
|
+
'export-sessions-incomplete': lambda x: ExportSessions.export_session_names(state.sts, state.pod, state.namespace, export_state='pending_import'),
|
|
25
|
+
'hosts': lambda x: [f'@{p}' for p in StatefulSets.pod_names(state.sts, state.namespace)],
|
|
26
|
+
},
|
|
27
|
+
variant=ReplState.C
|
|
28
|
+
).completions_for_nesting()
|
|
@@ -1,10 +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.
|
|
6
|
+
from adam.commands.cql.completions_c import completions_c
|
|
7
|
+
from adam.commands.cql.utils_cql import cassandra
|
|
6
8
|
from adam.repl_state import ReplState, RequiredState
|
|
7
|
-
from adam.utils import log
|
|
9
|
+
from adam.utils import log
|
|
8
10
|
|
|
9
11
|
class Cqlsh(Command):
|
|
10
12
|
COMMAND = 'cql'
|
|
@@ -28,43 +30,22 @@ class Cqlsh(Command):
|
|
|
28
30
|
if not(args := self.args(cmd)):
|
|
29
31
|
return super().run(cmd, state)
|
|
30
32
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
opts = []
|
|
36
|
-
cqls = []
|
|
37
|
-
for arg in args:
|
|
38
|
-
if arg.startswith('--'):
|
|
39
|
-
opts.append(arg)
|
|
40
|
-
elif arg != '-e':
|
|
41
|
-
cqls.append(arg)
|
|
42
|
-
if not cqls:
|
|
43
|
-
if state.in_repl:
|
|
44
|
-
log2('Please enter cql statement. e.g. select host_id from system.local')
|
|
45
|
-
else:
|
|
46
|
-
log2('* CQL statement is missing.')
|
|
47
|
-
log2()
|
|
48
|
-
Command.display_help()
|
|
49
|
-
|
|
50
|
-
return 'no-cql'
|
|
51
|
-
|
|
52
|
-
cql = ' '.join(cqls)
|
|
53
|
-
return run_cql(state, cql, opts, show_out=True)
|
|
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)
|
|
54
37
|
|
|
55
38
|
def completion(self, state: ReplState) -> dict[str, any]:
|
|
39
|
+
if state.device != state.C:
|
|
40
|
+
return {}
|
|
41
|
+
|
|
56
42
|
if state.sts or state.pod:
|
|
57
|
-
return
|
|
58
|
-
'delete': {'from': None},
|
|
59
|
-
'insert': {'into': None},
|
|
60
|
-
'select': None,
|
|
61
|
-
'update': None,
|
|
62
|
-
}
|
|
43
|
+
return completions_c(state)
|
|
63
44
|
|
|
64
45
|
return {}
|
|
65
46
|
|
|
66
47
|
def help(self, _: ReplState) -> str:
|
|
67
|
-
return f'
|
|
48
|
+
return f'<cql-statements> [&]\t run cqlsh with queries'
|
|
68
49
|
|
|
69
50
|
class CqlCommandHelper(click.Command):
|
|
70
51
|
def get_help(self, ctx: click.Context):
|