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
@@ -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'