From f2140a1421397cabec5be5816f4f27995cffc880 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 4 Jul 2022 11:31:01 +0200 Subject: [PATCH] :bug: Fix cron scheduler locking mechanism And add improved logging to the worker/cron code --- backend/src/app/worker.clj | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/backend/src/app/worker.clj b/backend/src/app/worker.clj index 249bfba06..52ce5ddd4 100644 --- a/backend/src/app/worker.clj +++ b/backend/src/app/worker.clj @@ -203,8 +203,7 @@ (instance? Exception val) (do - (l/warn :cause val - :hint "unexpected error ocurried on polling the database (will resume in some instants)") + (l/warn :hint "unexpected error ocurried on polling the database (will resume in some instants)" :cause val) (a/> (filter some? entries) (run! (partial schedule-cron-task cfg))) @@ -494,16 +493,12 @@ on conflict (id) do update set cron_expr=?") -(defn- synchronize-cron-item - [conn {:keys [id cron]}] - (let [cron (str cron)] - (l/debug :action "initialize scheduled task" :id id :cron cron) - (db/exec-one! conn [sql:upsert-cron-task id cron cron]))) - -(defn- synchronize-cron-entries - [{:keys [pool schedule]}] +(defn- synchronize-cron-entries! + [{:keys [pool entries]}] (db/with-atomic [conn pool] - (run! (partial synchronize-cron-item conn) schedule))) + (doseq [{:keys [id cron]} entries] + (l/trace :hint "register cron task" :id id :cron (str cron)) + (db/exec-one! conn [sql:upsert-cron-task id (str cron) (str cron)])))) (def sql:lock-cron-task "select id from scheduled_task where id=? for update skip locked") @@ -512,7 +507,7 @@ [{:keys [executor pool] :as cfg} {:keys [id] :as task}] (letfn [(run-task [conn] (when (db/exec-one! conn [sql:lock-cron-task (d/name id)]) - (l/debug :action "execute scheduled task" :id id) + (l/trace :hint "execute cron task" :id id) ((:fn task) task))) (handle-task [] @@ -567,9 +562,10 @@ (defmethod ig/init-key ::registry [_ {:keys [metrics tasks]}] + (l/info :hint "registry initialized" :tasks (count tasks)) (reduce-kv (fn [res k v] (let [tname (name k)] - (l/debug :hint "register task" :name tname) + (l/trace :hint "register task" :name tname) (assoc res k (wrap-task-handler metrics tname v)))) {} tasks))