azums 1.0.0

High-performance job queue & streaming engine for Rust — from embedded to cloud
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
// crates/azums/src/jobs/repo.rs

use crate::jobs::model::{Job, JobListItem, JobStatus, NewJob};
use chrono::{DateTime, Utc};
use serde_json::json;
use sqlx::{PgPool, Postgres, Transaction};
use uuid::Uuid;

/// Repository providing atomic database operations for job queue management.
///
/// Handles enqueueing, transactional batch leasing (`SKIP LOCKED`), execution completion,
/// re-scheduling retries, moving jobs to DLQ, and replay.
#[derive(Clone)]
pub struct JobsRepo {
    pool: PgPool,
    database_url: Option<String>,
}

impl JobsRepo {
    /// Creates a new `JobsRepo` wrapping a SQLx PostgreSQL connection pool.
    pub fn new(pool: PgPool) -> Self {
        Self {
            pool,
            database_url: None,
        }
    }

    /// Creates a new `JobsRepo` with a dedicated `database_url` for unpooled `LISTEN` connections.
    pub fn new_with_url(pool: PgPool, database_url: impl Into<String>) -> Self {
        Self {
            pool,
            database_url: Some(database_url.into()),
        }
    }

    fn sanitize_dataset_queue(queue: &str) -> String {
        let mut out = String::with_capacity(queue.len());
        for ch in queue.chars() {
            if ch.is_ascii_alphanumeric() {
                out.push(ch.to_ascii_lowercase());
            } else {
                out.push('_');
            }
        }

        let trimmed = out.trim_matches('_');
        if trimmed.is_empty() {
            "default".to_string()
        } else {
            trimmed.chars().take(32).collect()
        }
    }

    pub(crate) fn dataset_id_for(queue: &str, at: DateTime<Utc>) -> String {
        format!(
            "{}_{}",
            Self::sanitize_dataset_queue(queue),
            at.format("%Y%m%d_%H")
        )
    }

    pub(crate) async fn ensure_dataset_partition(&self, dataset_id: &str) -> anyhow::Result<()> {
        match sqlx::query("SELECT public.ensure_jobs_dataset_partition($1)")
            .bind(dataset_id)
            .execute(&self.pool)
            .await
        {
            Ok(_) => Ok(()),
            // During startup races migrations may still be applying; DEFAULT partition still accepts inserts.
            Err(sqlx::Error::Database(db_err)) if db_err.code().as_deref() == Some("42883") => {
                Ok(())
            }
            Err(err) => Err(err.into()),
        }
    }

    // ----------------------------
    // Enqueue helpers
    // ----------------------------

    fn notify_channel_name(queue: &str) -> String {
        let sanitized = Self::sanitize_dataset_queue(queue);
        format!("azums_job_enqueued_{sanitized}")
    }

    /// Inserts a new job into the queue database.
    ///
    /// Automatically routes the job to the appropriate dataset partition based on `run_at`.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use azums::{Job, JobsRepo, make_pool};
    ///
    /// # async fn doc_test() -> anyhow::Result<()> {
    /// let pool = make_pool("postgres://localhost/flow").await?;
    /// let repo = JobsRepo::new(pool);
    /// let job_id = repo
    ///     .enqueue(Job::new("email_send", serde_json::json!({"to": "user@example.com"})).into())
    ///     .await?;
    /// # Ok(())
    /// # }
    /// ```
    pub async fn enqueue(&self, job: NewJob) -> anyhow::Result<Uuid> {
        let dataset_id = Self::dataset_id_for(&job.queue, job.run_at);
        self.ensure_dataset_partition(&dataset_id).await?;

        let id = sqlx::query_scalar::<_, Uuid>(
            r#"
            INSERT INTO jobs (
                dataset_id, idempotency_key,
                queue, job_type, payload_json, run_at,
                deadline_at, timeout_seconds, recurring_interval_seconds,
                status, priority, max_attempts
            )
            VALUES (
                $1, $2, $3, $4, $5, $6,
                $7::timestamptz, $8::integer, $9::integer,
                $10, $11, $12
            )
            ON CONFLICT (dataset_id, idempotency_key) WHERE idempotency_key IS NOT NULL
            DO UPDATE SET idempotency_key = EXCLUDED.idempotency_key
            RETURNING id
            "#,
        )
        .bind(dataset_id)
        .bind(&job.idempotency_key)
        .bind(&job.queue)
        .bind(job.job_type)
        .bind(job.payload_json)
        .bind(job.run_at)
        .bind(job.deadline_at)
        .bind(job.timeout_seconds)
        .bind(job.recurring_interval_seconds)
        .bind(JobStatus::Queued.as_str())
        .bind(job.priority)
        .bind(job.max_attempts)
        .fetch_one(&self.pool)
        .await?;

        let channel = Self::notify_channel_name(&job.queue);
        let _ = sqlx::query("SELECT pg_notify($1, '')")
            .bind(&channel)
            .execute(&self.pool)
            .await;

        Ok(id)
    }

    /// Inserts a new job using the caller's PostgreSQL transaction.
    ///
    /// Use this when an application state mutation and job enqueue must commit or roll back
    /// together. The `pg_notify` call is executed inside the same transaction, so PostgreSQL only
    /// delivers the wake-up notification if the transaction commits.
    pub async fn enqueue_in_tx(
        &self,
        tx: &mut Transaction<'_, Postgres>,
        job: NewJob,
    ) -> anyhow::Result<Uuid> {
        let dataset_id = Self::dataset_id_for(&job.queue, job.run_at);
        self.ensure_dataset_partition(&dataset_id).await?;
        let channel = Self::notify_channel_name(&job.queue);

        let id = sqlx::query_scalar::<_, Uuid>(
            r#"
            INSERT INTO jobs (
                dataset_id, idempotency_key,
                queue, job_type, payload_json, run_at,
                deadline_at, timeout_seconds, recurring_interval_seconds,
                status, priority, max_attempts
            )
            VALUES (
                $1, $2, $3, $4, $5, $6,
                $7::timestamptz, $8::integer, $9::integer,
                $10, $11, $12
            )
            ON CONFLICT (dataset_id, idempotency_key) WHERE idempotency_key IS NOT NULL
            DO UPDATE SET idempotency_key = EXCLUDED.idempotency_key
            RETURNING id
            "#,
        )
        .bind(dataset_id)
        .bind(&job.idempotency_key)
        .bind(&job.queue)
        .bind(job.job_type)
        .bind(job.payload_json)
        .bind(job.run_at)
        .bind(job.deadline_at)
        .bind(job.timeout_seconds)
        .bind(job.recurring_interval_seconds)
        .bind(JobStatus::Queued.as_str())
        .bind(job.priority)
        .bind(job.max_attempts)
        .fetch_one(&mut **tx)
        .await?;

        let _ = sqlx::query("SELECT pg_notify($1, '')")
            .bind(&channel)
            .execute(&mut **tx)
            .await?;

        Ok(id)
    }

    /// Enqueues a job for immediate execution (`run_at = Utc::now()`).
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use azums::{JobsRepo, make_pool};
    ///
    /// # async fn doc_test() -> anyhow::Result<()> {
    /// let pool = make_pool("postgres://localhost/flow").await?;
    /// let repo = JobsRepo::new(pool);
    /// let id = repo.enqueue_now("default", "send_welcome", serde_json::json!({"id": 123})).await?;
    /// # Ok(())
    /// # }
    /// ```
    pub async fn enqueue_now(
        &self,
        queue: &str,
        job_type: &str,
        payload_json: serde_json::Value,
    ) -> anyhow::Result<Uuid> {
        self.enqueue(NewJob {
            queue: queue.to_string(),
            job_type: job_type.to_string(),
            payload_json,
            idempotency_key: None,
            run_at: Utc::now(),
            deadline_at: None,
            timeout_seconds: None,
            recurring_interval_seconds: None,
            priority: 0,
            max_attempts: 25,
        })
        .await
    }

    /// Schedules a job for future execution delayed by `delay_secs` seconds.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use azums::{JobsRepo, make_pool};
    ///
    /// # async fn doc_test() -> anyhow::Result<()> {
    /// let pool = make_pool("postgres://localhost/flow").await?;
    /// let repo = JobsRepo::new(pool);
    /// let id = repo.enqueue_in("default", "send_reminder", serde_json::json!({}), 300).await?;
    /// # Ok(())
    /// # }
    /// ```
    pub async fn enqueue_in(
        &self,
        queue: &str,
        job_type: &str,
        payload_json: serde_json::Value,
        delay_secs: i64,
    ) -> anyhow::Result<Uuid> {
        self.enqueue(NewJob {
            queue: queue.to_string(),
            job_type: job_type.to_string(),
            payload_json,
            idempotency_key: None,
            run_at: Utc::now() + chrono::Duration::seconds(delay_secs),
            deadline_at: None,
            timeout_seconds: None,
            recurring_interval_seconds: None,
            priority: 0,
            max_attempts: 25,
        })
        .await
    }

    /// Schedules a job to run at a specific UTC timestamp (`run_at`).
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use azums::{JobsRepo, make_pool};
    /// use chrono::Utc;
    ///
    /// # async fn doc_test() -> anyhow::Result<()> {
    /// let pool = make_pool("postgres://localhost/flow").await?;
    /// let repo = JobsRepo::new(pool);
    /// let run_at = Utc::now() + chrono::Duration::hours(1);
    /// let id = repo.enqueue_at("default", "scheduled_report", serde_json::json!({}), run_at).await?;
    /// # Ok(())
    /// # }
    /// ```
    pub async fn enqueue_at(
        &self,
        queue: &str,
        job_type: &str,
        payload_json: serde_json::Value,
        run_at: DateTime<Utc>,
    ) -> anyhow::Result<Uuid> {
        self.enqueue(NewJob {
            queue: queue.to_string(),
            job_type: job_type.to_string(),
            payload_json,
            idempotency_key: None,
            run_at,
            deadline_at: None,
            timeout_seconds: None,
            recurring_interval_seconds: None,
            priority: 0,
            max_attempts: 25,
        })
        .await
    }

    // ----------------------------
    // Reads
    // ----------------------------

    /// Fetches a single [`Job`] record by primary key `job_id`.
    pub async fn get_job(&self, job_id: Uuid) -> anyhow::Result<Option<Job>> {
        let job = sqlx::query_as::<_, Job>("SELECT * FROM jobs WHERE id = $1")
            .bind(job_id)
            .fetch_optional(&self.pool)
            .await?;
        Ok(job)
    }

    /// Extends the lock expiration timestamp for a running job.
    pub async fn extend_lease(
        &self,
        job_id: Uuid,
        worker_id: &str,
        lease_seconds: i64,
    ) -> anyhow::Result<bool> {
        let res = sqlx::query(
            r#"
            UPDATE jobs
            SET lock_expires_at = now() + ($3::int * interval '1 second'),
                updated_at = now()
            WHERE id = $1 AND locked_by = $2 AND status = 'running'
            "#,
        )
        .bind(job_id)
        .bind(worker_id)
        .bind(lease_seconds)
        .execute(&self.pool)
        .await?;

        Ok(res.rows_affected() > 0)
    }

    // ----------------------------
    // List / DLQ views (Admin API support)
    // ----------------------------

    /// Cursor-paginated list of jobs.
    /// Cursor is (created_at, id) ordered DESC.
    ///
    /// - queue/status are optional filters
    /// - limit is clamped to [1, 500]
    pub async fn list_jobs(
        &self,
        queue: Option<&str>,
        status: Option<&str>,
        limit: i64,
        cursor_created_at: Option<DateTime<Utc>>,
        cursor_id: Option<Uuid>,
    ) -> anyhow::Result<Vec<JobListItem>> {
        let limit = limit.clamp(1, 500);

        let rows = match (queue, status, cursor_created_at, cursor_id) {
            (Some(q), Some(st), Some(ca), Some(cid)) => {
                sqlx::query_as::<_, JobListItem>(
                    r#"
                    SELECT
                        id, idempotency_key, queue, job_type, status,
                        run_at, deadline_at, timeout_seconds, recurring_interval_seconds, priority, max_attempts,
                        last_error_code, last_error_message,
                        dlq_reason_code,
                        created_at, updated_at
                    FROM jobs
                    WHERE queue = $1 AND status = $2
                      AND (created_at, id) < ($3, $4)
                    ORDER BY created_at DESC, id DESC
                    LIMIT $5
                    "#,
                )
                .bind(q)
                .bind(st)
                .bind(ca)
                .bind(cid)
                .bind(limit)
                .fetch_all(&self.pool)
                .await?
            }
            (Some(q), Some(st), _, _) => {
                sqlx::query_as::<_, JobListItem>(
                    r#"
                    SELECT
                        id, idempotency_key, queue, job_type, status,
                        run_at, deadline_at, timeout_seconds, recurring_interval_seconds, priority, max_attempts,
                        last_error_code, last_error_message,
                        dlq_reason_code,
                        created_at, updated_at
                    FROM jobs
                    WHERE queue = $1 AND status = $2
                    ORDER BY created_at DESC, id DESC
                    LIMIT $3
                    "#,
                )
                .bind(q)
                .bind(st)
                .bind(limit)
                .fetch_all(&self.pool)
                .await?
            }
            (Some(q), None, Some(ca), Some(cid)) => {
                sqlx::query_as::<_, JobListItem>(
                    r#"
                    SELECT
                        id, idempotency_key, queue, job_type, status,
                        run_at, deadline_at, timeout_seconds, recurring_interval_seconds, priority, max_attempts,
                        last_error_code, last_error_message,
                        dlq_reason_code,
                        created_at, updated_at
                    FROM jobs
                    WHERE queue = $1
                      AND (created_at, id) < ($2, $3)
                    ORDER BY created_at DESC, id DESC
                    LIMIT $4
                    "#,
                )
                .bind(q)
                .bind(ca)
                .bind(cid)
                .bind(limit)
                .fetch_all(&self.pool)
                .await?
            }
            (Some(q), None, _, _) => {
                sqlx::query_as::<_, JobListItem>(
                    r#"
                    SELECT
                        id, idempotency_key, queue, job_type, status,
                        run_at, deadline_at, timeout_seconds, recurring_interval_seconds, priority, max_attempts,
                        last_error_code, last_error_message,
                        dlq_reason_code,
                        created_at, updated_at
                    FROM jobs
                    WHERE queue = $1
                    ORDER BY created_at DESC, id DESC
                    LIMIT $2
                    "#,
                )
                .bind(q)
                .bind(limit)
                .fetch_all(&self.pool)
                .await?
            }
            (None, Some(st), Some(ca), Some(cid)) => {
                sqlx::query_as::<_, JobListItem>(
                    r#"
                    SELECT
                        id, idempotency_key, queue, job_type, status,
                        run_at, deadline_at, timeout_seconds, recurring_interval_seconds, priority, max_attempts,
                        last_error_code, last_error_message,
                        dlq_reason_code,
                        created_at, updated_at
                    FROM jobs
                    WHERE status = $1
                      AND (created_at, id) < ($2, $3)
                    ORDER BY created_at DESC, id DESC
                    LIMIT $4
                    "#,
                )
                .bind(st)
                .bind(ca)
                .bind(cid)
                .bind(limit)
                .fetch_all(&self.pool)
                .await?
            }
            (None, Some(st), _, _) => {
                sqlx::query_as::<_, JobListItem>(
                    r#"
                    SELECT
                        id, idempotency_key, queue, job_type, status,
                        run_at, deadline_at, timeout_seconds, recurring_interval_seconds, priority, max_attempts,
                        last_error_code, last_error_message,
                        dlq_reason_code,
                        created_at, updated_at
                    FROM jobs
                    WHERE status = $1
                    ORDER BY created_at DESC, id DESC
                    LIMIT $2
                    "#,
                )
                .bind(st)
                .bind(limit)
                .fetch_all(&self.pool)
                .await?
            }
            (None, None, Some(ca), Some(cid)) => {
                sqlx::query_as::<_, JobListItem>(
                    r#"
                    SELECT
                        id, idempotency_key, queue, job_type, status,
                        run_at, deadline_at, timeout_seconds, recurring_interval_seconds, priority, max_attempts,
                        last_error_code, last_error_message,
                        dlq_reason_code,
                        created_at, updated_at
                    FROM jobs
                    WHERE (created_at, id) < ($1, $2)
                    ORDER BY created_at DESC, id DESC
                    LIMIT $3
                    "#,
                )
                .bind(ca)
                .bind(cid)
                .bind(limit)
                .fetch_all(&self.pool)
                .await?
            }
            (None, None, _, _) => {
                sqlx::query_as::<_, JobListItem>(
                    r#"
                    SELECT
                        id, idempotency_key, queue, job_type, status,
                        run_at, deadline_at, timeout_seconds, recurring_interval_seconds, priority, max_attempts,
                        last_error_code, last_error_message,
                        dlq_reason_code,
                        created_at, updated_at
                    FROM jobs
                    ORDER BY created_at DESC, id DESC
                    LIMIT $1
                    "#,
                )
                .bind(limit)
                .fetch_all(&self.pool)
                .await?
            }
        };

        Ok(rows)
    }

    // ----------------------------
    // Metrics snapshot (for /metrics)
    // ----------------------------

    /// Returns: (queued, running, succeeded_last_60s, failed_or_dlq_last_60s)
    pub async fn metrics_snapshot(&self) -> anyhow::Result<(i64, i64, i64, i64)> {
        let queued: i64 = sqlx::query_scalar("SELECT COUNT(*) FROM jobs WHERE status = 'queued'")
            .fetch_one(&self.pool)
            .await?;

        let running: i64 = sqlx::query_scalar("SELECT COUNT(*) FROM jobs WHERE status = 'running'")
            .fetch_one(&self.pool)
            .await?;

        let succeeded_last_60s: i64 = sqlx::query_scalar(
            r#"
            SELECT COUNT(*) FROM jobs
            WHERE status = 'succeeded'
              AND updated_at >= now() - interval '60 seconds'
            "#,
        )
        .fetch_one(&self.pool)
        .await?;

        let failed_last_60s: i64 = sqlx::query_scalar(
            r#"
            SELECT COUNT(*) FROM jobs
            WHERE status IN ('failed', 'dlq')
              AND updated_at >= now() - interval '60 seconds'
            "#,
        )
        .fetch_one(&self.pool)
        .await?;

        Ok((queued, running, succeeded_last_60s, failed_last_60s))
    }

    // ----------------------------
    // Leasing + Storm Control + Policy Decisions Log (Milestone 11)
    // ----------------------------

    /// Lease up to `batch_size` runnable jobs for this worker.
    ///
    /// Correctness: SELECT ... FOR UPDATE SKIP LOCKED
    ///
    /// Storm-control gates (per queue):
    /// - max_in_flight (jobs.status='running')
    /// - max_attempts_per_minute (attempts started in last 60s)
    ///
    /// If exceeded:
    /// - write a row into policy_decisions
    /// - reschedule one candidate slightly (throttle_delay_ms)
    /// - return an empty batch
    pub async fn lease_jobs_batch(
        &self,
        queue: &str,
        worker_id: &str,
        lease_seconds: i64,
        batch_size: i64,
    ) -> anyhow::Result<Vec<Job>> {
        self.lease_jobs_batch_with_ordering(
            queue,
            worker_id,
            lease_seconds,
            batch_size,
            azums_core::QueueOrdering::Fifo,
        )
        .await
    }

    /// Lease up to `batch_size` runnable jobs for this worker using specified [`azums_core::QueueOrdering`].
    pub async fn lease_jobs_batch_with_ordering(
        &self,
        queue: &str,
        worker_id: &str,
        lease_seconds: i64,
        batch_size: i64,
        ordering: azums_core::QueueOrdering,
    ) -> anyhow::Result<Vec<Job>> {
        let batch_size = batch_size.clamp(1, 4096);
        let mut tx = self.pool.begin().await?;

        sqlx::query(
            r#"
            UPDATE jobs
            SET status = 'dlq',
                dlq_reason_code = 'DEADLINE_EXCEEDED',
                dlq_at = now(),
                updated_at = now()
            WHERE queue = $1
              AND status = 'queued'
              AND run_at <= now()
              AND deadline_at IS NOT NULL
              AND deadline_at < now()
            "#,
        )
        .bind(queue)
        .execute(&mut *tx)
        .await?;

        // 0) Load queue policy (defaults: basically unlimited)
        let policy = sqlx::query_as::<_, (i32, i32, i32)>(
            r#"
            SELECT max_attempts_per_minute, max_in_flight, throttle_delay_ms
            FROM queue_policies
            WHERE queue = $1
            "#,
        )
        .bind(queue)
        .fetch_optional(&mut *tx)
        .await?;

        let mut max_attempts_per_minute = i32::MAX / 4;
        let mut max_in_flight = i32::MAX / 4;
        let mut throttle_delay_ms = 250;
        let mut in_flight = 0_i64;
        let mut attempts_last_min = 0_i64;

        let dataset_id = sqlx::query_scalar::<_, String>(
            r#"
            SELECT dataset_id
            FROM jobs
            WHERE queue = $1
              AND status = 'queued'
              AND run_at <= now()
            ORDER BY run_at ASC, created_at ASC
            LIMIT 1
            "#,
        )
        .bind(queue)
        .fetch_optional(&mut *tx)
        .await?;

        let Some(dataset_id) = dataset_id else {
            tx.commit().await?;
            return Ok(Vec::new());
        };

        let throttle_reason =
            if let Some((p_max_attempts, p_max_in_flight, p_throttle_delay_ms)) = policy {
                max_attempts_per_minute = p_max_attempts;
                max_in_flight = p_max_in_flight;
                throttle_delay_ms = p_throttle_delay_ms;

                in_flight = sqlx::query_scalar(
                    r#"
                SELECT COUNT(*)
                FROM jobs
                WHERE queue = $1 AND status = 'running'
                "#,
                )
                .bind(queue)
                .fetch_one(&mut *tx)
                .await?;

                attempts_last_min = sqlx::query_scalar(
                    r#"
                SELECT COUNT(*)
                FROM job_attempts a
                JOIN jobs j ON j.id = a.job_id AND j.dataset_id = a.dataset_id
                WHERE j.queue = $1
                  AND a.started_at >= now() - interval '60 seconds'
                "#,
                )
                .bind(queue)
                .fetch_one(&mut *tx)
                .await?;

                if in_flight >= max_in_flight as i64 {
                    Some("IN_FLIGHT_EXCEEDED")
                } else if attempts_last_min >= max_attempts_per_minute as i64 {
                    Some("RETRY_RATE_EXCEEDED")
                } else {
                    None
                }
            } else {
                None
            };

        if let Some(reason_code) = throttle_reason {
            let candidate_id_query = match ordering {
                azums_core::QueueOrdering::Fifo => {
                    r#"
                    SELECT id
                    FROM jobs
                    WHERE dataset_id = $1
                      AND queue = $2
                      AND status = 'queued'
                      AND run_at <= now()
                    ORDER BY priority DESC, run_at ASC, created_at ASC, id ASC
                    FOR UPDATE SKIP LOCKED
                    LIMIT 1
                    "#
                }
                azums_core::QueueOrdering::Fastest => {
                    r#"
                    SELECT id
                    FROM jobs
                    WHERE dataset_id = $1
                      AND queue = $2
                      AND status = 'queued'
                      AND run_at <= now()
                    ORDER BY priority DESC, run_at ASC
                    FOR UPDATE SKIP LOCKED
                    LIMIT 1
                    "#
                }
            };

            let candidate_id = sqlx::query_scalar::<_, Uuid>(candidate_id_query)
                .bind(&dataset_id)
                .bind(queue)
                .fetch_optional(&mut *tx)
                .await?;

            if let Some(job_id) = candidate_id {
                let details = match reason_code {
                    "IN_FLIGHT_EXCEEDED" => json!({
                        "dataset_id": dataset_id,
                        "queue": queue,
                        "in_flight": in_flight,
                        "max_in_flight": max_in_flight,
                        "throttle_delay_ms": throttle_delay_ms
                    }),
                    _ => json!({
                        "dataset_id": dataset_id,
                        "queue": queue,
                        "attempts_last_minute": attempts_last_min,
                        "max_attempts_per_minute": max_attempts_per_minute,
                        "throttle_delay_ms": throttle_delay_ms
                    }),
                };

                sqlx::query(
                    r#"
                    INSERT INTO policy_decisions (
                      id, dataset_id, job_id, decision, reason_code, details_json
                    )
                    VALUES ($1, $2, $3, 'THROTTLED', $4, $5)
                    "#,
                )
                .bind(Uuid::new_v4())
                .bind(&dataset_id)
                .bind(job_id)
                .bind(reason_code)
                .bind(details)
                .execute(&mut *tx)
                .await?;

                sqlx::query(
                    r#"
                    UPDATE jobs
                    SET run_at = now() + ($2::int * interval '1 millisecond'),
                        updated_at = now()
                    WHERE id = $1
                    "#,
                )
                .bind(job_id)
                .bind(throttle_delay_ms)
                .execute(&mut *tx)
                .await?;
            }

            tx.commit().await?;
            return Ok(Vec::new());
        }

        // 3) Lease a batch in one round-trip according to QueueOrdering.
        let leased = match ordering {
            azums_core::QueueOrdering::Fifo => {
                sqlx::query_as::<_, Job>(
                    r#"
                    WITH candidates AS (
                        SELECT id
                        FROM jobs
                        WHERE dataset_id = $1
                          AND queue = $2
                          AND status = 'queued'
                          AND run_at <= now()
                        ORDER BY priority DESC, run_at ASC, created_at ASC, id ASC
                        FOR UPDATE SKIP LOCKED
                        LIMIT $3
                    ),
                    leased AS (
                        UPDATE jobs j
                        SET status = 'running',
                            locked_by = $4,
                            locked_at = now(),
                            lock_expires_at = now() + ($5::int * interval '1 second'),
                            updated_at = now()
                        FROM candidates c
                        WHERE j.id = c.id
                        RETURNING j.*
                    )
                    SELECT *
                    FROM leased
                    ORDER BY priority DESC, run_at ASC, created_at ASC, id ASC
                    "#,
                )
                .bind(&dataset_id)
                .bind(queue)
                .bind(batch_size)
                .bind(worker_id)
                .bind(lease_seconds)
                .fetch_all(&mut *tx)
                .await?
            }
            azums_core::QueueOrdering::Fastest => {
                sqlx::query_as::<_, Job>(
                    r#"
                    WITH candidates AS (
                        SELECT id
                        FROM jobs
                        WHERE dataset_id = $1
                          AND queue = $2
                          AND status = 'queued'
                          AND run_at <= now()
                        ORDER BY priority DESC, run_at ASC
                        FOR UPDATE SKIP LOCKED
                        LIMIT $3
                    ),
                    leased AS (
                        UPDATE jobs j
                        SET status = 'running',
                            locked_by = $4,
                            locked_at = now(),
                            lock_expires_at = now() + ($5::int * interval '1 second'),
                            updated_at = now()
                        FROM candidates c
                        WHERE j.id = c.id
                        RETURNING j.*
                    )
                    SELECT *
                    FROM leased
                    ORDER BY priority DESC, run_at ASC
                    "#,
                )
                .bind(&dataset_id)
                .bind(queue)
                .bind(batch_size)
                .bind(worker_id)
                .bind(lease_seconds)
                .fetch_all(&mut *tx)
                .await?
            }
        };

        tx.commit().await?;
        Ok(leased)
    }

    /// Compatibility helper for call sites/tests that still lease one-by-one.
    pub async fn lease_one_job(
        &self,
        queue: &str,
        worker_id: &str,
        lease_seconds: i64,
    ) -> anyhow::Result<Option<Job>> {
        let mut jobs = self
            .lease_jobs_batch(queue, worker_id, lease_seconds, 1)
            .await?;
        Ok(jobs.pop())
    }

    // ----------------------------
    // Maintenance
    // ----------------------------

    pub async fn reap_expired_locks(&self) -> anyhow::Result<u64> {
        let mut tx = self.pool.begin().await?;

        let expired: Vec<(String, Uuid)> = sqlx::query_as(
            r#"
            SELECT dataset_id, id
            FROM jobs
            WHERE status = 'running'
              AND lock_expires_at IS NOT NULL
              AND lock_expires_at < now()
            FOR UPDATE SKIP LOCKED
            "#,
        )
        .fetch_all(&mut *tx)
        .await?;

        if expired.is_empty() {
            tx.commit().await?;
            return Ok(0);
        }

        let dataset_ids: Vec<String> = expired
            .iter()
            .map(|(dataset_id, _)| dataset_id.clone())
            .collect();
        let job_ids: Vec<Uuid> = expired.iter().map(|(_, job_id)| *job_id).collect();

        sqlx::query(
            r#"
            UPDATE job_attempts a
            SET status = 'failed',
                finished_at = now(),
                latency_ms = COALESCE(
                  latency_ms,
                  GREATEST(0, (EXTRACT(EPOCH FROM (now() - started_at)) * 1000)::int)
                ),
                error_code = 'LEASE_EXPIRED',
                error_message = 'worker lease expired before ACK'
            WHERE a.dataset_id = ANY($1)
              AND a.job_id = ANY($2)
              AND a.status = 'running'
            "#,
        )
        .bind(&dataset_ids)
        .bind(&job_ids)
        .execute(&mut *tx)
        .await?;

        let res = sqlx::query(
            r#"
            UPDATE jobs
            SET status = 'queued',
                locked_at = NULL,
                locked_by = NULL,
                lock_expires_at = NULL,
                updated_at = now()
            WHERE status = 'running'
              AND lock_expires_at IS NOT NULL
              AND lock_expires_at < now()
            "#,
        )
        .execute(&mut *tx)
        .await?;

        tx.commit().await?;

        Ok(res.rows_affected())
    }

    // ----------------------------
    // State transitions
    // ----------------------------

    /// Fast-path for successful batch execution: transitions many jobs in one statement.
    pub async fn mark_succeeded_batch(
        &self,
        job_ids: &[Uuid],
        worker_id: &str,
    ) -> anyhow::Result<u64> {
        if job_ids.is_empty() {
            return Ok(0);
        }

        let res = sqlx::query(
            r#"
            UPDATE jobs
            SET status = 'succeeded',
                locked_at = NULL,
                locked_by = NULL,
                lock_expires_at = NULL,
                updated_at = now()
            WHERE id = ANY($1)
              AND locked_by = $2
              AND status = 'running'
            "#,
        )
        .bind(job_ids)
        .bind(worker_id)
        .execute(&self.pool)
        .await?;

        let changed = res.rows_affected();
        if changed != job_ids.len() as u64 {
            anyhow::bail!(
                "illegal job state transition to completed: expected {} running jobs leased by {worker_id}, updated {changed}",
                job_ids.len()
            );
        }

        Ok(changed)
    }

    /// Dataset-aware fast-path for partition-pruned successful batch updates.
    pub async fn mark_succeeded_batch_for_dataset(
        &self,
        dataset_id: &str,
        job_ids: &[Uuid],
        worker_id: &str,
    ) -> anyhow::Result<u64> {
        if job_ids.is_empty() {
            return Ok(0);
        }

        let res = sqlx::query(
            r#"
            UPDATE jobs
            SET status = 'succeeded',
                locked_at = NULL,
                locked_by = NULL,
                lock_expires_at = NULL,
                updated_at = now()
            WHERE dataset_id = $1
              AND id = ANY($2)
              AND locked_by = $3
              AND status = 'running'
            "#,
        )
        .bind(dataset_id)
        .bind(job_ids)
        .bind(worker_id)
        .execute(&self.pool)
        .await?;

        let changed = res.rows_affected();
        if changed != job_ids.len() as u64 {
            anyhow::bail!(
                "illegal job state transition to completed: expected {} running jobs in dataset {dataset_id} leased by {worker_id}, updated {changed}",
                job_ids.len()
            );
        }

        Ok(changed)
    }

    pub async fn mark_succeeded(&self, job_id: Uuid, worker_id: &str) -> anyhow::Result<()> {
        let res = sqlx::query(
            r#"
            UPDATE jobs
            SET status = 'succeeded',
                locked_at = NULL,
                locked_by = NULL,
                lock_expires_at = NULL,
                updated_at = now()
            WHERE id = $1
              AND locked_by = $2
              AND status = 'running'
            "#,
        )
        .bind(job_id)
        .bind(worker_id)
        .execute(&self.pool)
        .await?;
        if res.rows_affected() != 1 {
            anyhow::bail!(
                "illegal job state transition to completed for job {job_id}: expected running lease held by {worker_id}"
            );
        }

        Ok(())
    }

    pub async fn reschedule_for_retry(
        &self,
        job_id: Uuid,
        next_run_at: DateTime<Utc>,
        last_error_code: Option<&str>,
        last_error_message: Option<&str>,
    ) -> anyhow::Result<()> {
        let res = sqlx::query(
            r#"
            UPDATE jobs
            SET status = 'queued',
                run_at = $2,
                locked_at = NULL,
                locked_by = NULL,
                lock_expires_at = NULL,
                updated_at = now(),
                last_error_code = $3,
                last_error_message = $4
            WHERE id = $1
              AND status = 'running'
            "#,
        )
        .bind(job_id)
        .bind(next_run_at)
        .bind(last_error_code)
        .bind(last_error_message)
        .execute(&self.pool)
        .await?;
        if res.rows_affected() != 1 {
            anyhow::bail!(
                "illegal job state transition to retry_wait for job {job_id}: expected running job"
            );
        }

        Ok(())
    }

    pub async fn mark_failed(
        &self,
        job_id: Uuid,
        worker_id: &str,
        last_error_code: Option<&str>,
        last_error_message: Option<&str>,
    ) -> anyhow::Result<()> {
        let res = sqlx::query(
            r#"
            UPDATE jobs
            SET status = 'failed',
                locked_at = NULL,
                locked_by = NULL,
                lock_expires_at = NULL,
                updated_at = now(),
                last_error_code = $3,
                last_error_message = $4
            WHERE id = $1
              AND locked_by = $2
              AND status = 'running'
            "#,
        )
        .bind(job_id)
        .bind(worker_id)
        .bind(last_error_code)
        .bind(last_error_message)
        .execute(&self.pool)
        .await?;
        if res.rows_affected() != 1 {
            anyhow::bail!(
                "illegal job state transition to failed for job {job_id}: expected running lease held by {worker_id}"
            );
        }

        Ok(())
    }

    pub async fn mark_dlq(
        &self,
        job_id: Uuid,
        worker_id: &str,
        reason_code: &str,
        last_error_code: Option<&str>,
        last_error_message: Option<&str>,
    ) -> anyhow::Result<()> {
        let res = sqlx::query(
            r#"
            UPDATE jobs
            SET status = 'dlq',
                dlq_reason_code = $3,
                dlq_at = now(),
                locked_at = NULL,
                locked_by = NULL,
                lock_expires_at = NULL,
                updated_at = now(),
                last_error_code = $4,
                last_error_message = $5
            WHERE id = $1
              AND locked_by = $2
              AND status = 'running'
            "#,
        )
        .bind(job_id)
        .bind(worker_id)
        .bind(reason_code)
        .bind(last_error_code)
        .bind(last_error_message)
        .execute(&self.pool)
        .await?;
        if res.rows_affected() != 1 {
            anyhow::bail!(
                "illegal job state transition to dlq for job {job_id}: expected running lease held by {worker_id}"
            );
        }

        Ok(())
    }

    pub async fn cancel_job(&self, job_id: Uuid, worker_id: Option<&str>) -> anyhow::Result<()> {
        let mut tx = self.pool.begin().await?;

        let current: Option<(String, Option<String>)> =
            sqlx::query_as("SELECT status, locked_by FROM jobs WHERE id = $1")
                .bind(job_id)
                .fetch_optional(&mut *tx)
                .await?;

        let Some((status, locked_by)) = current else {
            anyhow::bail!("job {job_id} not found");
        };

        match status.as_str() {
            "queued" => {}
            "running" => {
                let Some(worker_id) = worker_id else {
                    anyhow::bail!(
                        "cannot cancel running job {job_id}: worker identity is required"
                    );
                };
                if locked_by.as_deref() != Some(worker_id) {
                    anyhow::bail!(
                        "illegal job state transition to cancelled for job {job_id}: expected running lease held by {worker_id}"
                    );
                }
            }
            "succeeded" | "dlq" | "canceled" => {
                anyhow::bail!("cannot cancel terminal job {job_id}: status={status}");
            }
            other => anyhow::bail!("cannot cancel job {job_id}: invalid status={other}"),
        }

        if status == "running" {
            sqlx::query(
                r#"
                UPDATE job_attempts
                SET status = 'failed',
                    finished_at = now(),
                    latency_ms = COALESCE(latency_ms, 0),
                    error_code = 'CANCELLED',
                    error_message = 'job cancelled'
                WHERE id = (
                    SELECT id
                    FROM job_attempts
                    WHERE job_id = $1
                      AND status = 'running'
                    ORDER BY attempt_no DESC
                    LIMIT 1
                )
                "#,
            )
            .bind(job_id)
            .execute(&mut *tx)
            .await?;
        }

        sqlx::query(
            r#"
            UPDATE jobs
            SET status = 'canceled',
                locked_at = NULL,
                locked_by = NULL,
                lock_expires_at = NULL,
                updated_at = now()
            WHERE id = $1
            "#,
        )
        .bind(job_id)
        .execute(&mut *tx)
        .await?;

        tx.commit().await?;
        Ok(())
    }

    // ----------------------------
    // Replay
    // ----------------------------

    pub async fn replay_job(
        &self,
        job_id: Uuid,
        override_queue: Option<&str>,
        override_run_at: Option<DateTime<Utc>>,
    ) -> anyhow::Result<Uuid> {
        let src = match self.get_job(job_id).await? {
            Some(j) => j,
            None => return Err(anyhow::anyhow!("Job with id {} not found", job_id)),
        };

        let new_queue = override_queue.unwrap_or(src.queue.as_str()).to_string();
        let new_run_at = override_run_at.unwrap_or_else(Utc::now);
        let new_dataset_id = Self::dataset_id_for(&new_queue, new_run_at);

        self.ensure_dataset_partition(&new_dataset_id).await?;

        let mut tx = self.pool.begin().await?;

        let new_id = sqlx::query_scalar::<_, Uuid>(
            r#"
            INSERT INTO jobs (
                dataset_id,
                queue, job_type, payload_json, run_at,
                deadline_at, timeout_seconds, recurring_interval_seconds,
                status, priority, max_attempts,
                locked_at, locked_by, lock_expires_at,
                dlq_reason_code, dlq_at,
                replay_of_job_id
            )
            VALUES (
                $1,
                $2, $3, $4, $5,
                $6::timestamptz, $7::integer, $8::integer,
                'queued', $9, $10,
                NULL, NULL, NULL,
                NULL, NULL,
                $11
            )
            RETURNING id
            "#,
        )
        .bind(new_dataset_id)
        .bind(&new_queue)
        .bind(src.job_type)
        .bind(src.payload)
        .bind(new_run_at)
        .bind(src.deadline_at)
        .bind(src.timeout_seconds)
        .bind(src.recurring_interval_seconds)
        .bind(src.priority)
        .bind(src.max_attempts)
        .bind(src.id)
        .fetch_one(&mut *tx)
        .await?;

        tx.commit().await?;

        let channel = Self::notify_channel_name(&new_queue);
        let _ = sqlx::query("SELECT pg_notify($1, '')")
            .bind(&channel)
            .execute(&self.pool)
            .await;

        Ok(new_id)
    }

    /// Subscribes to PostgreSQL `LISTEN` events for job enqueueing on a channel named `azums_job_enqueued_<queue>`.
    pub async fn subscribe(&self, queue: &str) -> anyhow::Result<azums_core::NotificationStream> {
        use sqlx::postgres::PgListener;
        use tokio_stream::StreamExt;

        let channel = Self::notify_channel_name(queue);
        let mut listener = if let Some(url) = &self.database_url {
            PgListener::connect(url).await?
        } else {
            PgListener::connect_with(&self.pool).await?
        };
        listener.listen(&channel).await?;

        let stream = listener
            .into_stream()
            .filter_map(|res| res.ok().map(|_| ()));
        Ok(Box::pin(stream))
    }
}