Commit 0f98b18
committed
Remove legacy schema-wide jobs system
Replace schema-wide `~jobs` table with per-table JobsTable (Autopopulate 2.0):
- Delete src/datajoint/jobs.py (old JobTable class)
- Remove legacy_jobs property from Schema class
- Delete tests/test_jobs.py (old schema-wide tests)
- Remove clean_jobs fixture and schema.jobs.delete() cleanup calls
- Update test_autopopulate.py to use new per-table jobs API
The new system provides per-table job queues with FK-derived primary keys,
rich status tracking (pending/reserved/success/error/ignore), priority
scheduling, and proper handling of job collisions.1 parent e89e064 commit 0f98b18
5 files changed
Lines changed: 8 additions & 336 deletions
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
14 | 13 | | |
15 | 14 | | |
16 | 15 | | |
| |||
70 | 69 | | |
71 | 70 | | |
72 | 71 | | |
73 | | - | |
74 | 72 | | |
75 | 73 | | |
76 | 74 | | |
| |||
354 | 352 | | |
355 | 353 | | |
356 | 354 | | |
357 | | - | |
358 | | - | |
359 | | - | |
360 | | - | |
361 | | - | |
362 | | - | |
363 | | - | |
364 | | - | |
365 | | - | |
366 | | - | |
367 | | - | |
368 | | - | |
369 | | - | |
370 | | - | |
371 | | - | |
372 | 355 | | |
373 | 356 | | |
374 | 357 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
21 | 20 | | |
22 | 21 | | |
23 | 22 | | |
| |||
55 | 54 | | |
56 | 55 | | |
57 | 56 | | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | 57 | | |
74 | 58 | | |
75 | 59 | | |
| |||
569 | 553 | | |
570 | 554 | | |
571 | 555 | | |
572 | | - | |
573 | | - | |
574 | | - | |
575 | | - | |
576 | 556 | | |
577 | 557 | | |
578 | 558 | | |
| |||
612 | 592 | | |
613 | 593 | | |
614 | 594 | | |
615 | | - | |
616 | | - | |
617 | | - | |
618 | | - | |
619 | 595 | | |
620 | 596 | | |
621 | 597 | | |
| |||
624 | 600 | | |
625 | 601 | | |
626 | 602 | | |
627 | | - | |
628 | | - | |
629 | | - | |
630 | | - | |
631 | 603 | | |
632 | 604 | | |
633 | 605 | | |
| |||
667 | 639 | | |
668 | 640 | | |
669 | 641 | | |
670 | | - | |
671 | | - | |
672 | | - | |
673 | | - | |
674 | 642 | | |
675 | 643 | | |
676 | 644 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
69 | 73 | | |
70 | 74 | | |
71 | 75 | | |
72 | | - | |
| 76 | + | |
73 | 77 | | |
74 | | - | |
| 78 | + | |
| 79 | + | |
75 | 80 | | |
76 | 81 | | |
77 | 82 | | |
| |||
0 commit comments