kaqing 2.0.14__py3-none-any.whl → 2.0.189__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of kaqing might be problematic. Click here for more details.
- adam/__init__.py +0 -2
- adam/app_session.py +9 -12
- adam/apps.py +20 -6
- adam/batch.py +16 -6
- adam/checks/check_utils.py +19 -49
- adam/checks/compactionstats.py +1 -1
- adam/checks/cpu.py +9 -3
- adam/checks/cpu_metrics.py +52 -0
- adam/checks/disk.py +3 -4
- adam/checks/gossip.py +1 -1
- adam/checks/memory.py +3 -3
- adam/checks/status.py +1 -1
- adam/columns/columns.py +3 -1
- adam/columns/cpu.py +3 -1
- adam/columns/cpu_metrics.py +22 -0
- adam/columns/memory.py +3 -4
- adam/commands/__init__.py +24 -0
- adam/commands/alter_tables.py +66 -0
- adam/commands/app/app.py +38 -0
- adam/commands/{app_ping.py → app/app_ping.py} +8 -14
- adam/commands/app/show_app_actions.py +49 -0
- adam/commands/{show → app}/show_app_id.py +9 -12
- adam/commands/{show → app}/show_app_queues.py +8 -14
- adam/commands/app/utils_app.py +106 -0
- adam/commands/audit/__init__.py +0 -0
- adam/commands/audit/audit.py +67 -0
- adam/commands/audit/audit_repair_tables.py +72 -0
- adam/commands/audit/audit_run.py +50 -0
- adam/commands/audit/completions_l.py +15 -0
- adam/commands/audit/show_last10.py +36 -0
- adam/commands/audit/show_slow10.py +36 -0
- adam/commands/audit/show_top10.py +36 -0
- adam/commands/audit/utils_show_top10.py +71 -0
- adam/commands/bash/__init__.py +5 -0
- adam/commands/bash/bash.py +36 -0
- adam/commands/bash/bash_completer.py +93 -0
- adam/commands/bash/utils_bash.py +16 -0
- adam/commands/cat.py +36 -0
- adam/commands/cd.py +14 -88
- adam/commands/check.py +18 -21
- adam/commands/cli_commands.py +11 -7
- adam/commands/clipboard_copy.py +87 -0
- adam/commands/code.py +57 -0
- adam/commands/command.py +220 -19
- adam/commands/commands_utils.py +28 -31
- adam/commands/cql/__init__.py +0 -0
- adam/commands/cql/completions_c.py +28 -0
- adam/commands/{cqlsh.py → cql/cqlsh.py} +13 -32
- adam/commands/cql/utils_cql.py +305 -0
- adam/commands/deploy/code_start.py +7 -10
- adam/commands/deploy/code_stop.py +4 -21
- adam/commands/deploy/code_utils.py +5 -5
- adam/commands/deploy/deploy.py +4 -40
- adam/commands/deploy/deploy_frontend.py +15 -18
- adam/commands/deploy/deploy_pg_agent.py +4 -7
- adam/commands/deploy/deploy_pod.py +74 -77
- adam/commands/deploy/deploy_utils.py +16 -26
- adam/commands/deploy/undeploy.py +4 -40
- adam/commands/deploy/undeploy_frontend.py +5 -8
- adam/commands/deploy/undeploy_pg_agent.py +7 -8
- adam/commands/deploy/undeploy_pod.py +16 -17
- adam/commands/devices/__init__.py +0 -0
- adam/commands/devices/device.py +149 -0
- adam/commands/devices/device_app.py +163 -0
- adam/commands/devices/device_auit_log.py +49 -0
- adam/commands/devices/device_cass.py +179 -0
- adam/commands/devices/device_export.py +87 -0
- adam/commands/devices/device_postgres.py +160 -0
- adam/commands/devices/devices.py +25 -0
- adam/commands/download_file.py +47 -0
- adam/commands/exit.py +1 -4
- adam/commands/export/__init__.py +0 -0
- adam/commands/export/clean_up_all_export_sessions.py +37 -0
- adam/commands/export/clean_up_export_sessions.py +39 -0
- adam/commands/export/completions_x.py +11 -0
- adam/commands/export/download_export_session.py +40 -0
- adam/commands/export/drop_export_database.py +39 -0
- adam/commands/export/drop_export_databases.py +37 -0
- adam/commands/export/export.py +37 -0
- adam/commands/export/export_databases.py +246 -0
- adam/commands/export/export_select.py +34 -0
- adam/commands/export/export_sessions.py +209 -0
- adam/commands/export/export_use.py +49 -0
- adam/commands/export/export_x_select.py +48 -0
- adam/commands/export/exporter.py +332 -0
- adam/commands/export/import_files.py +44 -0
- adam/commands/export/import_session.py +44 -0
- adam/commands/export/importer.py +81 -0
- adam/commands/export/importer_athena.py +148 -0
- adam/commands/export/importer_sqlite.py +67 -0
- adam/commands/export/show_column_counts.py +45 -0
- adam/commands/export/show_export_databases.py +39 -0
- adam/commands/export/show_export_session.py +39 -0
- adam/commands/export/show_export_sessions.py +37 -0
- adam/commands/export/utils_export.py +344 -0
- adam/commands/find_files.py +51 -0
- adam/commands/find_processes.py +76 -0
- adam/commands/head.py +36 -0
- adam/commands/help.py +14 -9
- adam/commands/intermediate_command.py +52 -0
- adam/commands/issues.py +14 -40
- adam/commands/kubectl.py +38 -0
- adam/commands/login.py +26 -25
- adam/commands/logs.py +5 -7
- adam/commands/ls.py +11 -115
- adam/commands/medusa/medusa.py +4 -46
- adam/commands/medusa/medusa_backup.py +22 -29
- adam/commands/medusa/medusa_restore.py +51 -49
- adam/commands/medusa/medusa_show_backupjobs.py +20 -21
- adam/commands/medusa/medusa_show_restorejobs.py +16 -21
- adam/commands/medusa/utils_medusa.py +15 -0
- adam/commands/nodetool.py +8 -17
- adam/commands/param_get.py +11 -14
- adam/commands/param_set.py +9 -13
- adam/commands/postgres/completions_p.py +22 -0
- adam/commands/postgres/postgres.py +49 -73
- adam/commands/postgres/postgres_databases.py +270 -0
- adam/commands/postgres/postgres_ls.py +4 -8
- adam/commands/postgres/postgres_preview.py +5 -9
- adam/commands/postgres/utils_postgres.py +79 -0
- adam/commands/preview_table.py +10 -69
- adam/commands/pwd.py +14 -43
- adam/commands/reaper/reaper.py +6 -49
- adam/commands/reaper/reaper_forward.py +49 -56
- adam/commands/reaper/reaper_forward_session.py +6 -0
- adam/commands/reaper/reaper_forward_stop.py +10 -16
- adam/commands/reaper/reaper_restart.py +8 -15
- adam/commands/reaper/reaper_run_abort.py +8 -33
- adam/commands/reaper/reaper_runs.py +43 -58
- adam/commands/reaper/reaper_runs_abort.py +29 -49
- adam/commands/reaper/reaper_schedule_activate.py +14 -33
- adam/commands/reaper/reaper_schedule_start.py +9 -33
- adam/commands/reaper/reaper_schedule_stop.py +9 -33
- adam/commands/reaper/reaper_schedules.py +4 -14
- adam/commands/reaper/reaper_status.py +8 -16
- adam/commands/reaper/utils_reaper.py +203 -0
- adam/commands/repair/repair.py +4 -46
- adam/commands/repair/repair_log.py +6 -12
- adam/commands/repair/repair_run.py +29 -36
- adam/commands/repair/repair_scan.py +33 -41
- adam/commands/repair/repair_stop.py +6 -13
- adam/commands/report.py +25 -21
- adam/commands/restart.py +27 -28
- adam/commands/rollout.py +20 -25
- adam/commands/shell.py +12 -4
- adam/commands/show/show.py +15 -46
- adam/commands/show/show_adam.py +3 -3
- adam/commands/show/show_cassandra_repairs.py +37 -0
- adam/commands/show/show_cassandra_status.py +48 -52
- adam/commands/show/show_cassandra_version.py +5 -18
- adam/commands/show/show_cli_commands.py +56 -0
- adam/commands/show/show_host.py +33 -0
- adam/commands/show/show_login.py +23 -27
- adam/commands/show/show_params.py +2 -5
- adam/commands/show/show_processes.py +18 -21
- adam/commands/show/show_storage.py +11 -20
- adam/commands/watch.py +27 -30
- adam/config.py +8 -6
- adam/embedded_params.py +1 -1
- adam/log.py +4 -4
- adam/pod_exec_result.py +13 -5
- adam/repl.py +136 -120
- adam/repl_commands.py +66 -24
- adam/repl_session.py +8 -1
- adam/repl_state.py +343 -73
- adam/sql/__init__.py +0 -0
- adam/sql/lark_completer.py +284 -0
- adam/sql/lark_parser.py +604 -0
- adam/sql/sql_completer.py +118 -0
- adam/sql/sql_state_machine.py +630 -0
- adam/sql/term_completer.py +76 -0
- adam/sso/authn_ad.py +7 -9
- adam/sso/authn_okta.py +4 -6
- adam/sso/cred_cache.py +4 -6
- adam/sso/idp.py +10 -13
- adam/utils.py +539 -11
- adam/utils_athena.py +145 -0
- adam/utils_audits.py +102 -0
- adam/utils_issues.py +32 -0
- adam/utils_k8s/__init__.py +0 -0
- adam/utils_k8s/app_clusters.py +28 -0
- adam/utils_k8s/app_pods.py +36 -0
- adam/utils_k8s/cassandra_clusters.py +44 -0
- adam/{k8s_utils → utils_k8s}/cassandra_nodes.py +12 -5
- adam/{k8s_utils → utils_k8s}/custom_resources.py +16 -17
- adam/{k8s_utils → utils_k8s}/deployment.py +2 -2
- adam/{k8s_utils → utils_k8s}/ingresses.py +2 -2
- adam/{k8s_utils → utils_k8s}/jobs.py +7 -11
- adam/utils_k8s/k8s.py +96 -0
- adam/{k8s_utils → utils_k8s}/kube_context.py +3 -3
- adam/{k8s_utils → utils_k8s}/pods.py +132 -83
- adam/{k8s_utils → utils_k8s}/secrets.py +7 -3
- adam/{k8s_utils → utils_k8s}/service_accounts.py +5 -4
- adam/{k8s_utils → utils_k8s}/services.py +2 -2
- adam/{k8s_utils → utils_k8s}/statefulsets.py +9 -16
- adam/utils_local.py +4 -0
- adam/utils_net.py +24 -0
- adam/utils_repl/__init__.py +0 -0
- adam/utils_repl/appendable_completer.py +6 -0
- adam/utils_repl/automata_completer.py +48 -0
- adam/utils_repl/repl_completer.py +172 -0
- adam/utils_repl/state_machine.py +173 -0
- adam/utils_sqlite.py +137 -0
- adam/version.py +1 -1
- {kaqing-2.0.14.dist-info → kaqing-2.0.189.dist-info}/METADATA +1 -1
- kaqing-2.0.189.dist-info/RECORD +253 -0
- kaqing-2.0.189.dist-info/top_level.txt +2 -0
- teddy/__init__.py +0 -0
- teddy/lark_parser.py +436 -0
- teddy/lark_parser2.py +618 -0
- adam/commands/app.py +0 -67
- adam/commands/bash.py +0 -87
- adam/commands/cp.py +0 -95
- adam/commands/cql_utils.py +0 -53
- adam/commands/devices.py +0 -89
- adam/commands/postgres/postgres_session.py +0 -247
- adam/commands/reaper/reaper_session.py +0 -159
- adam/commands/show/show_app_actions.py +0 -53
- adam/commands/show/show_commands.py +0 -61
- adam/commands/show/show_repairs.py +0 -47
- adam/k8s_utils/cassandra_clusters.py +0 -48
- kaqing-2.0.14.dist-info/RECORD +0 -167
- kaqing-2.0.14.dist-info/top_level.txt +0 -1
- /adam/{k8s_utils → commands/app}/__init__.py +0 -0
- /adam/{k8s_utils → utils_k8s}/config_maps.py +0 -0
- /adam/{k8s_utils → utils_k8s}/volumes.py +0 -0
- {kaqing-2.0.14.dist-info → kaqing-2.0.189.dist-info}/WHEEL +0 -0
- {kaqing-2.0.14.dist-info → kaqing-2.0.189.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from adam.commands import validate_args
|
|
2
|
+
from adam.commands.command import Command
|
|
3
|
+
from adam.commands.export.export_sessions import ExportSessions
|
|
4
|
+
from adam.commands.export.exporter import export
|
|
5
|
+
from adam.commands.export.utils_export import state_with_pod
|
|
6
|
+
from adam.repl_state import ReplState, RequiredState
|
|
7
|
+
|
|
8
|
+
class ImportSession(Command):
|
|
9
|
+
COMMAND = 'import session'
|
|
10
|
+
|
|
11
|
+
# the singleton pattern
|
|
12
|
+
def __new__(cls, *args, **kwargs):
|
|
13
|
+
if not hasattr(cls, 'instance'): cls.instance = super(ImportSession, cls).__new__(cls)
|
|
14
|
+
|
|
15
|
+
return cls.instance
|
|
16
|
+
|
|
17
|
+
def __init__(self, successor: Command=None):
|
|
18
|
+
super().__init__(successor)
|
|
19
|
+
|
|
20
|
+
def command(self):
|
|
21
|
+
return ImportSession.COMMAND
|
|
22
|
+
|
|
23
|
+
def required(self):
|
|
24
|
+
return RequiredState.CLUSTER_OR_POD
|
|
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 validate_args(args, state, name='export session') as spec:
|
|
32
|
+
with state_with_pod(state) as state:
|
|
33
|
+
with export(state) as exporter:
|
|
34
|
+
return exporter.import_session(spec)
|
|
35
|
+
|
|
36
|
+
def completion(self, state: ReplState):
|
|
37
|
+
# warm up cache
|
|
38
|
+
# ExportSessions.export_session_names(state.sts, state.pod, state.namespace)
|
|
39
|
+
# ExportSessions.export_session_names(state.sts, state.pod, state.namespace, export_state='pending_import')
|
|
40
|
+
|
|
41
|
+
return {}
|
|
42
|
+
|
|
43
|
+
def help(self, _: ReplState):
|
|
44
|
+
return f'{ImportSession.COMMAND} <export-session-name>\t import files in session to Athena or SQLite'
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
from abc import abstractmethod
|
|
2
|
+
|
|
3
|
+
from adam.commands.export.utils_export import csv_dir
|
|
4
|
+
from adam.config import Config
|
|
5
|
+
from adam.repl_state import ReplState
|
|
6
|
+
from adam.utils import ing
|
|
7
|
+
from adam.utils_k8s.cassandra_nodes import CassandraNodes
|
|
8
|
+
from adam.utils_k8s.pods import log_prefix
|
|
9
|
+
|
|
10
|
+
class Importer:
|
|
11
|
+
@abstractmethod
|
|
12
|
+
def prefix(self):
|
|
13
|
+
pass
|
|
14
|
+
|
|
15
|
+
@abstractmethod
|
|
16
|
+
def import_from_csv(self, state: ReplState, from_session: str, keyspace: str, table: str, target_table: str, columns: str, multi_tables = True, create_db = False):
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
@abstractmethod
|
|
20
|
+
def import_from_local_csv(self, state: ReplState,
|
|
21
|
+
keyspace: str, table: str, target_table: str, columns: str,
|
|
22
|
+
csv_file: str,
|
|
23
|
+
multi_tables = True, create_db = False):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def move_to_done(self, state: ReplState, from_session: str, keyspace: str, target_table: str):
|
|
27
|
+
pod = state.pod
|
|
28
|
+
namespace = state.namespace
|
|
29
|
+
to_session = state.export_session
|
|
30
|
+
log_file = f'{log_prefix()}-{from_session}_{keyspace}.{target_table}.log.pending_import'
|
|
31
|
+
|
|
32
|
+
to = f'{log_prefix()}-{to_session}_{keyspace}.{target_table}.log.done'
|
|
33
|
+
|
|
34
|
+
CassandraNodes.exec(pod, namespace, f'mv {log_file} {to}', show_out=Config().is_debug(), shell='bash')
|
|
35
|
+
|
|
36
|
+
return to, to_session
|
|
37
|
+
|
|
38
|
+
def prefix_adjusted_session(self, session: str):
|
|
39
|
+
if not session.startswith(self.prefix()):
|
|
40
|
+
return f'{self.prefix()}{session[1:]}'
|
|
41
|
+
|
|
42
|
+
return session
|
|
43
|
+
|
|
44
|
+
def remove_csv(self, state: ReplState, from_session: str, table: str, target_table: str, multi_tables = True):
|
|
45
|
+
pod = state.pod
|
|
46
|
+
namespace = state.namespace
|
|
47
|
+
|
|
48
|
+
with ing(f'[{from_session}] Cleaning up temporary files', suppress_log=multi_tables):
|
|
49
|
+
CassandraNodes.exec(pod, namespace, f'rm -rf {self.csv_file(from_session, table, target_table)}', show_out=Config().is_debug(), shell='bash')
|
|
50
|
+
|
|
51
|
+
def db(self, session: str, keyspace: str):
|
|
52
|
+
return f'{session}_{keyspace}'
|
|
53
|
+
|
|
54
|
+
def csv_file(self, session: str, table: str, target_table: str):
|
|
55
|
+
return f'{csv_dir()}/{session}_{target_table}/{table}.csv'
|
|
56
|
+
|
|
57
|
+
def prefix_from_importer(importer: str = ''):
|
|
58
|
+
if not importer:
|
|
59
|
+
return ''
|
|
60
|
+
|
|
61
|
+
prefix = 's'
|
|
62
|
+
|
|
63
|
+
if importer == 'athena':
|
|
64
|
+
prefix = 'e'
|
|
65
|
+
elif importer == 'csv':
|
|
66
|
+
prefix = 'c'
|
|
67
|
+
|
|
68
|
+
return prefix
|
|
69
|
+
|
|
70
|
+
def importer_from_session(session: str):
|
|
71
|
+
if not session:
|
|
72
|
+
return None
|
|
73
|
+
|
|
74
|
+
importer = 'csv'
|
|
75
|
+
|
|
76
|
+
if session.startswith('s'):
|
|
77
|
+
importer = 'sqlite'
|
|
78
|
+
elif session.startswith('e'):
|
|
79
|
+
importer = 'athena'
|
|
80
|
+
|
|
81
|
+
return importer
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import boto3
|
|
3
|
+
|
|
4
|
+
from adam.commands.export.export_databases import export_db
|
|
5
|
+
from adam.commands.export.importer import Importer
|
|
6
|
+
from adam.config import Config
|
|
7
|
+
from adam.repl_state import ReplState
|
|
8
|
+
from adam.utils import GeneratorStream, bytes_generator_from_file, debug, log2, ing
|
|
9
|
+
from adam.utils_athena import Athena
|
|
10
|
+
from adam.utils_k8s.pods import Pods
|
|
11
|
+
|
|
12
|
+
class AthenaImporter(Importer):
|
|
13
|
+
def ping():
|
|
14
|
+
session = boto3.session.Session()
|
|
15
|
+
credentials = session.get_credentials()
|
|
16
|
+
|
|
17
|
+
return credentials is not None
|
|
18
|
+
|
|
19
|
+
def prefix(self):
|
|
20
|
+
return 'e'
|
|
21
|
+
|
|
22
|
+
def import_from_csv(self, state: ReplState, from_session: str,
|
|
23
|
+
keyspace: str, table: str, target_table: str, columns: str,
|
|
24
|
+
multi_tables = True, create_db = False):
|
|
25
|
+
csv_file = self.csv_file(from_session, table, target_table)
|
|
26
|
+
pod = state.pod
|
|
27
|
+
namespace = state.namespace
|
|
28
|
+
to_session = state.export_session
|
|
29
|
+
database = self.db(to_session, keyspace)
|
|
30
|
+
|
|
31
|
+
succeeded = False
|
|
32
|
+
try:
|
|
33
|
+
bucket = Config().get('export.bucket', 'c3.ops--qing')
|
|
34
|
+
|
|
35
|
+
with ing(f'[{to_session}] Uploading to S3', suppress_log=multi_tables):
|
|
36
|
+
bytes = Pods.read_file(pod, 'cassandra', namespace, csv_file)
|
|
37
|
+
|
|
38
|
+
s3 = boto3.client('s3')
|
|
39
|
+
s3.upload_fileobj(GeneratorStream(bytes), bucket, f'export/{database}/{keyspace}/{target_table}/{table}.csv')
|
|
40
|
+
|
|
41
|
+
self.create_schema(to_session, bucket, database, keyspace, table, columns, multi_tables, create_db)
|
|
42
|
+
|
|
43
|
+
to, _ = self.move_to_done(state, from_session, keyspace, target_table)
|
|
44
|
+
|
|
45
|
+
succeeded = True
|
|
46
|
+
|
|
47
|
+
return to, to_session
|
|
48
|
+
finally:
|
|
49
|
+
if succeeded:
|
|
50
|
+
self.remove_csv(state, from_session, table, target_table, multi_tables)
|
|
51
|
+
Athena.clear_cache()
|
|
52
|
+
|
|
53
|
+
if not multi_tables:
|
|
54
|
+
with export_db(state) as dbs:
|
|
55
|
+
dbs.sql(f'select * from {database}.{target_table} limit 10')
|
|
56
|
+
|
|
57
|
+
def import_from_local_csv(self, state: ReplState,
|
|
58
|
+
keyspace: str, table: str, csv_file: str, multi_tables = True, create_db = False):
|
|
59
|
+
to_session = state.export_session
|
|
60
|
+
database = self.db(to_session, keyspace)
|
|
61
|
+
|
|
62
|
+
succeeded = False
|
|
63
|
+
try:
|
|
64
|
+
columns = None
|
|
65
|
+
with open(csv_file, 'r') as f:
|
|
66
|
+
columns = f.readline()
|
|
67
|
+
|
|
68
|
+
bucket = Config().get('export.bucket', 'c3.ops--qing')
|
|
69
|
+
|
|
70
|
+
with ing(f'[{to_session}] Uploading to S3', suppress_log=multi_tables):
|
|
71
|
+
bytes = bytes_generator_from_file(csv_file)
|
|
72
|
+
|
|
73
|
+
s3 = boto3.client('s3')
|
|
74
|
+
s3.upload_fileobj(GeneratorStream(bytes), bucket, f'export/{database}/{keyspace}/{table}/{os.path.basename(csv_file)}')
|
|
75
|
+
|
|
76
|
+
self.create_schema(to_session, bucket, database, keyspace, table, columns, multi_tables, create_db)
|
|
77
|
+
# msg: str = None
|
|
78
|
+
# if create_db:
|
|
79
|
+
# msg = f"[{to_session}] Creating database {database}"
|
|
80
|
+
# else:
|
|
81
|
+
# msg = f"[{to_session}] Creating table {target_table}"
|
|
82
|
+
# with ing(msg, suppress_log=multi_tables):
|
|
83
|
+
# query = f'CREATE DATABASE IF NOT EXISTS {database};'
|
|
84
|
+
# debug(query)
|
|
85
|
+
# Athena.query(query, 'default')
|
|
86
|
+
|
|
87
|
+
# query = f'DROP TABLE IF EXISTS {target_table};'
|
|
88
|
+
# debug(query)
|
|
89
|
+
# Athena.query(query, database)
|
|
90
|
+
|
|
91
|
+
# athena_columns = ', '.join([f'{c} string' for c in columns.split(',')])
|
|
92
|
+
# query = f'CREATE EXTERNAL TABLE IF NOT EXISTS {target_table}(\n' + \
|
|
93
|
+
# f' {athena_columns})\n' + \
|
|
94
|
+
# "ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.OpenCSVSerde'\n" + \
|
|
95
|
+
# 'WITH SERDEPROPERTIES (\n' + \
|
|
96
|
+
# ' "separatorChar" = ",",\n' + \
|
|
97
|
+
# ' "quoteChar" = "\\"")\n' + \
|
|
98
|
+
# f"LOCATION 's3://{bucket}/export/{database}/{keyspace}/{target_table}'\n" + \
|
|
99
|
+
# 'TBLPROPERTIES ("skip.header.line.count"="1");'
|
|
100
|
+
# debug(query)
|
|
101
|
+
# try:
|
|
102
|
+
# Athena.query(query, database)
|
|
103
|
+
# except Exception as e:
|
|
104
|
+
# log2(f'*** Failed query:\n{query}')
|
|
105
|
+
# raise e
|
|
106
|
+
|
|
107
|
+
succeeded = True
|
|
108
|
+
|
|
109
|
+
return csv_file, to_session
|
|
110
|
+
finally:
|
|
111
|
+
if succeeded:
|
|
112
|
+
Athena.clear_cache()
|
|
113
|
+
|
|
114
|
+
if not multi_tables:
|
|
115
|
+
with export_db(state) as dbs:
|
|
116
|
+
dbs.sql(f'select * from {database}.{table} limit 10')
|
|
117
|
+
|
|
118
|
+
def create_schema(self, to_session: str, bucket: str, database: str, keyspace: str, table: str, columns: list[str], multi_tables: bool, create_db = False):
|
|
119
|
+
msg: str = None
|
|
120
|
+
if create_db:
|
|
121
|
+
msg = f"[{to_session}] Creating database {database}"
|
|
122
|
+
else:
|
|
123
|
+
msg = f"[{to_session}] Creating table {table}"
|
|
124
|
+
|
|
125
|
+
with ing(msg, suppress_log=multi_tables):
|
|
126
|
+
query = f'CREATE DATABASE IF NOT EXISTS {database};'
|
|
127
|
+
debug(query)
|
|
128
|
+
Athena.query(query, 'default')
|
|
129
|
+
|
|
130
|
+
query = f'DROP TABLE IF EXISTS {table};'
|
|
131
|
+
debug(query)
|
|
132
|
+
Athena.query(query, database)
|
|
133
|
+
|
|
134
|
+
athena_columns = ', '.join([f'{c} string' for c in columns.split(',')])
|
|
135
|
+
query = f'CREATE EXTERNAL TABLE IF NOT EXISTS {table}(\n' + \
|
|
136
|
+
f' {athena_columns})\n' + \
|
|
137
|
+
"ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.OpenCSVSerde'\n" + \
|
|
138
|
+
'WITH SERDEPROPERTIES (\n' + \
|
|
139
|
+
' "separatorChar" = ",",\n' + \
|
|
140
|
+
' "quoteChar" = "\\"")\n' + \
|
|
141
|
+
f"LOCATION 's3://{bucket}/export/{database}/{keyspace}/{table}'\n" + \
|
|
142
|
+
'TBLPROPERTIES ("skip.header.line.count"="1");'
|
|
143
|
+
debug(query)
|
|
144
|
+
try:
|
|
145
|
+
Athena.query(query, database)
|
|
146
|
+
except Exception as e:
|
|
147
|
+
log2(f'*** Failed query:\n{query}')
|
|
148
|
+
raise e
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import pandas
|
|
2
|
+
|
|
3
|
+
from adam.commands.export.export_databases import export_db
|
|
4
|
+
from adam.commands.export.importer import Importer
|
|
5
|
+
from adam.repl_state import ReplState
|
|
6
|
+
from adam.utils import GeneratorStream, bytes_generator_from_file, ing
|
|
7
|
+
from adam.utils_k8s.pods import Pods
|
|
8
|
+
from adam.utils_sqlite import SQLite, sqlite
|
|
9
|
+
|
|
10
|
+
class SqliteImporter(Importer):
|
|
11
|
+
def prefix(self):
|
|
12
|
+
return 's'
|
|
13
|
+
|
|
14
|
+
def import_from_csv(self, state: ReplState, from_session: str,
|
|
15
|
+
keyspace: str, table: str, target_table: str, columns: str,
|
|
16
|
+
multi_tables = True, create_db = False):
|
|
17
|
+
csv_file = self.csv_file(from_session, table, target_table)
|
|
18
|
+
pod = state.pod
|
|
19
|
+
namespace = state.namespace
|
|
20
|
+
to_session = state.export_session
|
|
21
|
+
|
|
22
|
+
succeeded = False
|
|
23
|
+
try:
|
|
24
|
+
with ing(f'[{to_session}] Uploading to Sqlite', suppress_log=multi_tables):
|
|
25
|
+
# create a connection to single keyspace
|
|
26
|
+
with sqlite(to_session, keyspace) as conn:
|
|
27
|
+
bytes = Pods.read_file(pod, 'cassandra', namespace, csv_file)
|
|
28
|
+
df = pandas.read_csv(GeneratorStream(bytes))
|
|
29
|
+
df.to_sql(target_table, conn, index=False, if_exists='replace')
|
|
30
|
+
|
|
31
|
+
to, _ = self.move_to_done(state, from_session, keyspace, target_table)
|
|
32
|
+
|
|
33
|
+
succeeded = True
|
|
34
|
+
|
|
35
|
+
return to, to_session
|
|
36
|
+
finally:
|
|
37
|
+
if succeeded:
|
|
38
|
+
self.remove_csv(state, from_session, table, target_table, multi_tables)
|
|
39
|
+
SQLite.clear_cache()
|
|
40
|
+
|
|
41
|
+
if not multi_tables:
|
|
42
|
+
with export_db(state) as dbs:
|
|
43
|
+
dbs.sql(f'select * from {keyspace}.{target_table} limit 10')
|
|
44
|
+
|
|
45
|
+
def import_from_local_csv(self, state: ReplState,
|
|
46
|
+
keyspace: str, table: str, csv_file: str, multi_tables = True, create_db = False):
|
|
47
|
+
to_session = state.export_session
|
|
48
|
+
|
|
49
|
+
succeeded = False
|
|
50
|
+
try:
|
|
51
|
+
with ing(f'[{to_session}] Uploading to Sqlite', suppress_log=multi_tables):
|
|
52
|
+
# create a connection to single keyspace
|
|
53
|
+
with sqlite(to_session, keyspace) as conn:
|
|
54
|
+
bytes = bytes_generator_from_file(csv_file)
|
|
55
|
+
df = pandas.read_csv(GeneratorStream(bytes))
|
|
56
|
+
df.to_sql(table, conn, index=False, if_exists='replace')
|
|
57
|
+
|
|
58
|
+
succeeded = True
|
|
59
|
+
|
|
60
|
+
return csv_file, to_session
|
|
61
|
+
finally:
|
|
62
|
+
if succeeded:
|
|
63
|
+
SQLite.clear_cache()
|
|
64
|
+
|
|
65
|
+
if not multi_tables:
|
|
66
|
+
with export_db(state) as dbs:
|
|
67
|
+
dbs.sql(f'select * from {keyspace}.{table} limit 10')
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
from adam.commands import extract_trailing_options, validate_args
|
|
2
|
+
from adam.commands.command import Command
|
|
3
|
+
from adam.commands.cql.utils_cql import cassandra_table_names
|
|
4
|
+
from adam.commands.export.export_databases import ExportDatabases, export_db
|
|
5
|
+
from adam.config import Config
|
|
6
|
+
from adam.repl_state import ReplState, RequiredState
|
|
7
|
+
|
|
8
|
+
class ShowColumnCounts(Command):
|
|
9
|
+
COMMAND = 'show column counts on'
|
|
10
|
+
|
|
11
|
+
# the singleton pattern
|
|
12
|
+
def __new__(cls, *args, **kwargs):
|
|
13
|
+
if not hasattr(cls, 'instance'): cls.instance = super(ShowColumnCounts, cls).__new__(cls)
|
|
14
|
+
|
|
15
|
+
return cls.instance
|
|
16
|
+
|
|
17
|
+
def __init__(self, successor: Command=None):
|
|
18
|
+
super().__init__(successor)
|
|
19
|
+
|
|
20
|
+
def command(self):
|
|
21
|
+
return ShowColumnCounts.COMMAND
|
|
22
|
+
|
|
23
|
+
def required(self):
|
|
24
|
+
return RequiredState.EXPORT_DB
|
|
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_trailing_options(args, '&') as (args, backgrounded):
|
|
32
|
+
with validate_args(args, state, name='SQL statement') as table:
|
|
33
|
+
with export_db(state) as dbs:
|
|
34
|
+
query = Config().get(f'export.column_counts_query', 'select id, count(id) as columns from {table} group by id')
|
|
35
|
+
query = query.replace('{table}', table)
|
|
36
|
+
dbs.sql(query, state.export_session, backgrounded=backgrounded)
|
|
37
|
+
|
|
38
|
+
return state
|
|
39
|
+
|
|
40
|
+
def completion(self, state: ReplState):
|
|
41
|
+
return super().completion(state, lambda: {t: None for t in ExportDatabases.table_names(state.export_session)}, auto_key='x.tables')
|
|
42
|
+
# return {}
|
|
43
|
+
|
|
44
|
+
def help(self, _: ReplState):
|
|
45
|
+
return f'{ShowColumnCounts.COMMAND} <export-table-name>\t show column count per id'
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
from adam.commands.command import Command
|
|
2
|
+
from adam.commands.devices.device_export import DeviceExport
|
|
3
|
+
from adam.commands.export.export_databases import export_db
|
|
4
|
+
from adam.repl_state import ReplState
|
|
5
|
+
|
|
6
|
+
class ShowExportDatabases(Command):
|
|
7
|
+
COMMAND = 'show export databases'
|
|
8
|
+
|
|
9
|
+
# the singleton pattern
|
|
10
|
+
def __new__(cls, *args, **kwargs):
|
|
11
|
+
if not hasattr(cls, 'instance'): cls.instance = super(ShowExportDatabases, cls).__new__(cls)
|
|
12
|
+
|
|
13
|
+
return cls.instance
|
|
14
|
+
|
|
15
|
+
def __init__(self, successor: Command=None):
|
|
16
|
+
super().__init__(successor)
|
|
17
|
+
|
|
18
|
+
def command(self):
|
|
19
|
+
return ShowExportDatabases.COMMAND
|
|
20
|
+
|
|
21
|
+
def required(self):
|
|
22
|
+
return [ReplState.C, ReplState.X]
|
|
23
|
+
|
|
24
|
+
def run(self, cmd: str, state: ReplState):
|
|
25
|
+
if not(args := self.args(cmd)):
|
|
26
|
+
return super().run(cmd, state)
|
|
27
|
+
|
|
28
|
+
with self.validate(args, state) as (args, state):
|
|
29
|
+
with export_db(state) as dbs:
|
|
30
|
+
dbs.show_databases()
|
|
31
|
+
|
|
32
|
+
return state
|
|
33
|
+
|
|
34
|
+
def completion(self, state: ReplState):
|
|
35
|
+
return {}
|
|
36
|
+
# return DeviceExport().ls_completion(ShowExportDatabases.COMMAND, state, default = super().completion(state))
|
|
37
|
+
|
|
38
|
+
def help(self, _: ReplState):
|
|
39
|
+
return f'{ShowExportDatabases.COMMAND}\t list export databases'
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
from adam.commands import validate_args
|
|
2
|
+
from adam.commands.command import Command
|
|
3
|
+
from adam.commands.export.export_sessions import ExportSessions, export_session
|
|
4
|
+
from adam.repl_state import ReplState, RequiredState
|
|
5
|
+
|
|
6
|
+
class ShowExportSession(Command):
|
|
7
|
+
COMMAND = 'show export session'
|
|
8
|
+
|
|
9
|
+
# the singleton pattern
|
|
10
|
+
def __new__(cls, *args, **kwargs):
|
|
11
|
+
if not hasattr(cls, 'instance'): cls.instance = super(ShowExportSession, cls).__new__(cls)
|
|
12
|
+
|
|
13
|
+
return cls.instance
|
|
14
|
+
|
|
15
|
+
def __init__(self, successor: Command=None):
|
|
16
|
+
super().__init__(successor)
|
|
17
|
+
|
|
18
|
+
def command(self):
|
|
19
|
+
return ShowExportSession.COMMAND
|
|
20
|
+
|
|
21
|
+
def required(self):
|
|
22
|
+
return RequiredState.CLUSTER_OR_POD
|
|
23
|
+
|
|
24
|
+
def run(self, cmd: str, state: ReplState):
|
|
25
|
+
if not(args := self.args(cmd)):
|
|
26
|
+
return super().run(cmd, state)
|
|
27
|
+
|
|
28
|
+
with self.validate(args, state) as (args, state):
|
|
29
|
+
with validate_args(args, state, name='export session') as session:
|
|
30
|
+
with export_session(state) as sessions:
|
|
31
|
+
sessions.show_session(session)
|
|
32
|
+
|
|
33
|
+
return state
|
|
34
|
+
|
|
35
|
+
def completion(self, state: ReplState):
|
|
36
|
+
return {}
|
|
37
|
+
|
|
38
|
+
def help(self, _: ReplState):
|
|
39
|
+
return f'{ShowExportSession.COMMAND} <export-session-name>\t show export session'
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
from adam.commands.command import Command
|
|
2
|
+
from adam.commands.export.export_sessions import export_session
|
|
3
|
+
from adam.repl_state import ReplState, RequiredState
|
|
4
|
+
|
|
5
|
+
class ShowExportSessions(Command):
|
|
6
|
+
COMMAND = 'show export sessions'
|
|
7
|
+
|
|
8
|
+
# the singleton pattern
|
|
9
|
+
def __new__(cls, *args, **kwargs):
|
|
10
|
+
if not hasattr(cls, 'instance'): cls.instance = super(ShowExportSessions, cls).__new__(cls)
|
|
11
|
+
|
|
12
|
+
return cls.instance
|
|
13
|
+
|
|
14
|
+
def __init__(self, successor: Command=None):
|
|
15
|
+
super().__init__(successor)
|
|
16
|
+
|
|
17
|
+
def command(self):
|
|
18
|
+
return ShowExportSessions.COMMAND
|
|
19
|
+
|
|
20
|
+
def required(self):
|
|
21
|
+
return RequiredState.CLUSTER_OR_POD
|
|
22
|
+
|
|
23
|
+
def run(self, cmd: str, state: ReplState):
|
|
24
|
+
if not(args := self.args(cmd)):
|
|
25
|
+
return super().run(cmd, state)
|
|
26
|
+
|
|
27
|
+
with self.validate(args, state) as (args, state):
|
|
28
|
+
with export_session(state) as sessions:
|
|
29
|
+
sessions.show_all_sessions()
|
|
30
|
+
|
|
31
|
+
return state
|
|
32
|
+
|
|
33
|
+
def completion(self, state: ReplState):
|
|
34
|
+
return {}
|
|
35
|
+
|
|
36
|
+
def help(self, _: ReplState):
|
|
37
|
+
return f'{ShowExportSessions.COMMAND}\t list export sessions'
|