@exellix/jobs-ui 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -5
- package/dist/assets/index-Bs8g4vza.js +61 -0
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/dist/assets/index-CvDv2DRH.js +0 -61
package/README.md
CHANGED
|
@@ -222,6 +222,7 @@ Factory run list with infinite scroll.
|
|
|
222
222
|
|
|
223
223
|
- Scope: total / today / this week / this month.
|
|
224
224
|
- Filters: status, source type, ongoing work, batch, graph, entity, record ID.
|
|
225
|
+
- When filtered by batch with failures, banner links to **Recover batch** on batch detail.
|
|
225
226
|
- Bulk cancel for pending/blocked runs (multi-select).
|
|
226
227
|
- Status count chips from API.
|
|
227
228
|
|
|
@@ -235,6 +236,29 @@ Factory run list with infinite scroll.
|
|
|
235
236
|
|
|
236
237
|
Actions: **Re-run** (new journal entry), **Execute now** (inline worker), **Run next when slot available**, **Retry same entry**, **Cancel**.
|
|
237
238
|
|
|
239
|
+
Transient infrastructure failures (Mongo blips, timeouts) retry automatically up to **max attempts** (app default 4 for batches — configure under Settings → Transient failure retries). Run detail shows scheduled retries and exhausted-attempt hints.
|
|
240
|
+
|
|
241
|
+
### On-demand batch (`/on-demand/batch`)
|
|
242
|
+
|
|
243
|
+
Multi-step wizard: entity → narratives → graph → writeback → processing → context → properties → review.
|
|
244
|
+
|
|
245
|
+
- **Max retries** per batch (falls back to app default).
|
|
246
|
+
- **Preflight** runs automatically on review when ≥50 items are eligible — blocking issues disable **Queue batch** (same as CLI `--preflight`).
|
|
247
|
+
- **Recent batches** on the On-Demand hub (`/on-demand`) with progress and failed counts.
|
|
248
|
+
|
|
249
|
+
**Batch detail** (`/on-demand/batch/:id`):
|
|
250
|
+
|
|
251
|
+
- Accounting headline (matched → queued, skips, failures).
|
|
252
|
+
- Failure breakdown by cause with sample journal links.
|
|
253
|
+
- **Recover batch** — resume paused queue + retry all failed runs.
|
|
254
|
+
- **Retry failed only** — bulk retry without changing queue mode.
|
|
255
|
+
|
|
256
|
+
### Settings (`/settings`)
|
|
257
|
+
|
|
258
|
+
- **Job manager** card — pause/resume with running/pending/held counts.
|
|
259
|
+
- **Queue execution** — max concurrent jobs, admission check interval (15s – 2 min).
|
|
260
|
+
- **Transient failure retries** — default max attempts for batch jobs and ongoing work (default **4**). Saved via `PUT /api/settings`.
|
|
261
|
+
|
|
238
262
|
### Pipeline analytics (`/pipelines`)
|
|
239
263
|
|
|
240
264
|
Two modes (tab switcher):
|
|
@@ -246,11 +270,6 @@ Drill-down routes: `/pipelines/:graphId`, `/pipelines/entity/:entityName`.
|
|
|
246
270
|
|
|
247
271
|
Links from run detail and journal rows open the matching pipeline view.
|
|
248
272
|
|
|
249
|
-
### Settings (`/settings`)
|
|
250
|
-
|
|
251
|
-
- **Job manager** card — pause/resume with running/pending/held counts.
|
|
252
|
-
- **Queue execution** — max concurrent jobs, admission check interval (15s – 2 min). Saved via `PUT /api/settings`.
|
|
253
|
-
|
|
254
273
|
### Global controls (top bar)
|
|
255
274
|
|
|
256
275
|
- **Queue manager toggle** — pause/resume without leaving the current page.
|
|
@@ -271,6 +290,8 @@ Links from run detail and journal rows open the matching pipeline view.
|
|
|
271
290
|
| `ContentTypeAssembler` | Related-record context for single runs |
|
|
272
291
|
| `PipelineExecutionDiagram` / `PipelinePerformancePanel` | Run and aggregate analytics |
|
|
273
292
|
| `ExclusionPanel` | Why items were skipped in evaluations/batches |
|
|
293
|
+
| `BatchAccountingHeadline` | Matched → queued → skipped/failed summary on batch pages |
|
|
294
|
+
| `MaxAttemptsField` | Per-batch/work max transient retry attempts |
|
|
274
295
|
| `InfiniteScrollFooter` | Paginated list footers |
|
|
275
296
|
| `LiveConsole` | Streaming run events |
|
|
276
297
|
| `DagView` | Item-level multi-run dependency graph (`/items/:itemId`) |
|