הדף הציג את התורים באופן לא-אחיד (by_status גולמי), בלי הבחנה בין "ממתין"
(בקלוג: status=pending) ל"בתור" (התור הפעיל: requested_at IS NOT NULL), בלי
הצגת הפריט שרץ כרגע, ובלי שום שליטה בתהליכים.
מה נוסף:
1. כרטיסי-תור אחידים — בתור / ממתין(בקלוג) / בעיבוד / הושלם / נכשל + "רץ עכשיו"
(citation/case_number של הפריט בעיבוד) לכל drain (אחזור-פסיקה, מטא-דאטה,
הלכות, יומונים). שערי-אנוש (אישור-הלכות, פסיקה-חסרה) נשארים מוני-סטטוס.
2. פאנל ניהול-תהליכים בסגנון "שירותי Windows":
- דמון (court-fetch-service/xvfb/chat/reaper): הפעל-מחדש / עצור / הפעל.
- cron drain: "הרץ עכשיו" (pm2 restart) + מתג הפעל/כבה תזמון.
3. כל תגי-הסטטוס מתורגמים לעברית.
מנגנון:
- הפעל/כבה תזמון = דגל ב-DB (טבלה drain_controls). pm2 cron_restart מחיה תהליך
שעוצר ב-stop, לכן ה"כיבוי" האמין הוא דגל שכל drain בודק ב-startup (no-op מיידי
כשכבוי). הקונטיינר כותב/קורא ישירות מ-DB.
- הרץ-עכשיו + restart/stop/start = proxy ל-pm2 דרך endpoint חדש בגשר-המארח
(court_fetch_service /pm2/control), מאובטח Bearer + whitelist ל-legal-* בלבד.
- יומונים: drain_digests הועבר מ-crontab ל-pm2 (legal-digest-drain.config.cjs)
כדי שיופיע ויהיה שליט כמו כל drain. drain_halacha_queue.py הובא לבקרת-גרסאות.
Invariants: מקיים G2 (הרחבת /operations + הגשר הקיים, לא מסלול מקביל) ו-G1
(drain_controls = מקור-אמת יחיד לכיבוי, נורמליזציה במקור ולא תיקון-בקריאה).
אין בליעת שגיאות שקטה (הגשר מחזיר {ok,error}; המוטציות מציגות toast).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
38 lines
1.5 KiB
JavaScript
38 lines
1.5 KiB
JavaScript
/**
|
|
* pm2 ecosystem entry for legal-digest-drain — scheduled (every 2 h) drain of
|
|
* the digest-enrichment queue (X12: "כל יום" yomonim → Sonnet enrichment +
|
|
* embedding + autolink). Migrated from a bare system crontab line to pm2 so it
|
|
* appears in — and is controllable from — the /operations dashboard (run-now /
|
|
* enable / disable) like every other drain.
|
|
*
|
|
* Pattern: cron_restart fires the script on schedule; autorestart:false → runs
|
|
* once and exits (pm2 shows "stopped" between ticks — expected). The script
|
|
* already serialises itself (it self-heals stale 'processing' rows), so no flock
|
|
* is needed under pm2's one-shot model.
|
|
*
|
|
* Requires (host ~/.env via legal_mcp.config): POSTGRES_URL, VOYAGE_API_KEY, and
|
|
* the local `claude` CLI on PATH (the script prepends ~/.local/bin).
|
|
*
|
|
* Install (once):
|
|
* pm2 start /home/chaim/legal-ai/scripts/legal-digest-drain.config.cjs
|
|
* pm2 save
|
|
* Run now (manual): mcp-server/.venv/bin/python scripts/drain_digests.py
|
|
* Schedule override: DIGEST_DRAIN_CRON (default every 2 h at :00).
|
|
*/
|
|
const cron = process.env.DIGEST_DRAIN_CRON || "0 */2 * * *";
|
|
|
|
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "legal-digest-drain",
|
|
cwd: "/home/chaim/legal-ai",
|
|
script: "/home/chaim/legal-ai/mcp-server/.venv/bin/python",
|
|
args: "scripts/drain_digests.py",
|
|
env: { HOME: "/home/chaim", PYTHONUNBUFFERED: "1" },
|
|
autorestart: false, // one-shot per cron tick
|
|
cron_restart: cron,
|
|
max_memory_restart: "800M",
|
|
},
|
|
],
|
|
};
|