forked from cylc/cylc-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrundb.py
More file actions
1179 lines (1069 loc) · 41.7 KB
/
rundb.py
File metadata and controls
1179 lines (1069 loc) · 41.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS FILE IS PART OF THE CYLC WORKFLOW ENGINE.
# Copyright (C) NIWA & British Crown (Met Office) & Contributors.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Provide data access object for the workflow runtime database."""
from collections import defaultdict
from contextlib import suppress
from dataclasses import dataclass
from os.path import expandvars
from pprint import pformat
import sqlite3
import traceback
from typing import (
TYPE_CHECKING,
Any,
DefaultDict,
Dict,
Iterable,
List,
Optional,
Set,
Tuple,
Union,
cast,
)
from cylc.flow import LOG
from cylc.flow.exceptions import PlatformLookupError
import cylc.flow.flags
from cylc.flow.flow_mgr import stringify_flow_nums
from cylc.flow.util import (
deserialise_set,
serialise_set,
)
if TYPE_CHECKING:
from pathlib import Path
from cylc.flow.flow_mgr import FlowNums
DbArgDict = Dict[str, Any]
DbUpdateTuple = Union[
Tuple[DbArgDict, DbArgDict],
Tuple[str, list]
]
@dataclass
class CylcWorkflowDAOTableColumn:
"""Represent a column in a table."""
name: str
datatype: str
is_primary_key: bool
class CylcWorkflowDAOTable:
"""Represent a table in the workflow runtime database."""
FMT_CREATE = "CREATE TABLE %(name)s(%(columns_str)s%(primary_keys_str)s)"
FMT_DELETE = "DELETE FROM %(name)s%(where_str)s"
FMT_INSERT = "INSERT OR REPLACE INTO %(name)s VALUES(%(values_str)s)"
FMT_UPDATE = "UPDATE %(name)s SET %(set_str)s%(where_str)s"
__slots__ = ('name', 'columns', 'delete_queues', 'insert_queue',
'update_queues')
def __init__(self, name, column_items):
self.name = name
self.columns: List[CylcWorkflowDAOTableColumn] = []
for column_item in column_items:
name = column_item[0]
attrs = {}
if len(column_item) > 1:
attrs = column_item[1]
self.columns.append(CylcWorkflowDAOTableColumn(
name,
attrs.get("datatype", "TEXT"),
attrs.get("is_primary_key", False)))
self.delete_queues = {}
self.insert_queue = []
self.update_queues: DefaultDict[str, list] = defaultdict(list)
def get_create_stmt(self):
"""Return an SQL statement to create this table."""
column_str_list = []
primary_keys = []
for column in self.columns:
column_str_list.append(column.name + " " + column.datatype)
if column.is_primary_key:
primary_keys.append(column.name)
primary_keys_str = ""
if primary_keys:
primary_keys_str = ", PRIMARY KEY(" + ", ".join(primary_keys) + ")"
return self.FMT_CREATE % {
"name": self.name,
"columns_str": ", ".join(column_str_list),
"primary_keys_str": primary_keys_str}
def get_insert_stmt(self):
"""Return an SQL statement to insert a row to this table."""
return self.FMT_INSERT % {
"name": self.name,
"values_str": ", ".join("?" * len(self.columns))}
def add_delete_item(self, where_args):
"""Queue a DELETE item.
where_args should be a dict, delete will only apply to rows matching
all these items.
"""
stmt_args = []
where_str = ""
if where_args:
where_strs = []
for column in self.columns:
if column.name in where_args:
where_strs.append(column.name + "==?")
stmt_args.append(where_args[column.name])
if where_strs:
where_str = " WHERE " + " AND ".join(where_strs)
stmt = self.FMT_DELETE % {"name": self.name, "where_str": where_str}
if stmt not in self.delete_queues:
self.delete_queues[stmt] = []
self.delete_queues[stmt].append(stmt_args)
def add_insert_item(self, args):
"""Queue an INSERT args.
If args is a list, its length will be adjusted to be the same as the
number of columns. If args is a dict, will return a list with the same
length as the number of columns, the elements of which are determined
by matching the column names with the keys in the dict.
Empty elements are padded with None.
"""
if isinstance(args, list):
if len(args) == len(self.columns):
stmt_args = list(args)
elif len(args) < len(self.columns):
stmt_args = args + [None] * (len(self.columns) - len(args))
else: # len(args) > len(self.columns)
stmt_args = args[0:len(self.columns)]
else:
stmt_args = [
args.get(column.name, None) for column in self.columns]
self.insert_queue.append(stmt_args)
def add_update_item(self, item: DbUpdateTuple) -> None:
"""Queue an UPDATE item.
If stmt is not a string, it should be a tuple (set_args, where_args) -
set_args should be a dict, with column keys and values to be set.
where_args should be a dict, update will only apply to rows matching
all these items.
"""
if isinstance(item[0], str):
stmt = item[0]
params = cast('list', item[1])
self.update_queues[stmt].extend(params)
return
set_args = item[0]
where_args = cast('DbArgDict', item[1])
set_strs = []
stmt_args = []
for column in self.columns:
if column.name in set_args:
set_strs.append(column.name + "=?")
stmt_args.append(set_args[column.name])
set_str = ", ".join(set_strs)
where_str = ""
if where_args:
where_strs = []
for column in self.columns:
if column.name in where_args:
where_strs.append(column.name + "==?")
stmt_args.append(where_args[column.name])
if where_strs:
where_str = " WHERE " + " AND ".join(where_strs)
stmt = self.FMT_UPDATE % {
"name": self.name,
"set_str": set_str,
"where_str": where_str
}
self.update_queues[stmt].append(stmt_args)
class CylcWorkflowDAO:
"""Data access object for the workflow runtime database."""
CONN_TIMEOUT = 0.2
DB_FILE_BASE_NAME = "db"
MAX_TRIES = 100
RESTART_INCOMPAT_VERSION = "8.0rc2" # Can't restart if <= this version
TABLE_BROADCAST_EVENTS = "broadcast_events"
TABLE_BROADCAST_STATES = "broadcast_states"
TABLE_INHERITANCE = "inheritance"
TABLE_WORKFLOW_PARAMS = "workflow_params"
# BACK COMPAT: suite_params
# This Cylc 7 DB table is needed to allow workflow-state
# xtriggers (and the `cylc workflow-state` command) to
# work with Cylc 7 workflows.
# url: https://github.com/cylc/cylc-flow/issues/5236
# remove at: 8.x
TABLE_SUITE_PARAMS = "suite_params"
TABLE_WORKFLOW_FLOWS = "workflow_flows"
TABLE_WORKFLOW_TEMPLATE_VARS = "workflow_template_vars"
TABLE_TASK_JOBS = "task_jobs"
TABLE_TASK_EVENTS = "task_events"
TABLE_TASK_ACTION_TIMERS = "task_action_timers"
TABLE_TASK_LATE_FLAGS = "task_late_flags"
TABLE_TASK_OUTPUTS = "task_outputs"
TABLE_TASK_POOL = "task_pool"
TABLE_TASK_PREREQUISITES = "task_prerequisites"
TABLE_TASK_STATES = "task_states"
TABLE_TASK_TIMEOUT_TIMERS = "task_timeout_timers"
TABLE_TASKS_TO_HOLD = "tasks_to_hold"
TABLE_XTRIGGERS = "xtriggers"
TABLE_ABS_OUTPUTS = "absolute_outputs"
TABLES_ATTRS = {
TABLE_BROADCAST_EVENTS: [
["time"],
["change"],
["point"],
["namespace"],
["key"],
["value"],
],
TABLE_BROADCAST_STATES: [
["point", {"is_primary_key": True}],
["namespace", {"is_primary_key": True}],
["key", {"is_primary_key": True}],
["value"],
],
TABLE_INHERITANCE: [
["namespace", {"is_primary_key": True}],
["inheritance"],
],
TABLE_WORKFLOW_PARAMS: [
["key", {"is_primary_key": True}],
["value"],
],
TABLE_WORKFLOW_FLOWS: [
["flow_num", {"datatype": "INTEGER", "is_primary_key": True}],
["start_time"],
["description"],
],
TABLE_WORKFLOW_TEMPLATE_VARS: [
["key", {"is_primary_key": True}],
["value"],
],
TABLE_TASK_ACTION_TIMERS: [
["cycle", {"is_primary_key": True}],
["name", {"is_primary_key": True}],
["ctx_key", {"is_primary_key": True}],
["ctx"],
["delays"],
["num", {"datatype": "INTEGER"}],
["delay"],
["timeout"],
],
# NOTE: this table is used by `cylc clean`, don't rename me!
TABLE_TASK_JOBS: [
["cycle", {"is_primary_key": True}],
["name", {"is_primary_key": True}],
["submit_num", {"datatype": "INTEGER", "is_primary_key": True}],
["flow_nums"],
["is_manual_submit", {"datatype": "INTEGER"}],
["try_num", {"datatype": "INTEGER"}],
# This is used to store simulation task start time across restarts.
["time_submit"],
["time_submit_exit"],
["submit_status", {"datatype": "INTEGER"}],
["time_run"],
["time_run_exit"],
["run_signal"],
["run_status", {"datatype": "INTEGER"}],
# NOTE: this field is used by `cylc clean` don't rename me!
["platform_name"],
["job_runner_name"],
["job_id"],
],
TABLE_TASK_EVENTS: [
["name"],
["cycle"],
["time"],
["submit_num", {"datatype": "INTEGER"}],
["event"],
["message"],
],
TABLE_TASK_LATE_FLAGS: [
["cycle", {"is_primary_key": True}],
["name", {"is_primary_key": True}],
["value", {"datatype": "INTEGER"}],
],
TABLE_TASK_OUTPUTS: [
["cycle", {"is_primary_key": True}],
["name", {"is_primary_key": True}],
["flow_nums", {"is_primary_key": True}],
["outputs"],
],
TABLE_TASK_POOL: [
["cycle", {"is_primary_key": True}],
["name", {"is_primary_key": True}],
["flow_nums", {"is_primary_key": True}],
["status"],
["is_held", {"datatype": "INTEGER"}],
],
TABLE_TASK_PREREQUISITES: [
["cycle", {"is_primary_key": True}],
["name", {"is_primary_key": True}],
["flow_nums", {"is_primary_key": True}],
["prereq_name", {"is_primary_key": True}],
["prereq_cycle", {"is_primary_key": True}],
["prereq_output", {"is_primary_key": True}],
["satisfied"],
],
# The xtriggers table holds the function signature and result of
# already-satisfied (the scheduler no longer needs to call them).
TABLE_XTRIGGERS: [
["signature", {"is_primary_key": True}],
["results"],
],
TABLE_TASK_STATES: [
["name", {"is_primary_key": True}],
["cycle", {"is_primary_key": True}],
["flow_nums", {"is_primary_key": True}],
["time_created"],
["time_updated"],
["submit_num", {"datatype": "INTEGER"}],
["status"],
["flow_wait", {"datatype": "INTEGER"}],
["is_manual_submit", {"datatype": "INTEGER"}],
],
TABLE_TASK_TIMEOUT_TIMERS: [
["cycle", {"is_primary_key": True}],
["name", {"is_primary_key": True}],
["timeout", {"datatype": "REAL"}],
],
TABLE_ABS_OUTPUTS: [
["cycle"],
["name"],
["output"],
],
TABLE_TASKS_TO_HOLD: [
["name"],
["cycle"],
],
}
def __init__(
self,
db_file_name: Union['Path', str],
is_public: bool = False,
create_tables: bool = False
):
"""Initialise database access object.
An instance of this class can also be opened as a context manager
which will automatically close the DB connection.
Args:
db_file_name: Path to the database file.
is_public: If True, allow retries.
create_tables: If True, create the tables if they
don't already exist.
"""
self.db_file_name = expandvars(db_file_name)
self.is_public = is_public
self.conn: Optional[sqlite3.Connection] = None
self.n_tries = 0
self.tables = {
name: CylcWorkflowDAOTable(name, attrs)
for name, attrs in sorted(self.TABLES_ATTRS.items())
}
if create_tables:
self.create_tables()
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, traceback):
"""Close DB connection when leaving context manager."""
self.close()
def add_delete_item(self, table_name, where_args=None):
"""Queue a DELETE item for a given table.
where_args should be a dict, update will only apply to rows matching
all these items.
"""
self.tables[table_name].add_delete_item(where_args)
def add_insert_item(self, table_name, args):
"""Queue an INSERT args for a given table.
If args is a list, its length will be adjusted to be the same as the
number of columns. If args is a dict, will return a list with the same
length as the number of columns, the elements of which are determined
by matching the column names with the keys in the dict.
Empty elements are padded with None.
"""
self.tables[table_name].add_insert_item(args)
def add_update_item(
self, table_name: str, item: DbUpdateTuple
) -> None:
"""Queue an UPDATE item for a given table.
If stmt is not a string, it should be a tuple (set_args, where_args) -
set_args should be a dict, with column keys and values to be set.
where_args should be a dict, update will only apply to rows matching
all these items.
"""
self.tables[table_name].add_update_item(item)
def close(self) -> None:
"""Explicitly close the connection."""
if self.conn is not None:
try:
self.conn.close()
except sqlite3.Error as exc:
LOG.debug(f"Error closing connection to DB: {exc}")
self.conn = None
def connect(self) -> sqlite3.Connection:
"""Connect to the database."""
if self.conn is None:
self.conn = sqlite3.connect(
self.db_file_name, timeout=self.CONN_TIMEOUT
)
return self.conn
def create_tables(self):
"""Create tables."""
names = []
for row in self.connect().execute(
"SELECT name FROM sqlite_master WHERE type==? ORDER BY name",
["table"]):
names.append(row[0])
cur = None
for name, table in self.tables.items():
if name not in names:
cur = self.conn.execute(table.get_create_stmt())
if cur is not None:
self.conn.commit()
def execute_queued_items(self):
"""Execute queued items for each table."""
# determine the sql statements to execute
sql_queue = [] # (sql_statement, values)
for table in self.tables.values():
# DELETE statements may have varying number of WHERE args so we
# can only executemany for each identical template statement.
for stmt, stmt_args_list in table.delete_queues.items():
sql_queue.append((stmt, stmt_args_list))
# INSERT statements are uniform for each table, so all INSERT
# statements can be executed using a single "executemany" call.
if table.insert_queue:
sql_queue.append((
table.get_insert_stmt(),
table.insert_queue,
))
# UPDATE statements can have varying number of SET and WHERE
# args so we can only executemany for each identical template
# statement.
for stmt, stmt_args_list in table.update_queues.items():
sql_queue.append((stmt, stmt_args_list))
# execute the statements and commit the transaction
try:
for stmt, stmt_args in sql_queue:
self._execute_stmt(stmt, stmt_args)
# Connection should only be opened if we have executed something.
if self.conn is None:
return
self.conn.commit()
# something went wrong
# (includes DB file not found, transaction processing issue, db locked)
except sqlite3.Error as e:
# Detailed error codes are only available for python >= 3.11
if hasattr(e, "sqlite_errorcode"):
error_code = str(e.sqlite_errorcode)
else:
error_code = "Not available"
if hasattr(e, "sqlite_errorname"):
error_name = e.sqlite_errorname
else:
error_name = "Not available"
if not self.is_public:
# incase this isn't a filesystem issue, log the statements
# which make up the transaction to assist debug
LOG.error(
'An error occurred when writing to the database %(file)s,'
' this is probably a filesystem issue.'
' The error was: %(error)s'
' SQLite error code: %(error_code)s'
' SQLite error name: %(error_name)s'
' The attempted transaction was:\n %(transaction)s' % {
"file": self.db_file_name,
"error": str(e),
"error_code": error_code,
"error_name": error_name,
"transaction": pformat(sql_queue)
}
)
raise
self.n_tries += 1
LOG.info(
"%(file)s: write attempt (%(attempt)d)"
" did not complete: %(error)s\n"
" SQLite error code: %(error_code)s\n"
" SQLite error name: %(error_name)s" % {
"file": self.db_file_name,
"attempt": self.n_tries,
"error": str(e),
"error_code": error_code,
"error_name": error_name
}
)
if self.conn is not None:
with suppress(sqlite3.Error):
self.conn.rollback()
return
else:
# Clear the queues
for table in self.tables.values():
table.delete_queues.clear()
table.insert_queue.clear()
table.update_queues.clear()
# Report public database retry recovery if necessary
if self.n_tries:
LOG.info(
"%(file)s: recovered after (%(attempt)d) attempt(s)\n" % {
"file": self.db_file_name, "attempt": self.n_tries})
self.n_tries = 0
finally:
# Note: This is not strictly necessary. But if the workflow run
# directory is removed, a forced reconnection to the private
# database will ensure that the workflow dies.
self.close()
def _execute_stmt(self, stmt, stmt_args_list):
"""Helper for "self.execute_queued_items".
Execute a statement. If this is the public database, return True on
success and False on failure. If this is the private database, return
True on success, and raise on failure.
"""
# Filter out CYLC_TEMPLATE_VARS which breaks executemany because it's:
# - a dict
# - recursive (contains itself!)
if stmt_args_list and stmt_args_list[0]:
stmt_args_list = [
i for i in stmt_args_list if i[0] != 'CYLC_TEMPLATE_VARS'
]
try:
self.connect()
self.conn.executemany(stmt, stmt_args_list)
except sqlite3.Error as e:
if not self.is_public:
raise
if cylc.flow.flags.verbosity > 1:
traceback.print_exc()
err_log = (
"cannot execute database statement:\n"
"file=%(file)s:\nstmt=%(stmt)s\nerror=%(error)s"
) % {"file": self.db_file_name, "stmt": stmt, "error": str(e)}
for i, stmt_args in enumerate(stmt_args_list):
err_log += ("\nstmt_args[%(i)d]=%(stmt_args)s" % {
"i": i, "stmt_args": stmt_args})
if self.is_public:
LOG.info(err_log)
else:
LOG.warning(err_log)
raise
def pre_select_broadcast_states(self, order=None):
"""Query statement and args formation for select_broadcast_states."""
form_stmt = r"SELECT point,namespace,key,value FROM %s"
if order == "ASC":
ordering = " ORDER BY point ASC, namespace ASC, key ASC"
form_stmt = form_stmt + ordering
return form_stmt % self.TABLE_BROADCAST_STATES
def select_broadcast_states(self, callback, sort=None):
"""Select from broadcast_states.
Invoke callback(row_idx, row) on each row, where each row contains:
[point, namespace, key, value]
"""
stmt = self.pre_select_broadcast_states(order=sort)
for row_idx, row in enumerate(self.connect().execute(stmt)):
callback(row_idx, list(row))
def select_workflow_params(self) -> Iterable[Tuple[str, Optional[str]]]:
"""Select all from workflow_params.
E.g. a row might be ('UTC mode', '1')
"""
stmt = rf'''
SELECT
key, value
FROM
{self.TABLE_WORKFLOW_PARAMS}
''' # nosec B608 (table name is code constant)
return self.connect().execute(stmt)
def select_workflow_flows(self, flow_nums: Iterable[int]):
"""Return flow data for selected flows."""
stmt = rf'''
SELECT
flow_num, start_time, description
FROM
{self.TABLE_WORKFLOW_FLOWS}
WHERE
flow_num in ({stringify_flow_nums(flow_nums)})
''' # nosec B608 (table name is code constant, flow_nums just ints)
flows = {}
for flow_num, start_time, descr in self.connect().execute(stmt):
flows[flow_num] = {
"start_time": start_time,
"description": descr
}
return flows
def select_workflow_flows_max_flow_num(self):
"""Return max flow number in the workflow_flows table."""
stmt = rf'''
SELECT
MAX(flow_num)
FROM
{self.TABLE_WORKFLOW_FLOWS}
''' # nosec B608 (table name is code constant)
return self.connect().execute(stmt).fetchone()[0]
def select_workflow_params_restart_count(self):
"""Return number of restarts in workflow_params table."""
stmt = rf"""
SELECT
value
FROM
{self.TABLE_WORKFLOW_PARAMS}
WHERE
key == 'n_restart'
""" # nosec B608 (table name is code constant)
result = self.connect().execute(stmt).fetchone()
return int(result[0]) if result else 0
def select_workflow_template_vars(self, callback):
"""Select from workflow_template_vars.
Invoke callback(row_idx, row) on each row, where each row contains:
[key,value]
"""
for row_idx, row in enumerate(self.connect().execute(
rf'''
SELECT
key, value
FROM
{self.TABLE_WORKFLOW_TEMPLATE_VARS}
''' # nosec B608 (table name is code constant)
)):
callback(row_idx, list(row))
def select_task_action_timers(self, callback):
"""Select from task_action_timers for restart.
Invoke callback(row_idx, row) on each row.
"""
attrs = []
for item in self.TABLES_ATTRS[self.TABLE_TASK_ACTION_TIMERS]:
attrs.append(item[0])
stmt = rf'''
SELECT
{",".join(attrs)}
FROM
{self.TABLE_TASK_ACTION_TIMERS}
''' # nosec B608
# * table name is code constant
# * attrs are code constants
for row_idx, row in enumerate(self.connect().execute(stmt)):
callback(row_idx, list(row))
def select_task_job(
self, cycle: str, name: str, submit_num: str | int | None = None
) -> dict[str, Any] | None:
"""Select items from task_jobs by (cycle, name, submit_num).
:return: a dict for mapping keys to the column values
"""
keys = []
for column in self.tables[self.TABLE_TASK_JOBS].columns[3:]:
keys.append(column.name)
if submit_num in [None, "NN"]:
stmt = rf'''
SELECT
{",".join(keys)}
FROM
{self.TABLE_TASK_JOBS}
WHERE
cycle==?
AND name==?
ORDER BY
submit_num DESC LIMIT 1
''' # nosec B608
# * table name is code constant
# * keys are code constants
stmt_args: list[Any] = [cycle, name]
else:
stmt = rf'''
SELECT
{",".join(keys)}
FROM
{self.TABLE_TASK_JOBS}
WHERE
cycle==?
AND name==?
AND submit_num==?
''' # nosec B608
# * table name is code constant
# * keys are code constants
stmt_args = [cycle, name, submit_num]
with suppress(sqlite3.DatabaseError):
for row in self.connect().execute(stmt, stmt_args):
ret = {}
for key, value in zip(keys, row):
ret[key] = value
return ret
return None
def select_jobs_for_restart(self, callback):
"""Select from task_pool+task_states+task_jobs for restart.
Invoke callback(row_idx, row) on each row of the result.
"""
form_stmt = r"""
SELECT
%(task_pool)s.cycle,
%(task_pool)s.name,
%(task_jobs)s.submit_num,
%(task_jobs)s.time_submit,
%(task_jobs)s.submit_status,
%(task_jobs)s.time_run,
%(task_jobs)s.time_run_exit,
%(task_jobs)s.run_status,
%(task_jobs)s.job_runner_name,
%(task_jobs)s.job_id,
%(task_jobs)s.platform_name
FROM
%(task_jobs)s
JOIN
%(task_pool)s
ON %(task_jobs)s.cycle == %(task_pool)s.cycle AND
%(task_jobs)s.name == %(task_pool)s.name
"""
form_data = {
"task_pool": self.TABLE_TASK_POOL,
"task_jobs": self.TABLE_TASK_JOBS,
}
stmt = form_stmt % form_data
for row_idx, row in enumerate(self.connect().execute(stmt)):
callback(row_idx, list(row))
def select_task_job_run_times(self, callback):
"""Select run times of succeeded task jobs grouped by task names.
Invoke callback(row_idx, row) on each row, where each row contains:
[name, run_times_str]
where run_times_str is a string containing comma separated list of
integer run times. This method is used to re-populate elapsed run times
of each task on restart.
"""
stmt = (
r"SELECT"
r" name,"
r" GROUP_CONCAT("
r" CAST(strftime('%s', time_run_exit) AS NUMERIC) -"
r" CAST(strftime('%s', time_run) AS NUMERIC))"
r" FROM task_jobs"
r" WHERE run_status==0 GROUP BY name ORDER BY time_run_exit")
for row_idx, row in enumerate(self.connect().execute(stmt)):
callback(row_idx, list(row))
def select_task_job_platforms(self):
"""Return the set of platform names from task_jobs table.
Warning:
This interface is used by `cylc clean` which does not upgrade the
DB first (it could, this would only extend backwards
compatibility but would not help with forwards compatibility).
Keep this query to the minimum of tables/fields to avoid
breaking compatibility with older/newer versions of Cylc.
"""
stmt = rf'''
SELECT DISTINCT
platform_name
FROM
{self.TABLE_TASK_JOBS}
''' # nosec B608 (table name is code constant)
return {i[0] for i in self.connect().execute(stmt)}
def select_prev_instances(
self, name: str, point: str
) -> List[Tuple[int, bool, Set[int], str]]:
"""Select task_states table info about previous instances of a task.
Flow merge results in multiple entries for the same submit number.
"""
# Ignore bandit false positive: B608: hardcoded_sql_expressions
# Not an injection, simply putting the table name in the SQL query
# expression as a string constant local to this module.
stmt = ( # nosec B608
r"SELECT flow_nums,submit_num,flow_wait,status FROM %(name)s"
r" WHERE name==? AND cycle==?"
) % {"name": self.TABLE_TASK_STATES}
return [
(
submit_num,
flow_wait == 1,
deserialise_set(flow_nums_str),
status
)
for flow_nums_str, submit_num, flow_wait, status in (
self.connect().execute(stmt, (name, point,))
)
]
def select_latest_flow_nums(self) -> Optional['FlowNums']:
"""Return a list of the most recent previous flow numbers."""
stmt = rf'''
SELECT
flow_nums, MAX(time_created)
FROM
{self.TABLE_TASK_STATES}
WHERE
flow_nums != ?
''' # nosec B608 (table name is code constant)
# Exclude flow=none:
params = [serialise_set()]
flow_nums_str = self.connect().execute(stmt, params).fetchone()[0]
if flow_nums_str:
return deserialise_set(flow_nums_str)
return None
def select_task_outputs(
self, name: str, point: str
) -> 'Dict[str, FlowNums]':
"""Select task outputs for each flow.
Return: {outputs_dict_str: flow_nums_set}
"""
stmt = rf'''
SELECT
flow_nums,outputs
FROM
{self.TABLE_TASK_OUTPUTS}
WHERE
name==? AND cycle==?
''' # nosec B608 (table name is code constant)
return {
outputs: deserialise_set(flow_nums)
for flow_nums, outputs in self.connect().execute(
stmt, (name, point,)
)
}
def select_xtriggers_for_restart(self, callback):
stmt = rf'''
SELECT
signature, results
FROM
{self.TABLE_XTRIGGERS}
''' # nosec B608 (table name is code constant)
for row_idx, row in enumerate(self.connect().execute(stmt, [])):
callback(row_idx, list(row))
def select_abs_outputs_for_restart(self, callback):
stmt = rf'''
SELECT
cycle, name, output
FROM
{self.TABLE_ABS_OUTPUTS}
''' # nosec B608 (table name is code constant)
for row_idx, row in enumerate(self.connect().execute(stmt, [])):
callback(row_idx, list(row))
def select_task_pool(self, callback):
"""Select from task_pool.
Invoke callback(row_idx, row) on each row, where each row contains:
[cycle, name, status]
"""
form_stmt = r"SELECT cycle,name,status,is_held FROM %s"
stmt = form_stmt % self.TABLE_TASK_POOL
for row_idx, row in enumerate(self.connect().execute(stmt)):
callback(row_idx, list(row))
def select_task_pool_for_restart(self, callback):
"""Select from task_pool+task_states+task_jobs for restart.
Invoke callback(row_idx, row) on each row, where each row contains:
the fields in the SELECT statement below.
Raises:
PlatformLookupError: Do not start up if platforms for running
tasks cannot be found in global.cylc. This exception should
not be caught.
"""
form_stmt = r"""
SELECT
%(task_pool)s.cycle,
%(task_pool)s.name,
%(task_pool)s.flow_nums,
%(task_states)s.flow_wait,
%(task_states)s.is_manual_submit,
%(task_late_flags)s.value,
%(task_pool)s.status,
%(task_pool)s.is_held,
%(task_states)s.submit_num,
%(task_jobs)s.try_num,
%(task_jobs)s.platform_name,
%(task_jobs)s.time_submit,
%(task_jobs)s.time_run,
%(task_timeout_timers)s.timeout,
%(task_outputs)s.outputs
FROM
%(task_pool)s
JOIN
%(task_states)s
ON %(task_pool)s.cycle == %(task_states)s.cycle AND
%(task_pool)s.name == %(task_states)s.name AND
%(task_pool)s.flow_nums == %(task_states)s.flow_nums
LEFT OUTER JOIN
%(task_late_flags)s
ON %(task_pool)s.cycle == %(task_late_flags)s.cycle AND
%(task_pool)s.name == %(task_late_flags)s.name
LEFT OUTER JOIN
%(task_jobs)s
ON %(task_pool)s.cycle == %(task_jobs)s.cycle AND
%(task_pool)s.name == %(task_jobs)s.name AND
%(task_states)s.submit_num == %(task_jobs)s.submit_num
LEFT OUTER JOIN
%(task_timeout_timers)s
ON %(task_pool)s.cycle == %(task_timeout_timers)s.cycle AND
%(task_pool)s.name == %(task_timeout_timers)s.name
LEFT OUTER JOIN
%(task_outputs)s
ON %(task_pool)s.cycle == %(task_outputs)s.cycle AND
%(task_pool)s.name == %(task_outputs)s.name AND
%(task_pool)s.flow_nums == %(task_outputs)s.flow_nums
"""
form_data = {
"task_pool": self.TABLE_TASK_POOL,
"task_states": self.TABLE_TASK_STATES,
"task_late_flags": self.TABLE_TASK_LATE_FLAGS,
"task_timeout_timers": self.TABLE_TASK_TIMEOUT_TIMERS,
"task_jobs": self.TABLE_TASK_JOBS,
"task_outputs": self.TABLE_TASK_OUTPUTS,
}
stmt = form_stmt % form_data
# Run the callback, collecting any platform errors to be handled later: