kaqing 2.0.98__py3-none-any.whl → 2.0.203__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.
Files changed (254) hide show
  1. adam/__init__.py +0 -2
  2. adam/app_session.py +9 -12
  3. adam/apps.py +18 -4
  4. adam/batch.py +11 -25
  5. adam/checks/check_utils.py +16 -46
  6. adam/checks/cpu.py +7 -1
  7. adam/checks/cpu_metrics.py +52 -0
  8. adam/checks/disk.py +2 -3
  9. adam/columns/columns.py +3 -1
  10. adam/columns/cpu.py +3 -1
  11. adam/columns/cpu_metrics.py +22 -0
  12. adam/columns/memory.py +3 -4
  13. adam/commands/__init__.py +24 -0
  14. adam/commands/alter_tables.py +37 -63
  15. adam/commands/app/app.py +38 -0
  16. adam/commands/{app_ping.py → app/app_ping.py} +8 -14
  17. adam/commands/app/show_app_actions.py +49 -0
  18. adam/commands/{show → app}/show_app_id.py +8 -11
  19. adam/commands/{show → app}/show_app_queues.py +8 -14
  20. adam/commands/app/utils_app.py +106 -0
  21. adam/commands/audit/audit.py +31 -35
  22. adam/commands/audit/audit_repair_tables.py +26 -48
  23. adam/commands/audit/audit_run.py +50 -0
  24. adam/commands/audit/completions_l.py +15 -0
  25. adam/commands/audit/show_last10.py +36 -0
  26. adam/commands/audit/show_slow10.py +36 -0
  27. adam/commands/audit/show_top10.py +36 -0
  28. adam/commands/audit/utils_show_top10.py +71 -0
  29. adam/commands/bash/__init__.py +5 -0
  30. adam/commands/bash/bash.py +36 -0
  31. adam/commands/bash/bash_completer.py +93 -0
  32. adam/commands/bash/utils_bash.py +16 -0
  33. adam/commands/cassandra/__init__.py +0 -0
  34. adam/commands/cassandra/download_cassandra_log.py +45 -0
  35. adam/commands/cassandra/nodetool.py +64 -0
  36. adam/commands/cassandra/nodetool_commands.py +120 -0
  37. adam/commands/{restart.py → cassandra/restart_cluster.py} +12 -26
  38. adam/commands/cassandra/restart_node.py +51 -0
  39. adam/commands/cassandra/restart_nodes.py +47 -0
  40. adam/commands/cassandra/rollout.py +88 -0
  41. adam/commands/cat.py +36 -0
  42. adam/commands/cd.py +14 -92
  43. adam/commands/check.py +18 -21
  44. adam/commands/cli_commands.py +8 -4
  45. adam/commands/clipboard_copy.py +87 -0
  46. adam/commands/code.py +57 -0
  47. adam/commands/command.py +212 -39
  48. adam/commands/commands_utils.py +20 -28
  49. adam/commands/cql/alter_tables.py +66 -0
  50. adam/commands/cql/completions_c.py +29 -0
  51. adam/commands/cql/cqlsh.py +10 -29
  52. adam/commands/cql/utils_cql.py +305 -0
  53. adam/commands/debug/__init__.py +0 -0
  54. adam/commands/debug/debug.py +22 -0
  55. adam/commands/debug/debug_completes.py +35 -0
  56. adam/commands/debug/debug_timings.py +35 -0
  57. adam/commands/deploy/code_start.py +7 -10
  58. adam/commands/deploy/code_stop.py +4 -21
  59. adam/commands/deploy/code_utils.py +3 -3
  60. adam/commands/deploy/deploy.py +4 -21
  61. adam/commands/deploy/deploy_frontend.py +14 -17
  62. adam/commands/deploy/deploy_pg_agent.py +3 -6
  63. adam/commands/deploy/deploy_pod.py +65 -73
  64. adam/commands/deploy/deploy_utils.py +14 -24
  65. adam/commands/deploy/undeploy.py +4 -21
  66. adam/commands/deploy/undeploy_frontend.py +4 -7
  67. adam/commands/deploy/undeploy_pg_agent.py +6 -8
  68. adam/commands/deploy/undeploy_pod.py +11 -12
  69. adam/commands/devices/__init__.py +0 -0
  70. adam/commands/devices/device.py +149 -0
  71. adam/commands/devices/device_app.py +163 -0
  72. adam/commands/devices/device_auit_log.py +49 -0
  73. adam/commands/devices/device_cass.py +179 -0
  74. adam/commands/devices/device_export.py +87 -0
  75. adam/commands/devices/device_postgres.py +160 -0
  76. adam/commands/devices/devices.py +25 -0
  77. adam/commands/download_cassandra_log.py +45 -0
  78. adam/commands/download_file.py +47 -0
  79. adam/commands/exit.py +1 -4
  80. adam/commands/export/__init__.py +0 -0
  81. adam/commands/export/clean_up_all_export_sessions.py +37 -0
  82. adam/commands/export/clean_up_export_sessions.py +39 -0
  83. adam/commands/export/completions_x.py +11 -0
  84. adam/commands/export/download_export_session.py +40 -0
  85. adam/commands/export/drop_export_database.py +39 -0
  86. adam/commands/export/drop_export_databases.py +37 -0
  87. adam/commands/export/export.py +37 -0
  88. adam/commands/export/export_databases.py +247 -0
  89. adam/commands/export/export_select.py +34 -0
  90. adam/commands/export/export_sessions.py +211 -0
  91. adam/commands/export/export_use.py +49 -0
  92. adam/commands/export/export_x_select.py +48 -0
  93. adam/commands/export/exporter.py +361 -0
  94. adam/commands/export/import_files.py +44 -0
  95. adam/commands/export/import_session.py +44 -0
  96. adam/commands/export/importer.py +82 -0
  97. adam/commands/export/importer_athena.py +150 -0
  98. adam/commands/export/importer_sqlite.py +69 -0
  99. adam/commands/export/show_column_counts.py +45 -0
  100. adam/commands/export/show_export_databases.py +39 -0
  101. adam/commands/export/show_export_session.py +39 -0
  102. adam/commands/export/show_export_sessions.py +37 -0
  103. adam/commands/export/utils_export.py +366 -0
  104. adam/commands/find_files.py +51 -0
  105. adam/commands/find_processes.py +76 -0
  106. adam/commands/generate_report.py +52 -0
  107. adam/commands/head.py +36 -0
  108. adam/commands/help.py +12 -8
  109. adam/commands/intermediate_command.py +52 -0
  110. adam/commands/issues.py +14 -40
  111. adam/commands/kubectl.py +38 -0
  112. adam/commands/login.py +26 -25
  113. adam/commands/ls.py +11 -116
  114. adam/commands/medusa/medusa.py +4 -22
  115. adam/commands/medusa/medusa_backup.py +20 -27
  116. adam/commands/medusa/medusa_restore.py +35 -48
  117. adam/commands/medusa/medusa_show_backupjobs.py +17 -18
  118. adam/commands/medusa/medusa_show_restorejobs.py +13 -18
  119. adam/commands/medusa/utils_medusa.py +15 -0
  120. adam/commands/nodetool.py +8 -19
  121. adam/commands/os/__init__.py +0 -0
  122. adam/commands/os/cat.py +36 -0
  123. adam/commands/os/download_file.py +47 -0
  124. adam/commands/os/find_files.py +51 -0
  125. adam/commands/os/find_processes.py +76 -0
  126. adam/commands/os/head.py +36 -0
  127. adam/commands/os/shell.py +41 -0
  128. adam/commands/param_get.py +11 -14
  129. adam/commands/param_set.py +8 -12
  130. adam/commands/postgres/completions_p.py +22 -0
  131. adam/commands/postgres/postgres.py +47 -55
  132. adam/commands/postgres/postgres_databases.py +269 -0
  133. adam/commands/postgres/postgres_ls.py +4 -8
  134. adam/commands/postgres/postgres_preview.py +5 -9
  135. adam/commands/postgres/utils_postgres.py +79 -0
  136. adam/commands/preview_table.py +10 -61
  137. adam/commands/pwd.py +14 -46
  138. adam/commands/reaper/reaper.py +4 -24
  139. adam/commands/reaper/reaper_forward.py +49 -56
  140. adam/commands/reaper/reaper_forward_session.py +6 -0
  141. adam/commands/reaper/reaper_forward_stop.py +10 -16
  142. adam/commands/reaper/reaper_restart.py +7 -14
  143. adam/commands/reaper/reaper_run_abort.py +8 -33
  144. adam/commands/reaper/reaper_runs.py +43 -58
  145. adam/commands/reaper/reaper_runs_abort.py +29 -49
  146. adam/commands/reaper/reaper_schedule_activate.py +14 -33
  147. adam/commands/reaper/reaper_schedule_start.py +9 -33
  148. adam/commands/reaper/reaper_schedule_stop.py +9 -33
  149. adam/commands/reaper/reaper_schedules.py +4 -14
  150. adam/commands/reaper/reaper_status.py +8 -16
  151. adam/commands/reaper/utils_reaper.py +203 -0
  152. adam/commands/repair/repair.py +4 -22
  153. adam/commands/repair/repair_log.py +5 -11
  154. adam/commands/repair/repair_run.py +27 -34
  155. adam/commands/repair/repair_scan.py +32 -40
  156. adam/commands/repair/repair_stop.py +5 -12
  157. adam/commands/restart_cluster.py +47 -0
  158. adam/commands/restart_node.py +51 -0
  159. adam/commands/restart_nodes.py +47 -0
  160. adam/commands/rollout.py +19 -24
  161. adam/commands/shell.py +12 -4
  162. adam/commands/show/show.py +10 -23
  163. adam/commands/show/show_adam.py +3 -3
  164. adam/commands/show/show_cassandra_repairs.py +37 -0
  165. adam/commands/show/show_cassandra_status.py +47 -51
  166. adam/commands/show/show_cassandra_version.py +5 -18
  167. adam/commands/show/show_cli_commands.py +56 -0
  168. adam/commands/show/show_host.py +1 -1
  169. adam/commands/show/show_login.py +23 -27
  170. adam/commands/show/show_params.py +2 -5
  171. adam/commands/show/show_processes.py +18 -21
  172. adam/commands/show/show_storage.py +11 -20
  173. adam/commands/watch.py +26 -29
  174. adam/config.py +5 -15
  175. adam/embedded_params.py +1 -1
  176. adam/log.py +4 -4
  177. adam/repl.py +105 -133
  178. adam/repl_commands.py +68 -28
  179. adam/repl_session.py +9 -1
  180. adam/repl_state.py +300 -62
  181. adam/sql/async_executor.py +44 -0
  182. adam/sql/lark_completer.py +286 -0
  183. adam/sql/lark_parser.py +604 -0
  184. adam/sql/qingl.lark +1076 -0
  185. adam/sql/sql_completer.py +104 -64
  186. adam/sql/sql_state_machine.py +630 -0
  187. adam/sql/term_completer.py +3 -0
  188. adam/sso/authn_ad.py +6 -8
  189. adam/sso/authn_okta.py +4 -6
  190. adam/sso/cred_cache.py +3 -5
  191. adam/sso/idp.py +9 -12
  192. adam/utils.py +640 -10
  193. adam/utils_athena.py +140 -87
  194. adam/utils_audits.py +102 -0
  195. adam/utils_issues.py +32 -0
  196. adam/utils_k8s/app_clusters.py +28 -0
  197. adam/utils_k8s/app_pods.py +35 -0
  198. adam/utils_k8s/cassandra_clusters.py +34 -21
  199. adam/utils_k8s/cassandra_nodes.py +9 -6
  200. adam/utils_k8s/custom_resources.py +16 -17
  201. adam/utils_k8s/ingresses.py +2 -2
  202. adam/utils_k8s/jobs.py +7 -11
  203. adam/utils_k8s/k8s.py +96 -0
  204. adam/utils_k8s/kube_context.py +3 -6
  205. adam/{pod_exec_result.py → utils_k8s/pod_exec_result.py} +11 -5
  206. adam/utils_k8s/pods.py +146 -75
  207. adam/utils_k8s/secrets.py +4 -4
  208. adam/utils_k8s/service_accounts.py +5 -4
  209. adam/utils_k8s/services.py +2 -2
  210. adam/utils_k8s/statefulsets.py +6 -14
  211. adam/utils_local.py +42 -0
  212. adam/utils_net.py +4 -4
  213. adam/utils_repl/__init__.py +0 -0
  214. adam/utils_repl/appendable_completer.py +6 -0
  215. adam/utils_repl/automata_completer.py +48 -0
  216. adam/utils_repl/repl_completer.py +89 -0
  217. adam/utils_repl/state_machine.py +173 -0
  218. adam/utils_sqlite.py +137 -0
  219. adam/version.py +1 -1
  220. {kaqing-2.0.98.dist-info → kaqing-2.0.203.dist-info}/METADATA +1 -1
  221. kaqing-2.0.203.dist-info/RECORD +277 -0
  222. kaqing-2.0.203.dist-info/top_level.txt +2 -0
  223. teddy/__init__.py +0 -0
  224. teddy/lark_parser.py +436 -0
  225. teddy/lark_parser2.py +618 -0
  226. adam/commands/app.py +0 -67
  227. adam/commands/bash.py +0 -92
  228. adam/commands/cp.py +0 -95
  229. adam/commands/cql/cql_completions.py +0 -11
  230. adam/commands/cql/cql_table_completer.py +0 -8
  231. adam/commands/cql/cql_utils.py +0 -115
  232. adam/commands/describe/describe.py +0 -47
  233. adam/commands/describe/describe_keyspace.py +0 -60
  234. adam/commands/describe/describe_keyspaces.py +0 -49
  235. adam/commands/describe/describe_schema.py +0 -49
  236. adam/commands/describe/describe_table.py +0 -60
  237. adam/commands/describe/describe_tables.py +0 -49
  238. adam/commands/devices.py +0 -118
  239. adam/commands/logs.py +0 -39
  240. adam/commands/postgres/postgres_session.py +0 -240
  241. adam/commands/postgres/postgres_utils.py +0 -31
  242. adam/commands/postgres/psql_completions.py +0 -10
  243. adam/commands/postgres/psql_table_completer.py +0 -11
  244. adam/commands/reaper/reaper_session.py +0 -159
  245. adam/commands/report.py +0 -57
  246. adam/commands/show/show_app_actions.py +0 -53
  247. adam/commands/show/show_commands.py +0 -61
  248. adam/commands/show/show_repairs.py +0 -47
  249. adam/sql/state_machine.py +0 -460
  250. kaqing-2.0.98.dist-info/RECORD +0 -191
  251. kaqing-2.0.98.dist-info/top_level.txt +0 -1
  252. /adam/commands/{describe → app}/__init__.py +0 -0
  253. {kaqing-2.0.98.dist-info → kaqing-2.0.203.dist-info}/WHEEL +0 -0
  254. {kaqing-2.0.98.dist-info → kaqing-2.0.203.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.commands.command_helpers import ClusterCommandHelper
8
+ from adam.config import Config
7
9
  from adam.repl_state import ReplState, RequiredState
8
- from adam.utils import lines_to_tabular, log, log2
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,8 +31,39 @@ class Command:
28
31
 
29
32
  return None
30
33
 
31
- def completion(self, _: ReplState, leaf: dict[str, any] = None) -> dict[str, any]:
32
- # COMMAND = 'reaper activate schedule'
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):
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,8 +73,11 @@ class Command:
39
73
  def required(self) -> RequiredState:
40
74
  return None
41
75
 
42
- def validate_state(self, state: ReplState, pg_required: RequiredState = None, app_required: RequiredState = None):
43
- return state.validate(self.required(), pg_required=pg_required, app_required=app_required)
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):
80
+ return state.validate(self.required(), show_err=show_err)
44
81
 
45
82
  def help(self, _: ReplState) -> str:
46
83
  return None
@@ -54,6 +91,9 @@ class Command:
54
91
  return a
55
92
 
56
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
+ """
57
97
  return state.apply_args(args, cmd=self.command_tokens(), resolve_pg=resolve_pg, args_to_check=args_to_check)
58
98
 
59
99
  def command_tokens(self):
@@ -85,17 +125,52 @@ class Command:
85
125
  args.extend(['--help'])
86
126
  subprocess.run(args)
87
127
 
88
- def extract_options(args: list[str], names: list[str]):
89
- found: list[str] = []
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)
90
150
 
91
151
  new_args: list[str] = []
92
- for arg in args:
93
- if arg in names:
94
- found.append(arg)
95
- else:
96
- new_args.append(arg)
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
97
160
 
98
- return new_args, found
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
99
174
 
100
175
  def print_chain(cmd: 'Command'):
101
176
  print(f'{cmd.command()}', end = '')
@@ -104,31 +179,129 @@ class Command:
104
179
  cmd = s
105
180
  print()
106
181
 
107
- def intermediate_run(self, cmd: str, state: ReplState, args: list[str], cmds: list['Command'], separator='\t', display_help=True):
108
- state, _ = self.apply_state(args, state)
182
+ class InvalidStateException(Exception):
183
+ def __init__(self, state: ReplState):
184
+ super().__init__(f'Invalid state')
109
185
 
110
- if state.in_repl:
111
- if display_help:
112
- log(lines_to_tabular([c.help(state) for c in cmds], separator=separator))
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
113
192
 
114
- return 'command-missing'
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)
115
198
  else:
116
- # head with the Chain of Responsibility pattern
117
- cmds = Command.chain(cmds)
118
- if not cmds.run(cmd, state):
119
- if display_help:
120
- log2('* Command is missing.')
121
- Command.display_help()
122
- return 'command-missing'
123
-
124
- return state
125
-
126
- def intermediate_help(super_help: str, cmd: str, cmd_list: list['Command'], separator='\t', show_cluster_help=False):
127
- log(super_help)
128
- log()
129
- log('Sub-Commands:')
130
-
131
- log(lines_to_tabular([c.help(ReplState()).replace(f'{cmd} ', ' ', 1) for c in cmd_list], separator=separator))
132
- if show_cluster_help:
133
- log()
134
- ClusterCommandHelper.cluster_help()
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
@@ -1,16 +1,14 @@
1
- from concurrent.futures import ThreadPoolExecutor
2
- import time
3
1
  from kubernetes import client
4
2
  from typing import List
5
3
 
6
4
  from adam.checks.check_utils import run_checks
7
5
  from adam.columns.columns import Columns, collect_checks
8
- from adam.commands.issues import Issues
6
+ from adam.utils_issues import IssuesUtils
9
7
  from adam.utils_k8s.cassandra_nodes import CassandraNodes
10
8
  from adam.utils_k8s.pods import Pods
11
9
  from adam.utils_k8s.statefulsets import StatefulSets
12
10
  from adam.repl_state import ReplState
13
- from adam.utils import convert_seconds, duration, lines_to_tabular, log, log2
11
+ from adam.utils import SORT, duration, kaqing_log_file, tabulize, log2
14
12
 
15
13
  def show_pods(pods: List[client.V1Pod], ns: str, show_namespace = True, show_host_id = True):
16
14
  if len(pods) == 0:
@@ -21,18 +19,10 @@ def show_pods(pods: List[client.V1Pod], ns: str, show_namespace = True, show_hos
21
19
  if show_host_id:
22
20
  names = [pod.metadata.name for pod in pods]
23
21
 
24
- def get_host_id_with_pod(pod, ns):
25
- return (CassandraNodes.get_host_id(pod, ns), pod)
26
-
27
- def body(executor: ThreadPoolExecutor, pod, ns, show_out):
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)}
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}
36
26
 
37
27
  def line(pod: client.V1Pod):
38
28
  pod_cnt = len(pod.status.container_statuses)
@@ -58,9 +48,7 @@ def show_pods(pods: List[client.V1Pod], ns: str, show_namespace = True, show_hos
58
48
  line += f"@{ns}"
59
49
  return line + f" {ready}/{pod_cnt} {status}"
60
50
 
61
- pod_names = [line(pod) for pod in pods]
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'))
51
+ tabulize(pods, line, header='HOST_ID POD_NAME READY POD_STATUS' if show_host_id else 'POD_NAME READY POD_STATUS')
64
52
 
65
53
  def show_rollout(sts: str, ns: str):
66
54
  restarted, rollingout = StatefulSets.restarted_at(sts, ns)
@@ -71,18 +59,22 @@ def show_rollout(sts: str, ns: str):
71
59
  else:
72
60
  log2(f'Cluster has completed rollout {d} ago.')
73
61
 
74
- def show_table(state: ReplState, pods: list[str], cols: str, header: str, show_output=False):
62
+ def show_table(state: ReplState, pods: list[str], cols: str, header: str, show_out=False, backgrounded = False):
75
63
  columns = Columns.create_columns(cols)
76
64
 
77
- results = run_checks(cluster=state.sts, pod=state.pod, namespace=state.namespace, checks=collect_checks(columns), show_output=show_output)
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)
78
71
 
79
- def line(pod_name: str):
80
- cells = [c.pod_value(results, pod_name) for c in columns]
81
- return ','.join(cells)
72
+ IssuesUtils.show(results, state.in_repl)
82
73
 
83
- lines = [line(pod) for pod in pods]
84
- lines.sort()
74
+ return r
85
75
 
86
- log(lines_to_tabular(lines, header, separator=','))
76
+ def write_to_kaqing_log_file(r: str):
77
+ with kaqing_log_file() as f:
78
+ f.write(r)
87
79
 
88
- Issues.show(results, state.in_repl)
80
+ return f.name
@@ -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': lambda x: {
19
+ 'GC_GRACE_SECONDS': ps
20
+ },
21
+ 'table-props-value': lambda x: {'GC_GRACE_SECONDS': ps}[x],
22
+ 'export-database-types': lambda x: ['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()
@@ -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.cql_completions import cql_completions
6
- from .cql_utils import run_cql, table_names
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, log2
9
+ from adam.utils import log
9
10
 
10
11
  class Cqlsh(Command):
11
12
  COMMAND = 'cql'
@@ -29,42 +30,22 @@ class Cqlsh(Command):
29
30
  if not(args := self.args(cmd)):
30
31
  return super().run(cmd, state)
31
32
 
32
- state, args = self.apply_state(args, state)
33
- if not self.validate_state(state):
34
- return state
35
-
36
- opts = []
37
- cqls = []
38
- for arg in args:
39
- if arg.startswith('--'):
40
- opts.append(arg)
41
- elif arg != '-e':
42
- cqls.append(arg)
43
- if not cqls:
44
- if state.in_repl:
45
- log2('Please enter cql statement. e.g. select host_id from system.local')
46
- else:
47
- log2('* CQL statement is missing.')
48
- log2()
49
- Command.display_help()
50
-
51
- return 'no-cql'
52
-
53
- cql = ' '.join(cqls)
54
- 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)
55
37
 
56
38
  def completion(self, state: ReplState) -> dict[str, any]:
57
39
  if state.device != state.C:
58
- # conflicts with psql completions
59
40
  return {}
60
41
 
61
42
  if state.sts or state.pod:
62
- return {Cqlsh.COMMAND: None} | cql_completions(state)
43
+ return completions_c(state)
63
44
 
64
45
  return {}
65
46
 
66
47
  def help(self, _: ReplState) -> str:
67
- return f'[{Cqlsh.COMMAND}] <cql-statements>\t run cqlsh with queries'
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):