azums 0.1.1

High-performance job queue & streaming engine for Rust — from embedded to cloud
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
// 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;
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()
        }
    }

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

    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::{JobsRepo, NewJob, 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 job_id = repo.enqueue(NewJob {
    ///     queue: "default".to_string(),
    ///     job_type: "email_send".to_string(),
    ///     payload_json: serde_json::json!({"to": "user@example.com"}),
    ///     run_at: Utc::now(),
    ///     priority: 0,
    ///     max_attempts: 5,
    /// }).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, queue, job_type, payload_json, run_at, status, priority, max_attempts
            )
            VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
            RETURNING id
            "#,
        )
        .bind(dataset_id)
        .bind(&job.queue)
        .bind(job.job_type)
        .bind(job.payload_json)
        .bind(job.run_at)
        .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)
    }

    /// 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,
            run_at: Utc::now(),
            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,
            run_at: Utc::now() + chrono::Duration::seconds(delay_secs),
            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,
            run_at,
            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, queue, job_type, status,
                        run_at, 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, queue, job_type, status,
                        run_at, 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, queue, job_type, status,
                        run_at, 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, queue, job_type, status,
                        run_at, 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, queue, job_type, status,
                        run_at, 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, queue, job_type, status,
                        run_at, 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, queue, job_type, status,
                        run_at, 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, queue, job_type, status,
                        run_at, 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?;

        // 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 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(&self.pool)
        .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
            "#,
        )
        .bind(job_ids)
        .bind(worker_id)
        .execute(&self.pool)
        .await?;

        Ok(res.rows_affected())
    }

    /// 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
            "#,
        )
        .bind(dataset_id)
        .bind(job_ids)
        .bind(worker_id)
        .execute(&self.pool)
        .await?;

        Ok(res.rows_affected())
    }

    pub async fn mark_succeeded(&self, job_id: Uuid, worker_id: &str) -> anyhow::Result<()> {
        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
            "#,
        )
        .bind(job_id)
        .bind(worker_id)
        .execute(&self.pool)
        .await?;

        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<()> {
        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
            "#,
        )
        .bind(job_id)
        .bind(next_run_at)
        .bind(last_error_code)
        .bind(last_error_message)
        .execute(&self.pool)
        .await?;

        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<()> {
        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
            "#,
        )
        .bind(job_id)
        .bind(worker_id)
        .bind(last_error_code)
        .bind(last_error_message)
        .execute(&self.pool)
        .await?;

        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<()> {
        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
            "#,
        )
        .bind(job_id)
        .bind(worker_id)
        .bind(reason_code)
        .bind(last_error_code)
        .bind(last_error_message)
        .execute(&self.pool)
        .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, 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, 'queued', $6, $7,
                NULL, NULL, NULL,
                NULL, NULL,
                $8
            )
            RETURNING id
            "#,
        )
        .bind(new_dataset_id)
        .bind(&new_queue)
        .bind(src.job_type)
        .bind(src.payload)
        .bind(new_run_at)
        .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))
    }
}