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.

Files changed (228) hide show
  1. adam/__init__.py +0 -2
  2. adam/app_session.py +9 -12
  3. adam/apps.py +20 -6
  4. adam/batch.py +16 -6
  5. adam/checks/check_utils.py +19 -49
  6. adam/checks/compactionstats.py +1 -1
  7. adam/checks/cpu.py +9 -3
  8. adam/checks/cpu_metrics.py +52 -0
  9. adam/checks/disk.py +3 -4
  10. adam/checks/gossip.py +1 -1
  11. adam/checks/memory.py +3 -3
  12. adam/checks/status.py +1 -1
  13. adam/columns/columns.py +3 -1
  14. adam/columns/cpu.py +3 -1
  15. adam/columns/cpu_metrics.py +22 -0
  16. adam/columns/memory.py +3 -4
  17. adam/commands/__init__.py +24 -0
  18. adam/commands/alter_tables.py +66 -0
  19. adam/commands/app/app.py +38 -0
  20. adam/commands/{app_ping.py → app/app_ping.py} +8 -14
  21. adam/commands/app/show_app_actions.py +49 -0
  22. adam/commands/{show → app}/show_app_id.py +9 -12
  23. adam/commands/{show → app}/show_app_queues.py +8 -14
  24. adam/commands/app/utils_app.py +106 -0
  25. adam/commands/audit/__init__.py +0 -0
  26. adam/commands/audit/audit.py +67 -0
  27. adam/commands/audit/audit_repair_tables.py +72 -0
  28. adam/commands/audit/audit_run.py +50 -0
  29. adam/commands/audit/completions_l.py +15 -0
  30. adam/commands/audit/show_last10.py +36 -0
  31. adam/commands/audit/show_slow10.py +36 -0
  32. adam/commands/audit/show_top10.py +36 -0
  33. adam/commands/audit/utils_show_top10.py +71 -0
  34. adam/commands/bash/__init__.py +5 -0
  35. adam/commands/bash/bash.py +36 -0
  36. adam/commands/bash/bash_completer.py +93 -0
  37. adam/commands/bash/utils_bash.py +16 -0
  38. adam/commands/cat.py +36 -0
  39. adam/commands/cd.py +14 -88
  40. adam/commands/check.py +18 -21
  41. adam/commands/cli_commands.py +11 -7
  42. adam/commands/clipboard_copy.py +87 -0
  43. adam/commands/code.py +57 -0
  44. adam/commands/command.py +220 -19
  45. adam/commands/commands_utils.py +28 -31
  46. adam/commands/cql/__init__.py +0 -0
  47. adam/commands/cql/completions_c.py +28 -0
  48. adam/commands/{cqlsh.py → cql/cqlsh.py} +13 -32
  49. adam/commands/cql/utils_cql.py +305 -0
  50. adam/commands/deploy/code_start.py +7 -10
  51. adam/commands/deploy/code_stop.py +4 -21
  52. adam/commands/deploy/code_utils.py +5 -5
  53. adam/commands/deploy/deploy.py +4 -40
  54. adam/commands/deploy/deploy_frontend.py +15 -18
  55. adam/commands/deploy/deploy_pg_agent.py +4 -7
  56. adam/commands/deploy/deploy_pod.py +74 -77
  57. adam/commands/deploy/deploy_utils.py +16 -26
  58. adam/commands/deploy/undeploy.py +4 -40
  59. adam/commands/deploy/undeploy_frontend.py +5 -8
  60. adam/commands/deploy/undeploy_pg_agent.py +7 -8
  61. adam/commands/deploy/undeploy_pod.py +16 -17
  62. adam/commands/devices/__init__.py +0 -0
  63. adam/commands/devices/device.py +149 -0
  64. adam/commands/devices/device_app.py +163 -0
  65. adam/commands/devices/device_auit_log.py +49 -0
  66. adam/commands/devices/device_cass.py +179 -0
  67. adam/commands/devices/device_export.py +87 -0
  68. adam/commands/devices/device_postgres.py +160 -0
  69. adam/commands/devices/devices.py +25 -0
  70. adam/commands/download_file.py +47 -0
  71. adam/commands/exit.py +1 -4
  72. adam/commands/export/__init__.py +0 -0
  73. adam/commands/export/clean_up_all_export_sessions.py +37 -0
  74. adam/commands/export/clean_up_export_sessions.py +39 -0
  75. adam/commands/export/completions_x.py +11 -0
  76. adam/commands/export/download_export_session.py +40 -0
  77. adam/commands/export/drop_export_database.py +39 -0
  78. adam/commands/export/drop_export_databases.py +37 -0
  79. adam/commands/export/export.py +37 -0
  80. adam/commands/export/export_databases.py +246 -0
  81. adam/commands/export/export_select.py +34 -0
  82. adam/commands/export/export_sessions.py +209 -0
  83. adam/commands/export/export_use.py +49 -0
  84. adam/commands/export/export_x_select.py +48 -0
  85. adam/commands/export/exporter.py +332 -0
  86. adam/commands/export/import_files.py +44 -0
  87. adam/commands/export/import_session.py +44 -0
  88. adam/commands/export/importer.py +81 -0
  89. adam/commands/export/importer_athena.py +148 -0
  90. adam/commands/export/importer_sqlite.py +67 -0
  91. adam/commands/export/show_column_counts.py +45 -0
  92. adam/commands/export/show_export_databases.py +39 -0
  93. adam/commands/export/show_export_session.py +39 -0
  94. adam/commands/export/show_export_sessions.py +37 -0
  95. adam/commands/export/utils_export.py +344 -0
  96. adam/commands/find_files.py +51 -0
  97. adam/commands/find_processes.py +76 -0
  98. adam/commands/head.py +36 -0
  99. adam/commands/help.py +14 -9
  100. adam/commands/intermediate_command.py +52 -0
  101. adam/commands/issues.py +14 -40
  102. adam/commands/kubectl.py +38 -0
  103. adam/commands/login.py +26 -25
  104. adam/commands/logs.py +5 -7
  105. adam/commands/ls.py +11 -115
  106. adam/commands/medusa/medusa.py +4 -46
  107. adam/commands/medusa/medusa_backup.py +22 -29
  108. adam/commands/medusa/medusa_restore.py +51 -49
  109. adam/commands/medusa/medusa_show_backupjobs.py +20 -21
  110. adam/commands/medusa/medusa_show_restorejobs.py +16 -21
  111. adam/commands/medusa/utils_medusa.py +15 -0
  112. adam/commands/nodetool.py +8 -17
  113. adam/commands/param_get.py +11 -14
  114. adam/commands/param_set.py +9 -13
  115. adam/commands/postgres/completions_p.py +22 -0
  116. adam/commands/postgres/postgres.py +49 -73
  117. adam/commands/postgres/postgres_databases.py +270 -0
  118. adam/commands/postgres/postgres_ls.py +4 -8
  119. adam/commands/postgres/postgres_preview.py +5 -9
  120. adam/commands/postgres/utils_postgres.py +79 -0
  121. adam/commands/preview_table.py +10 -69
  122. adam/commands/pwd.py +14 -43
  123. adam/commands/reaper/reaper.py +6 -49
  124. adam/commands/reaper/reaper_forward.py +49 -56
  125. adam/commands/reaper/reaper_forward_session.py +6 -0
  126. adam/commands/reaper/reaper_forward_stop.py +10 -16
  127. adam/commands/reaper/reaper_restart.py +8 -15
  128. adam/commands/reaper/reaper_run_abort.py +8 -33
  129. adam/commands/reaper/reaper_runs.py +43 -58
  130. adam/commands/reaper/reaper_runs_abort.py +29 -49
  131. adam/commands/reaper/reaper_schedule_activate.py +14 -33
  132. adam/commands/reaper/reaper_schedule_start.py +9 -33
  133. adam/commands/reaper/reaper_schedule_stop.py +9 -33
  134. adam/commands/reaper/reaper_schedules.py +4 -14
  135. adam/commands/reaper/reaper_status.py +8 -16
  136. adam/commands/reaper/utils_reaper.py +203 -0
  137. adam/commands/repair/repair.py +4 -46
  138. adam/commands/repair/repair_log.py +6 -12
  139. adam/commands/repair/repair_run.py +29 -36
  140. adam/commands/repair/repair_scan.py +33 -41
  141. adam/commands/repair/repair_stop.py +6 -13
  142. adam/commands/report.py +25 -21
  143. adam/commands/restart.py +27 -28
  144. adam/commands/rollout.py +20 -25
  145. adam/commands/shell.py +12 -4
  146. adam/commands/show/show.py +15 -46
  147. adam/commands/show/show_adam.py +3 -3
  148. adam/commands/show/show_cassandra_repairs.py +37 -0
  149. adam/commands/show/show_cassandra_status.py +48 -52
  150. adam/commands/show/show_cassandra_version.py +5 -18
  151. adam/commands/show/show_cli_commands.py +56 -0
  152. adam/commands/show/show_host.py +33 -0
  153. adam/commands/show/show_login.py +23 -27
  154. adam/commands/show/show_params.py +2 -5
  155. adam/commands/show/show_processes.py +18 -21
  156. adam/commands/show/show_storage.py +11 -20
  157. adam/commands/watch.py +27 -30
  158. adam/config.py +8 -6
  159. adam/embedded_params.py +1 -1
  160. adam/log.py +4 -4
  161. adam/pod_exec_result.py +13 -5
  162. adam/repl.py +136 -120
  163. adam/repl_commands.py +66 -24
  164. adam/repl_session.py +8 -1
  165. adam/repl_state.py +343 -73
  166. adam/sql/__init__.py +0 -0
  167. adam/sql/lark_completer.py +284 -0
  168. adam/sql/lark_parser.py +604 -0
  169. adam/sql/sql_completer.py +118 -0
  170. adam/sql/sql_state_machine.py +630 -0
  171. adam/sql/term_completer.py +76 -0
  172. adam/sso/authn_ad.py +7 -9
  173. adam/sso/authn_okta.py +4 -6
  174. adam/sso/cred_cache.py +4 -6
  175. adam/sso/idp.py +10 -13
  176. adam/utils.py +539 -11
  177. adam/utils_athena.py +145 -0
  178. adam/utils_audits.py +102 -0
  179. adam/utils_issues.py +32 -0
  180. adam/utils_k8s/__init__.py +0 -0
  181. adam/utils_k8s/app_clusters.py +28 -0
  182. adam/utils_k8s/app_pods.py +36 -0
  183. adam/utils_k8s/cassandra_clusters.py +44 -0
  184. adam/{k8s_utils → utils_k8s}/cassandra_nodes.py +12 -5
  185. adam/{k8s_utils → utils_k8s}/custom_resources.py +16 -17
  186. adam/{k8s_utils → utils_k8s}/deployment.py +2 -2
  187. adam/{k8s_utils → utils_k8s}/ingresses.py +2 -2
  188. adam/{k8s_utils → utils_k8s}/jobs.py +7 -11
  189. adam/utils_k8s/k8s.py +96 -0
  190. adam/{k8s_utils → utils_k8s}/kube_context.py +3 -3
  191. adam/{k8s_utils → utils_k8s}/pods.py +132 -83
  192. adam/{k8s_utils → utils_k8s}/secrets.py +7 -3
  193. adam/{k8s_utils → utils_k8s}/service_accounts.py +5 -4
  194. adam/{k8s_utils → utils_k8s}/services.py +2 -2
  195. adam/{k8s_utils → utils_k8s}/statefulsets.py +9 -16
  196. adam/utils_local.py +4 -0
  197. adam/utils_net.py +24 -0
  198. adam/utils_repl/__init__.py +0 -0
  199. adam/utils_repl/appendable_completer.py +6 -0
  200. adam/utils_repl/automata_completer.py +48 -0
  201. adam/utils_repl/repl_completer.py +172 -0
  202. adam/utils_repl/state_machine.py +173 -0
  203. adam/utils_sqlite.py +137 -0
  204. adam/version.py +1 -1
  205. {kaqing-2.0.14.dist-info → kaqing-2.0.189.dist-info}/METADATA +1 -1
  206. kaqing-2.0.189.dist-info/RECORD +253 -0
  207. kaqing-2.0.189.dist-info/top_level.txt +2 -0
  208. teddy/__init__.py +0 -0
  209. teddy/lark_parser.py +436 -0
  210. teddy/lark_parser2.py +618 -0
  211. adam/commands/app.py +0 -67
  212. adam/commands/bash.py +0 -87
  213. adam/commands/cp.py +0 -95
  214. adam/commands/cql_utils.py +0 -53
  215. adam/commands/devices.py +0 -89
  216. adam/commands/postgres/postgres_session.py +0 -247
  217. adam/commands/reaper/reaper_session.py +0 -159
  218. adam/commands/show/show_app_actions.py +0 -53
  219. adam/commands/show/show_commands.py +0 -61
  220. adam/commands/show/show_repairs.py +0 -47
  221. adam/k8s_utils/cassandra_clusters.py +0 -48
  222. kaqing-2.0.14.dist-info/RECORD +0 -167
  223. kaqing-2.0.14.dist-info/top_level.txt +0 -1
  224. /adam/{k8s_utils → commands/app}/__init__.py +0 -0
  225. /adam/{k8s_utils → utils_k8s}/config_maps.py +0 -0
  226. /adam/{k8s_utils → utils_k8s}/volumes.py +0 -0
  227. {kaqing-2.0.14.dist-info → kaqing-2.0.189.dist-info}/WHEEL +0 -0
  228. {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, _: 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, 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 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)
44
78
 
45
- @abstractmethod
46
- def help(self, state: ReplState) -> str:
47
- pass
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
- return state.apply_args(args, cmd=self.command_tokens(), resolve_pg=resolve_pg)
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], names: list[str]):
90
- 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)
91
150
 
92
151
  new_args: list[str] = []
93
- for arg in args:
94
- if arg in names:
95
- found.append(arg)
96
- else:
97
- 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
98
160
 
99
- 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
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
@@ -1,16 +1,17 @@
1
- from concurrent.futures import ThreadPoolExecutor
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.commands.issues import Issues
9
- from adam.k8s_utils.cassandra_nodes import CassandraNodes
10
- from adam.k8s_utils.pods import Pods
11
- from adam.k8s_utils.statefulsets import StatefulSets
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 convert_seconds, duration, lines_to_tabular, log, log2
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
- 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)}
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
- 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'))
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, show_output=False):
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), show_output=show_output)
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
- def line(pod_name: str):
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
- lines = [line(pod) for pod in pods]
84
- lines.sort()
81
+ r = log_file
85
82
 
86
- log(lines_to_tabular(lines, header, separator=','))
83
+ IssuesUtils.show(results, state.in_repl)
87
84
 
88
- Issues.show(results, state.in_repl)
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.cql_utils import run_cql
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, log2
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
- state, args = self.apply_state(args, state)
32
- if not self.validate_state(state):
33
- return state
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 {Cqlsh.COMMAND: None} | {
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'[{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):