Skip to content

Commit 87c07db

Browse files
author
Alex Meadows
committed
process_tracker_python-89 Add Process Schedule Frequency
✨ General scheduling for processes is now available High level scheduling frequencies are now available to schedule processes by. This is no more fine grained that saying 'these jobs run hourly or monthly'. Actual scheduling and execution still has to be performed.
1 parent cbe7802 commit 87c07db

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

dbscripts/mysql_process_tracker.sql

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -230,12 +230,6 @@ create table process
230230
foreign key (process_tool_id) references tool_lkup (tool_id)
231231
);
232232

233-
create index process_tool_id
234-
on process_tracker.process (process_tool_id);
235-
236-
create index process_type_id
237-
on process_tracker.process (process_type_id);
238-
239233
create index process_tool_id
240234
on process (process_tool_id);
241235

tests/test_process_tracker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1959,7 +1959,7 @@ def test_find_process_by_schedule_frequency(self):
19591959
"""Testing that when querying based on a given frequency, the process id(s) associated with that frequency are returned."""
19601960

19611961
process = ProcessTracker(
1962-
process_name="Testing Register Target Object Dataset Type",
1962+
process_name="Testing Schedule Frequency Hourly",
19631963
process_type="Extract",
19641964
actor_name="UnitTesting",
19651965
tool_name="Spark",

0 commit comments

Comments
 (0)