kaqing 2.0.98__py3-none-any.whl → 2.0.171__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.
- adam/__init__.py +0 -2
- adam/app_session.py +9 -7
- adam/batch.py +4 -18
- adam/checks/check_utils.py +14 -46
- adam/checks/cpu.py +7 -1
- adam/checks/cpu_metrics.py +52 -0
- adam/columns/columns.py +3 -1
- adam/columns/cpu.py +3 -1
- adam/columns/cpu_metrics.py +22 -0
- adam/commands/__init__.py +15 -0
- adam/commands/alter_tables.py +50 -61
- adam/commands/app_cmd.py +38 -0
- adam/commands/app_ping.py +8 -14
- adam/commands/audit/audit.py +43 -30
- adam/commands/audit/audit_repair_tables.py +26 -46
- adam/commands/audit/audit_run.py +50 -0
- adam/commands/audit/show_last10.py +48 -0
- adam/commands/audit/show_slow10.py +47 -0
- adam/commands/audit/show_top10.py +45 -0
- adam/commands/audit/utils_show_top10.py +59 -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 +50 -0
- adam/commands/cd.py +15 -91
- adam/commands/check.py +23 -18
- adam/commands/cli_commands.py +2 -3
- adam/commands/code.py +57 -0
- adam/commands/command.py +96 -40
- adam/commands/commands_utils.py +9 -19
- adam/commands/cp.py +33 -39
- adam/commands/cql/cql_completions.py +30 -8
- adam/commands/cql/cqlsh.py +12 -27
- adam/commands/cql/utils_cql.py +343 -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 -21
- adam/commands/deploy/deploy_frontend.py +14 -17
- adam/commands/deploy/deploy_pg_agent.py +3 -6
- adam/commands/deploy/deploy_pod.py +67 -73
- adam/commands/deploy/deploy_utils.py +14 -24
- adam/commands/deploy/undeploy.py +4 -21
- 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/device.py +118 -0
- adam/commands/devices/device_app.py +173 -0
- adam/commands/devices/device_auit_log.py +49 -0
- adam/commands/devices/device_cass.py +185 -0
- adam/commands/devices/device_export.py +86 -0
- adam/commands/devices/device_postgres.py +144 -0
- adam/commands/devices/devices.py +25 -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 +51 -0
- adam/commands/export/drop_export_database.py +55 -0
- adam/commands/export/drop_export_databases.py +43 -0
- adam/commands/export/export.py +53 -0
- adam/commands/export/export_databases.py +170 -0
- adam/commands/export/export_handlers.py +71 -0
- adam/commands/export/export_select.py +81 -0
- adam/commands/export/export_select_x.py +54 -0
- adam/commands/export/export_use.py +52 -0
- adam/commands/export/exporter.py +352 -0
- adam/commands/export/import_session.py +40 -0
- adam/commands/export/importer.py +67 -0
- adam/commands/export/importer_athena.py +80 -0
- adam/commands/export/importer_sqlite.py +47 -0
- adam/commands/export/show_column_counts.py +54 -0
- adam/commands/export/show_export_databases.py +36 -0
- adam/commands/export/show_export_session.py +48 -0
- adam/commands/export/show_export_sessions.py +44 -0
- adam/commands/export/utils_export.py +314 -0
- adam/commands/help.py +10 -6
- adam/commands/intermediate_command.py +49 -0
- adam/commands/issues.py +14 -40
- adam/commands/kubectl.py +38 -0
- adam/commands/login.py +28 -24
- adam/commands/logs.py +4 -6
- adam/commands/ls.py +11 -116
- adam/commands/medusa/medusa.py +4 -22
- adam/commands/medusa/medusa_backup.py +20 -24
- adam/commands/medusa/medusa_restore.py +30 -32
- adam/commands/medusa/medusa_show_backupjobs.py +16 -17
- adam/commands/medusa/medusa_show_restorejobs.py +12 -17
- adam/commands/nodetool.py +11 -17
- adam/commands/param_get.py +11 -12
- adam/commands/param_set.py +9 -10
- adam/commands/postgres/postgres.py +43 -36
- adam/commands/postgres/{postgres_session.py → postgres_context.py} +80 -46
- adam/commands/postgres/postgres_ls.py +4 -8
- adam/commands/postgres/postgres_preview.py +5 -9
- adam/commands/postgres/psql_completions.py +2 -2
- adam/commands/postgres/utils_postgres.py +66 -0
- adam/commands/preview_table.py +8 -61
- adam/commands/pwd.py +14 -44
- adam/commands/reaper/reaper.py +4 -24
- adam/commands/reaper/reaper_forward.py +48 -55
- 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 +11 -30
- adam/commands/reaper/reaper_runs.py +42 -57
- adam/commands/reaper/reaper_runs_abort.py +29 -49
- adam/commands/reaper/reaper_schedule_activate.py +11 -30
- adam/commands/reaper/reaper_schedule_start.py +10 -29
- adam/commands/reaper/reaper_schedule_stop.py +10 -29
- adam/commands/reaper/reaper_schedules.py +4 -14
- adam/commands/reaper/reaper_status.py +8 -16
- adam/commands/reaper/utils_reaper.py +196 -0
- adam/commands/repair/repair.py +4 -22
- adam/commands/repair/repair_log.py +4 -7
- adam/commands/repair/repair_run.py +27 -29
- adam/commands/repair/repair_scan.py +31 -34
- adam/commands/repair/repair_stop.py +4 -7
- adam/commands/report.py +25 -21
- adam/commands/restart.py +25 -26
- adam/commands/rollout.py +19 -24
- adam/commands/shell.py +5 -4
- adam/commands/show/show.py +6 -19
- adam/commands/show/show_app_actions.py +26 -22
- adam/commands/show/show_app_id.py +8 -11
- adam/commands/show/show_app_queues.py +7 -10
- adam/commands/show/{show_repairs.py → show_cassandra_repairs.py} +8 -17
- adam/commands/show/show_cassandra_status.py +29 -33
- adam/commands/show/show_cassandra_version.py +4 -14
- adam/commands/show/show_commands.py +19 -21
- adam/commands/show/show_host.py +1 -1
- adam/commands/show/show_login.py +26 -24
- adam/commands/show/show_processes.py +16 -18
- adam/commands/show/show_storage.py +10 -20
- adam/commands/watch.py +26 -29
- adam/config.py +5 -14
- adam/embedded_params.py +1 -1
- adam/pod_exec_result.py +7 -1
- adam/repl.py +95 -131
- adam/repl_commands.py +48 -20
- adam/repl_state.py +270 -61
- adam/sql/sql_completer.py +105 -63
- adam/sql/sql_state_machine.py +618 -0
- adam/sql/term_completer.py +3 -0
- adam/sso/authn_ad.py +6 -5
- adam/sso/authn_okta.py +3 -3
- adam/sso/cred_cache.py +3 -2
- adam/sso/idp.py +3 -3
- adam/utils.py +439 -3
- adam/utils_app.py +98 -0
- adam/utils_athena.py +140 -87
- adam/utils_audits.py +106 -0
- adam/utils_issues.py +32 -0
- adam/utils_k8s/app_clusters.py +28 -0
- adam/utils_k8s/app_pods.py +33 -0
- adam/utils_k8s/cassandra_clusters.py +22 -20
- adam/utils_k8s/cassandra_nodes.py +4 -4
- adam/utils_k8s/custom_resources.py +5 -0
- adam/utils_k8s/ingresses.py +2 -2
- adam/utils_k8s/k8s.py +87 -0
- adam/utils_k8s/pods.py +77 -68
- 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 +1 -12
- adam/utils_net.py +4 -4
- adam/utils_repl/__init__.py +0 -0
- adam/utils_repl/automata_completer.py +48 -0
- adam/utils_repl/repl_completer.py +46 -0
- adam/utils_repl/state_machine.py +173 -0
- adam/utils_sqlite.py +109 -0
- adam/version.py +1 -1
- {kaqing-2.0.98.dist-info → kaqing-2.0.171.dist-info}/METADATA +1 -1
- kaqing-2.0.171.dist-info/RECORD +236 -0
- adam/commands/app.py +0 -67
- adam/commands/bash.py +0 -92
- adam/commands/cql/cql_table_completer.py +0 -8
- adam/commands/cql/cql_utils.py +0 -115
- adam/commands/describe/describe.py +0 -47
- adam/commands/describe/describe_keyspace.py +0 -60
- adam/commands/describe/describe_keyspaces.py +0 -49
- adam/commands/describe/describe_schema.py +0 -49
- adam/commands/describe/describe_table.py +0 -60
- adam/commands/describe/describe_tables.py +0 -49
- adam/commands/devices.py +0 -118
- adam/commands/postgres/postgres_utils.py +0 -31
- adam/commands/postgres/psql_table_completer.py +0 -11
- adam/commands/reaper/reaper_session.py +0 -159
- adam/sql/state_machine.py +0 -460
- kaqing-2.0.98.dist-info/RECORD +0 -191
- /adam/commands/{describe → devices}/__init__.py +0 -0
- {kaqing-2.0.98.dist-info → kaqing-2.0.171.dist-info}/WHEEL +0 -0
- {kaqing-2.0.98.dist-info → kaqing-2.0.171.dist-info}/entry_points.txt +0 -0
- {kaqing-2.0.98.dist-info → kaqing-2.0.171.dist-info}/top_level.txt +0 -0
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
import requests
|
|
2
|
-
|
|
3
1
|
from adam.commands.command import Command
|
|
4
|
-
from .
|
|
2
|
+
from adam.commands.reaper.utils_reaper import Reapers, reaper
|
|
5
3
|
from adam.repl_state import ReplState, RequiredState
|
|
6
4
|
from adam.utils import log2
|
|
7
5
|
|
|
8
6
|
class ReaperScheduleStop(Command):
|
|
9
7
|
COMMAND = 'reaper stop schedule'
|
|
10
|
-
reaper_login = None
|
|
11
8
|
|
|
12
9
|
# the singleton pattern
|
|
13
10
|
def __new__(cls, *args, **kwargs):
|
|
@@ -28,37 +25,21 @@ class ReaperScheduleStop(Command):
|
|
|
28
25
|
if not(args := self.args(cmd)):
|
|
29
26
|
return super().run(cmd, state)
|
|
30
27
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
28
|
+
with self.validate(args, state) as (args, state):
|
|
29
|
+
if not args:
|
|
30
|
+
log2('Specify run schedule to stop.')
|
|
34
31
|
|
|
35
|
-
|
|
36
|
-
log2('Specify run schedule to stop.')
|
|
32
|
+
return state
|
|
37
33
|
|
|
38
|
-
|
|
34
|
+
with reaper(state) as http:
|
|
35
|
+
schedule_id = args[0]
|
|
36
|
+
http.put(f'repair_schedule/{schedule_id}?state=PAUSED')
|
|
37
|
+
Reapers.show_schedule(state, schedule_id)
|
|
39
38
|
|
|
40
|
-
schedule_id = args[0]
|
|
41
|
-
if not(reaper := ReaperSession.create(state)):
|
|
42
39
|
return schedule_id
|
|
43
40
|
|
|
44
|
-
self.stop_schedule(state, reaper, schedule_id)
|
|
45
|
-
|
|
46
|
-
return schedule_id
|
|
47
|
-
|
|
48
|
-
def stop_schedule(self, state: ReplState, reaper: ReaperSession, schedule_id: str):
|
|
49
|
-
def body(uri: str, headers: dict[str, str]):
|
|
50
|
-
return requests.put(uri, headers=headers)
|
|
51
|
-
|
|
52
|
-
reaper.port_forwarded(state, f'repair_schedule/{schedule_id}?state=PAUSED', body, method='PUT')
|
|
53
|
-
reaper.show_schedule(state, schedule_id)
|
|
54
|
-
|
|
55
41
|
def completion(self, state: ReplState):
|
|
56
|
-
|
|
57
|
-
leaf = {id: None for id in ReaperSession.cached_schedule_ids(state)}
|
|
58
|
-
|
|
59
|
-
return super().completion(state, leaf)
|
|
60
|
-
|
|
61
|
-
return {}
|
|
42
|
+
return super().completion(state, lambda: {id: None for id in Reapers.cached_schedule_ids(state)})
|
|
62
43
|
|
|
63
44
|
def help(self, _: ReplState):
|
|
64
45
|
return f'{ReaperScheduleStop.COMMAND} <schedule-id>\t pause reaper schedule'
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
from adam.commands.command import Command
|
|
2
|
-
from .
|
|
2
|
+
from adam.commands.reaper.utils_reaper import Reapers
|
|
3
3
|
from adam.repl_state import ReplState, RequiredState
|
|
4
4
|
|
|
5
5
|
class ReaperSchedules(Command):
|
|
6
6
|
COMMAND = 'reaper show schedules'
|
|
7
|
-
reaper_login = None
|
|
8
7
|
|
|
9
8
|
# the singleton pattern
|
|
10
9
|
def __new__(cls, *args, **kwargs):
|
|
@@ -25,22 +24,13 @@ class ReaperSchedules(Command):
|
|
|
25
24
|
if not(args := self.args(cmd)):
|
|
26
25
|
return super().run(cmd, state)
|
|
27
26
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
return state
|
|
27
|
+
with self.validate(args, state) as (args, state):
|
|
28
|
+
Reapers.show_schedules(state)
|
|
31
29
|
|
|
32
|
-
if not(reaper := ReaperSession.create(state)):
|
|
33
30
|
return state
|
|
34
31
|
|
|
35
|
-
reaper.show_schedules(state)
|
|
36
|
-
|
|
37
|
-
return state
|
|
38
|
-
|
|
39
32
|
def completion(self, state: ReplState):
|
|
40
|
-
|
|
41
|
-
return super().completion(state)
|
|
42
|
-
|
|
43
|
-
return {}
|
|
33
|
+
return super().completion(state)
|
|
44
34
|
|
|
45
35
|
def help(self, _: ReplState):
|
|
46
36
|
return f'{ReaperSchedules.COMMAND}\t show reaper schedules'
|
|
@@ -4,13 +4,11 @@ from kubernetes import client
|
|
|
4
4
|
|
|
5
5
|
from adam.commands.command import Command
|
|
6
6
|
from adam.commands.commands_utils import show_pods
|
|
7
|
-
from .
|
|
7
|
+
from adam.commands.reaper.utils_reaper import Reapers
|
|
8
8
|
from adam.repl_state import ReplState, RequiredState
|
|
9
|
-
from adam.utils import lines_to_tabular, log, log2
|
|
10
9
|
|
|
11
10
|
class ReaperStatus(Command):
|
|
12
11
|
COMMAND = 'reaper status'
|
|
13
|
-
reaper_login = None
|
|
14
12
|
|
|
15
13
|
# the singleton pattern
|
|
16
14
|
def __new__(cls, *args, **kwargs):
|
|
@@ -31,18 +29,15 @@ class ReaperStatus(Command):
|
|
|
31
29
|
if not(args := self.args(cmd)):
|
|
32
30
|
return super().run(cmd, state)
|
|
33
31
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
if not(reaper := ReaperSession.create(state)):
|
|
39
|
-
return state
|
|
32
|
+
with self.validate(args, state) as (args, state):
|
|
33
|
+
if not Reapers.pod_name(state):
|
|
34
|
+
return state
|
|
40
35
|
|
|
41
|
-
|
|
36
|
+
pods = self.list_pods(state.sts, state.namespace)
|
|
42
37
|
|
|
43
|
-
|
|
38
|
+
show_pods(pods, state.namespace, show_host_id=False)
|
|
44
39
|
|
|
45
|
-
|
|
40
|
+
return state
|
|
46
41
|
|
|
47
42
|
def list_pods(self, sts_name: str, namespace: str) -> List[client.V1Pod]:
|
|
48
43
|
v1 = client.CoreV1Api()
|
|
@@ -55,10 +50,7 @@ class ReaperStatus(Command):
|
|
|
55
50
|
return cast(List[client.V1Pod], v1.list_namespaced_pod(namespace, label_selector=label_selector).items)
|
|
56
51
|
|
|
57
52
|
def completion(self, state: ReplState):
|
|
58
|
-
|
|
59
|
-
return super().completion(state)
|
|
60
|
-
|
|
61
|
-
return {}
|
|
53
|
+
return super().completion(state)
|
|
62
54
|
|
|
63
55
|
def help(self, _: ReplState):
|
|
64
56
|
return f'{ReaperStatus.COMMAND}\t show reaper status'
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
from collections.abc import Callable
|
|
2
|
+
from functools import partial
|
|
3
|
+
from typing import List, cast
|
|
4
|
+
from kubernetes import client
|
|
5
|
+
import re
|
|
6
|
+
|
|
7
|
+
import requests
|
|
8
|
+
from adam.config import Config
|
|
9
|
+
from adam.repl_state import ReplState
|
|
10
|
+
from adam.utils import lines_to_tabular, log2, wait_log
|
|
11
|
+
from adam.utils_k8s.k8s import port_forwarding
|
|
12
|
+
|
|
13
|
+
class ReaperService:
|
|
14
|
+
def __init__(self, state: ReplState, local_addr: str, remote_addr: str, show_out = True):
|
|
15
|
+
self.state = state
|
|
16
|
+
self.local_addr = local_addr
|
|
17
|
+
self.remote_addr = remote_addr
|
|
18
|
+
self.show_out = show_out
|
|
19
|
+
self.headers = None
|
|
20
|
+
|
|
21
|
+
def get(self, path: str, params: dict[str, any] = {}):
|
|
22
|
+
with logging(self, 'GET', path) as (url, headers):
|
|
23
|
+
return requests.get(url, headers=headers, params=params)
|
|
24
|
+
|
|
25
|
+
def put(self, path: str, params: dict[str, any] = {}):
|
|
26
|
+
with logging(self, 'PUT', path) as (url, headers):
|
|
27
|
+
return requests.put(url, headers=headers, params=params)
|
|
28
|
+
|
|
29
|
+
def post(self, path: str, params: dict[str, any] = {}):
|
|
30
|
+
with logging(self, 'POST', path) as (url, headers):
|
|
31
|
+
return requests.post(url, headers=headers, params=params)
|
|
32
|
+
|
|
33
|
+
class ReaperLogginHandler:
|
|
34
|
+
def __init__(self, svc: ReaperService, method: str, path: str):
|
|
35
|
+
self.svc = svc
|
|
36
|
+
self.method = method
|
|
37
|
+
self.path = path
|
|
38
|
+
|
|
39
|
+
def __enter__(self) -> tuple[str, dict[str, any]]:
|
|
40
|
+
if not self.svc.headers:
|
|
41
|
+
self.svc.headers = Reapers.cookie_header(self.svc.state, self.svc.local_addr, self.svc.remote_addr, show_output=self.svc.show_out)
|
|
42
|
+
|
|
43
|
+
if self.svc.show_out and self.method:
|
|
44
|
+
log2(f'{self.method} {self.svc.remote_addr}/{self.path}')
|
|
45
|
+
|
|
46
|
+
return (f'http://{self.svc.local_addr}/{self.path}', self.svc.headers)
|
|
47
|
+
|
|
48
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
49
|
+
if exc_val and isinstance(exc_val, requests.Response):
|
|
50
|
+
if int(exc_val.status_code / 100) != 2:
|
|
51
|
+
if self.svc.show_out:
|
|
52
|
+
log2(exc_val.status_code)
|
|
53
|
+
|
|
54
|
+
return False
|
|
55
|
+
|
|
56
|
+
def logging(svc: ReaperService, method: str, path: str):
|
|
57
|
+
return ReaperLogginHandler(svc, method, path)
|
|
58
|
+
|
|
59
|
+
class ReaperHandler:
|
|
60
|
+
def __init__(self, state: ReplState, show_out = True):
|
|
61
|
+
self.state = state
|
|
62
|
+
self.show_out = show_out
|
|
63
|
+
self.headers = None
|
|
64
|
+
self.forwarding = None
|
|
65
|
+
|
|
66
|
+
def __enter__(self):
|
|
67
|
+
self.forwarding = port_forwarding(self.state, Reapers.local_port(), partial(Reapers.svc_or_pod, self.state), Reapers.target_port())
|
|
68
|
+
(local_addr, remote_addr) = self.forwarding.__enter__()
|
|
69
|
+
|
|
70
|
+
return ReaperService(self.state, local_addr, remote_addr, show_out=self.show_out)
|
|
71
|
+
|
|
72
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
73
|
+
if self.forwarding:
|
|
74
|
+
return self.forwarding.__exit__(exc_type, exc_val, exc_tb)
|
|
75
|
+
|
|
76
|
+
return False
|
|
77
|
+
|
|
78
|
+
def reaper(state: ReplState, show_out = True):
|
|
79
|
+
return ReaperHandler(state, show_out=show_out)
|
|
80
|
+
|
|
81
|
+
class Reapers:
|
|
82
|
+
schedules_ids_by_cluster: dict[str, list[str]] = {}
|
|
83
|
+
|
|
84
|
+
def pod_name(state: ReplState):
|
|
85
|
+
pods = Reapers.list_reaper_pods(state.sts if state.sts else state.pod, state.namespace)
|
|
86
|
+
if pods:
|
|
87
|
+
return pods[0].metadata.name
|
|
88
|
+
|
|
89
|
+
return None
|
|
90
|
+
|
|
91
|
+
def show_schedule(state: ReplState, schedule_id: str):
|
|
92
|
+
def filter(schedules: list[dict]):
|
|
93
|
+
return [schedule for schedule in schedules if schedule['id'] == schedule_id]
|
|
94
|
+
|
|
95
|
+
Reapers.show_schedules(state, filter)
|
|
96
|
+
|
|
97
|
+
def show_schedules(state: ReplState, filter: Callable[[list[dict]], dict] = None):
|
|
98
|
+
schedules = Reapers.list_schedules(state, filter=filter)
|
|
99
|
+
|
|
100
|
+
# forced refresh of schedule list
|
|
101
|
+
if not filter:
|
|
102
|
+
Reapers.schedules_ids_by_cluster[state.sts] = [schedule['id'] for schedule in schedules]
|
|
103
|
+
Reapers.show_schedules_tabular(schedules)
|
|
104
|
+
|
|
105
|
+
def schedule_ids(state: ReplState, show_output = True, filter: Callable[[list[dict]], dict] = None):
|
|
106
|
+
schedules = Reapers.list_schedules(state, show_output=show_output, filter=filter)
|
|
107
|
+
return [schedule['id'] for schedule in schedules]
|
|
108
|
+
|
|
109
|
+
def list_schedules(state: ReplState, show_output = True, filter: Callable[[list[dict]], dict] = None) -> list[dict]:
|
|
110
|
+
with reaper(state, show_out=show_output) as requests:
|
|
111
|
+
if not (response := requests.get('repair_schedule')):
|
|
112
|
+
return
|
|
113
|
+
|
|
114
|
+
res = response.json()
|
|
115
|
+
if filter:
|
|
116
|
+
res = filter(res)
|
|
117
|
+
|
|
118
|
+
return res
|
|
119
|
+
|
|
120
|
+
def show_schedules_tabular(schedules: list[dict]):
|
|
121
|
+
log2(lines_to_tabular([f"{schedule['id']} {schedule['state']} {schedule['cluster_name']} {schedule['keyspace_name']}" for schedule in schedules], 'ID STATE CLUSTER KEYSPACE'))
|
|
122
|
+
|
|
123
|
+
def list_reaper_pods(sts_name: str, namespace: str) -> List[client.V1Pod]:
|
|
124
|
+
v1 = client.CoreV1Api()
|
|
125
|
+
|
|
126
|
+
# k8ssandra.io/reaper: cs-d0767a536f-cs-d0767a536f-reaper
|
|
127
|
+
groups = re.match(Config().get('reaper.pod.cluster-regex', r'(.*?-.*?-.*?-.*?)-.*'), sts_name)
|
|
128
|
+
label_selector = Config().get('reaper.pod.label-selector', 'k8ssandra.io/reaper={cluster}-reaper').replace('{cluster}', groups[1])
|
|
129
|
+
|
|
130
|
+
return cast(List[client.V1Pod], v1.list_namespaced_pod(namespace, label_selector=label_selector).items)
|
|
131
|
+
|
|
132
|
+
def cookie_header(state: ReplState, local_addr, remote_addr, show_output = True):
|
|
133
|
+
return {'Cookie': Reapers.login(state, local_addr, remote_addr, show_output=show_output)}
|
|
134
|
+
|
|
135
|
+
def login(state: ReplState, local_addr: str, remote_addr: str, show_output = True) -> str :
|
|
136
|
+
user, pw = state.user_pass(secret_path='reaper.secret')
|
|
137
|
+
|
|
138
|
+
response = requests.post(f'http://{local_addr}/login', headers={
|
|
139
|
+
'Accept': '*'
|
|
140
|
+
},data={
|
|
141
|
+
'username':user,
|
|
142
|
+
'password':pw})
|
|
143
|
+
if show_output:
|
|
144
|
+
log2(f'POST {remote_addr}/login')
|
|
145
|
+
log2(f' username={user}&password={pw}')
|
|
146
|
+
|
|
147
|
+
if int(response.status_code / 100) != 2:
|
|
148
|
+
if show_output:
|
|
149
|
+
log2("login failed")
|
|
150
|
+
return None
|
|
151
|
+
|
|
152
|
+
return response.headers['Set-Cookie']
|
|
153
|
+
|
|
154
|
+
def reaper_spec(state: ReplState) -> dict[str, any]:
|
|
155
|
+
if not (pod := Reapers.pod_name(state)):
|
|
156
|
+
return {}
|
|
157
|
+
|
|
158
|
+
user, pw = state.user_pass(secret_path='reaper.secret')
|
|
159
|
+
|
|
160
|
+
return {
|
|
161
|
+
'pod': pod,
|
|
162
|
+
'exec': f'kubectl exec -it {pod} -n {state.namespace} -- bash',
|
|
163
|
+
'forward': f'kubectl port-forward pods/{pod} -n {state.namespace} {Reapers.local_port()}:{Reapers.target_port()}',
|
|
164
|
+
'web-uri': f'http://localhost:{Reapers.local_port()}/webui',
|
|
165
|
+
'username': user,
|
|
166
|
+
'password': pw
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
def cached_schedule_ids(state: ReplState) -> list[str]:
|
|
170
|
+
if state.sts in Reapers.schedules_ids_by_cluster:
|
|
171
|
+
return Reapers.schedules_ids_by_cluster[state.sts]
|
|
172
|
+
|
|
173
|
+
if pod := Reapers.pod_name(state):
|
|
174
|
+
wait_log('Inspecting Cassandra Reaper...')
|
|
175
|
+
|
|
176
|
+
schedules = Reapers.schedule_ids(state, show_output = False)
|
|
177
|
+
Reapers.schedules_ids_by_cluster[state.sts] = schedules
|
|
178
|
+
|
|
179
|
+
return schedules
|
|
180
|
+
|
|
181
|
+
return []
|
|
182
|
+
|
|
183
|
+
def svc_name():
|
|
184
|
+
return Config().get('reaper.service-name', 'reaper-service')
|
|
185
|
+
|
|
186
|
+
def local_port():
|
|
187
|
+
return Config().get('reaper.port-forward.local-port', 9001)
|
|
188
|
+
|
|
189
|
+
def target_port():
|
|
190
|
+
return 8080
|
|
191
|
+
|
|
192
|
+
def svc_or_pod(state: ReplState, is_service: bool):
|
|
193
|
+
if is_service:
|
|
194
|
+
return Reapers.svc_name()
|
|
195
|
+
else:
|
|
196
|
+
return Reapers.pod_name(state)
|
adam/commands/repair/repair.py
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import click
|
|
2
2
|
|
|
3
|
-
from adam.commands.
|
|
3
|
+
from adam.commands.intermediate_command import IntermediateCommand
|
|
4
4
|
from .repair_run import RepairRun
|
|
5
5
|
from .repair_scan import RepairScan
|
|
6
6
|
from .repair_stop import RepairStop
|
|
7
7
|
from .repair_log import RepairLog
|
|
8
|
-
from adam.repl_state import ReplState, RequiredState
|
|
9
8
|
|
|
10
|
-
class Repair(
|
|
9
|
+
class Repair(IntermediateCommand):
|
|
11
10
|
COMMAND = 'repair'
|
|
12
11
|
|
|
13
12
|
# the singleton pattern
|
|
@@ -16,29 +15,12 @@ class Repair(Command):
|
|
|
16
15
|
|
|
17
16
|
return cls.instance
|
|
18
17
|
|
|
19
|
-
def __init__(self, successor: Command=None):
|
|
20
|
-
super().__init__(successor)
|
|
21
|
-
|
|
22
18
|
def command(self):
|
|
23
19
|
return Repair.COMMAND
|
|
24
20
|
|
|
25
|
-
def
|
|
26
|
-
return RequiredState.CLUSTER
|
|
27
|
-
|
|
28
|
-
def run(self, cmd: str, state: ReplState):
|
|
29
|
-
if not(args := self.args(cmd)):
|
|
30
|
-
return super().run(cmd, state)
|
|
31
|
-
|
|
32
|
-
return super().intermediate_run(cmd, state, args, Repair.cmd_list())
|
|
33
|
-
|
|
34
|
-
def cmd_list():
|
|
21
|
+
def cmd_list(self):
|
|
35
22
|
return [RepairRun(), RepairScan(), RepairStop(), RepairLog()]
|
|
36
23
|
|
|
37
|
-
def completion(self, state: ReplState):
|
|
38
|
-
if state.sts:
|
|
39
|
-
return super().completion(state)
|
|
40
|
-
return {}
|
|
41
|
-
|
|
42
24
|
class RepairCommandHelper(click.Command):
|
|
43
25
|
def get_help(self, ctx: click.Context):
|
|
44
|
-
|
|
26
|
+
IntermediateCommand.intermediate_help(super().get_help(ctx), Repair.COMMAND, Repair().cmd_list(), show_cluster_help=True)
|
|
@@ -24,14 +24,11 @@ class RepairLog(Command):
|
|
|
24
24
|
if not(args := self.args(cmd)):
|
|
25
25
|
return super().run(cmd, state)
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
ns = state.namespace
|
|
32
|
-
Jobs.get_logs('cassrepair-'+state.sts, ns)
|
|
27
|
+
with self.validate(args, state) as (args, state):
|
|
28
|
+
ns = state.namespace
|
|
29
|
+
Jobs.get_logs('cassrepair-'+state.sts, ns)
|
|
33
30
|
|
|
34
|
-
|
|
31
|
+
return state
|
|
35
32
|
|
|
36
33
|
def completion(self, state: ReplState):
|
|
37
34
|
if state.sts:
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
from adam.commands.command import Command
|
|
2
|
+
from adam.commands.reaper.utils_reaper import Reapers
|
|
2
3
|
from adam.utils_k8s.jobs import Jobs
|
|
3
4
|
from adam.utils_k8s.volumes import Volumes
|
|
4
5
|
from adam.repl_state import ReplState, RequiredState
|
|
5
6
|
from adam.config import Config
|
|
6
|
-
from adam.commands.reaper.reaper_session import ReaperSession
|
|
7
7
|
from adam.commands.reaper.reaper_runs_abort import ReaperRunsAbort
|
|
8
8
|
from adam.commands.reaper.reaper_schedule_stop import ReaperScheduleStop
|
|
9
9
|
from adam.utils import log2
|
|
@@ -30,37 +30,35 @@ class RepairRun(Command):
|
|
|
30
30
|
if not(args := self.args(cmd)):
|
|
31
31
|
return super().run(cmd, state)
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
replace = False
|
|
38
|
-
if len(args) == 1:
|
|
39
|
-
replace = args[0] == 'replace'
|
|
33
|
+
with self.validate(args, state) as (args, state):
|
|
34
|
+
replace = False
|
|
35
|
+
if len(args) == 1:
|
|
36
|
+
replace = args[0] == 'replace'
|
|
40
37
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
38
|
+
try:
|
|
39
|
+
log2("Stopping all reaper schedules...")
|
|
40
|
+
for schedule_id in Reapers.cached_schedule_ids(state):
|
|
41
|
+
ReaperScheduleStop().run(f'reaper stop schedule {schedule_id}', state)
|
|
42
|
+
log2("Aborting all reaper runs...")
|
|
43
|
+
state = ReaperRunsAbort().run('reaper abort runs', state)
|
|
44
|
+
except:
|
|
45
|
+
pass
|
|
48
46
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
47
|
+
image = Config().get('repair.image', 'ci-registry.c3iot.io/cloudops/cassrepair:2.0.11')
|
|
48
|
+
secret = Config().get('repair.secret', 'ciregistryc3iotio')
|
|
49
|
+
log_path = Config().get('repair.log-path', '/home/cassrepair/logs/')
|
|
50
|
+
user, _ = state.user_pass()
|
|
51
|
+
ns = state.namespace
|
|
52
|
+
env = Config().get('repair.env', {})
|
|
53
|
+
env["cluster"] = ns
|
|
54
|
+
env_from = {"username": user, "password": user}
|
|
55
|
+
pvc_name ='cassrepair-log-' + state.sts
|
|
56
|
+
Volumes.create_pvc(pvc_name, 30, ns)
|
|
57
|
+
if replace:
|
|
58
|
+
Jobs.delete('cassrepair-'+state.sts, ns)
|
|
59
|
+
Jobs.create('cassrepair-'+state.sts, ns, image, secret, env, env_from, 'cassrepair', pvc_name, log_path)
|
|
62
60
|
|
|
63
|
-
|
|
61
|
+
return state
|
|
64
62
|
|
|
65
63
|
def completion(self, state: ReplState):
|
|
66
64
|
if state.sts:
|
|
@@ -28,41 +28,38 @@ class RepairScan(Command):
|
|
|
28
28
|
if not(args := self.args(cmd)):
|
|
29
29
|
return super().run(cmd, state)
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
with self.validate(args, state) as (args, state):
|
|
32
|
+
n = "7"
|
|
33
|
+
if len(args) == 1:
|
|
34
|
+
n = str(args[0])
|
|
35
|
+
image = Config().get('repair.image', 'ci-registry.c3iot.io/cloudops/cassrepair:2.0.11')
|
|
36
|
+
secret = Config().get('repair.secret', 'ciregistryc3iotio')
|
|
37
|
+
log_path = secret = Config().get('repair.log-path', '/home/cassrepair/logs/')
|
|
38
|
+
ns = state.namespace
|
|
39
|
+
pvc_name ='cassrepair-log-' + state.sts
|
|
40
|
+
pod_name = 'repair-scan'
|
|
41
|
+
|
|
42
|
+
try:
|
|
43
|
+
Pods.create(ns, pod_name, image, ["sh", "-c", "tail -f /dev/null"],
|
|
44
|
+
secret=secret,
|
|
45
|
+
env={},
|
|
46
|
+
volume_name='cassrepair-log',
|
|
47
|
+
pvc_name=pvc_name,
|
|
48
|
+
mount_path='/home/cassrepair/logs/')
|
|
49
|
+
except Exception as e:
|
|
50
|
+
if e.status == 409:
|
|
51
|
+
log2(f"Pod {pod_name} already exists")
|
|
52
|
+
else:
|
|
53
|
+
log2("Exception when calling BatchV1Apii->create_namespaced_job: %s\n" % e)
|
|
54
|
+
|
|
55
|
+
Pods.wait_for_running(ns, pod_name, 'Waiting for the scanner pod to start up...')
|
|
56
|
+
|
|
57
|
+
try:
|
|
58
|
+
Pods.exec(pod_name, pod_name, ns, f"find {log_path} -type f -mtime -{n} -print0 | xargs -0 grep failed")
|
|
59
|
+
finally:
|
|
60
|
+
Pods.delete(pod_name, ns)
|
|
34
61
|
|
|
35
|
-
|
|
36
|
-
if len(args) == 1:
|
|
37
|
-
n = str(args[0])
|
|
38
|
-
image = Config().get('repair.image', 'ci-registry.c3iot.io/cloudops/cassrepair:2.0.11')
|
|
39
|
-
secret = Config().get('repair.secret', 'ciregistryc3iotio')
|
|
40
|
-
log_path = secret = Config().get('repair.log-path', '/home/cassrepair/logs/')
|
|
41
|
-
ns = state.namespace
|
|
42
|
-
pvc_name ='cassrepair-log-' + state.sts
|
|
43
|
-
pod_name = 'repair-scan'
|
|
44
|
-
|
|
45
|
-
try:
|
|
46
|
-
Pods.create(ns, pod_name, image, ["sh", "-c", "tail -f /dev/null"],
|
|
47
|
-
secret=secret,
|
|
48
|
-
env={},
|
|
49
|
-
volume_name='cassrepair-log',
|
|
50
|
-
pvc_name=pvc_name,
|
|
51
|
-
mount_path='/home/cassrepair/logs/')
|
|
52
|
-
except Exception as e:
|
|
53
|
-
if e.status == 409:
|
|
54
|
-
log2(f"Pod {pod_name} already exists")
|
|
55
|
-
else:
|
|
56
|
-
log2("Exception when calling BatchV1Apii->create_namespaced_job: %s\n" % e)
|
|
57
|
-
|
|
58
|
-
Pods.wait_for_running(ns, pod_name, 'Waiting for the scanner pod to start up...')
|
|
59
|
-
|
|
60
|
-
try:
|
|
61
|
-
Pods.exec(pod_name, pod_name, ns, f"find {log_path} -type f -mtime -{n} -print0 | xargs -0 grep failed")
|
|
62
|
-
finally:
|
|
63
|
-
Pods.delete(pod_name, ns)
|
|
64
|
-
|
|
65
|
-
return state
|
|
62
|
+
return state
|
|
66
63
|
|
|
67
64
|
def completion(self, state: ReplState):
|
|
68
65
|
if state.sts:
|
|
@@ -25,14 +25,11 @@ class RepairStop(Command):
|
|
|
25
25
|
if not(args := self.args(cmd)):
|
|
26
26
|
return super().run(cmd, state)
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
ns = state.namespace
|
|
33
|
-
Jobs.delete('cassrepair-'+state.sts, ns)
|
|
28
|
+
with self.validate(args, state) as (args, state):
|
|
29
|
+
ns = state.namespace
|
|
30
|
+
Jobs.delete('cassrepair-'+state.sts, ns)
|
|
34
31
|
|
|
35
|
-
|
|
32
|
+
return state
|
|
36
33
|
|
|
37
34
|
def completion(self, state: ReplState):
|
|
38
35
|
if state.sts:
|
adam/commands/report.py
CHANGED
|
@@ -22,36 +22,40 @@ class Report(Command):
|
|
|
22
22
|
def command(self):
|
|
23
23
|
return Report.COMMAND
|
|
24
24
|
|
|
25
|
+
def required(self):
|
|
26
|
+
return ReplState.NON_L
|
|
27
|
+
|
|
25
28
|
def run(self, cmd: str, state: ReplState):
|
|
26
29
|
if not(args := self.args(cmd)):
|
|
27
30
|
return super().run(cmd, state)
|
|
28
31
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
with self.validate(args, state) as (args, state):
|
|
33
|
+
output: dict[str, any] = {}
|
|
34
|
+
|
|
35
|
+
if state.in_repl:
|
|
36
|
+
args, show = Command.extract_options(args, ['-s', '--show'])
|
|
33
37
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
+
args, redirect = Command.extract_options(args, ['>'])
|
|
39
|
+
if not redirect or not args:
|
|
40
|
+
log2('Please specify file name: e.g. report > /tmp/report.log')
|
|
41
|
+
return 'no-report-destination'
|
|
38
42
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
results = run_checks(state.sts, state.namespace, state.pod, show_out=show)
|
|
44
|
+
output = CheckResult.report(results)
|
|
45
|
+
with open(args[0], "w") as json_file:
|
|
46
|
+
json.dump(output, json_file, indent=2)
|
|
47
|
+
log2(f'Report stored in {args[0]}.')
|
|
48
|
+
else:
|
|
49
|
+
args, show = Command.extract_options(args, ['-s', '--show'])
|
|
46
50
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
51
|
+
results = run_checks(state.sts, state.namespace, state.pod, show_out=show)
|
|
52
|
+
output = CheckResult.report(results)
|
|
53
|
+
click.echo(json.dumps(output, indent=2))
|
|
50
54
|
|
|
51
|
-
|
|
55
|
+
return output
|
|
52
56
|
|
|
53
|
-
def completion(self,
|
|
54
|
-
return
|
|
57
|
+
def completion(self, state: ReplState):
|
|
58
|
+
return super().completion(state, {">": None})
|
|
55
59
|
|
|
56
60
|
def help(self, _: ReplState):
|
|
57
61
|
return f"{Report.COMMAND} > <file-name>\t generate report"
|