You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a cronjob that runs on a daily schedule in Openshift. It should then handle each event effective for the current date and make the appropriate changes in our database.
Acceptance Criteria
To implement this functionality, we need to follow the approach used in the cas_cif application:
Create a django admin command that calls process_due_transfer_events function
Define a CronJob (e.g., process-due-transfer-events) in a Helm chart template to encapsulate the task logic. We need to call the django command in this CronJob
Integrate the CronJob into an Airflow DAG within the appropriate DAG file.
For reference, a similar CronJob named insert-backup-test-timestamp is already implemented and utilized in the cas_cif_dags.py file. Following this pattern, we can schedule the new functionality to invoke the process_due_transfer_events function on a daily basis.
Additional context
Add any other context about the task here.
Or here
The text was updated successfully, but these errors were encountered:
Describe the task
Blocked by: #2427Create a cronjob that runs on a daily schedule in Openshift. It should then handle each event effective for the current date and make the appropriate changes in our database.
Acceptance Criteria
To implement this functionality, we need to follow the approach used in the
cas_cif
application:Create a django admin command that calls
process_due_transfer_events
functionDefine a CronJob (e.g., process-due-transfer-events) in a Helm chart template to encapsulate the task logic. We need to call the django command in this CronJob
Integrate the CronJob into an Airflow DAG within the appropriate DAG file.
For reference, a similar CronJob named insert-backup-test-timestamp is already implemented and utilized in the
cas_cif_dags.py
file. Following this pattern, we can schedule the new functionality to invoke the process_due_transfer_events function on a daily basis.Additional context
The text was updated successfully, but these errors were encountered: