ingestion_run
3 rows where operator_id = 2
This data as json, CSV (advanced)
Suggested facets: status, rows_skipped, started_at (date), ended_at (date)
| run_id ▼ | source_id | operator_id | target_table | status | raw_file_path | api_endpoint | checksum_md5 | rows_inserted | rows_updated | rows_skipped | rows_failed | started_at | ended_at | duration_ms | extra |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | International Results CSV 1 | martin 2 | match | running | /home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv | 88b95c2de942c51233623c6e4806aa96 | 0 | 0 | 0 | 0 | 2026-06-07 06:58:30 | ||||
| 2 | International Results CSV 1 | martin 2 | match | success | /home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv | 88b95c2de942c51233623c6e4806aa96 | 0 | 2 | 49409 | 0 | 2026-06-07 06:59:16 | 2026-06-07 06:59:41.719240 | 25719 | ||
| 6 | International Results CSV 1 | martin 2 | match | success | /home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv | 88b95c2de942c51233623c6e4806aa96 | 0 | 49411 | 0 | 0 | 2026-06-07 21:03:43 | 2026-06-07 21:04:11.930074 | 28930 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE ingestion_run ( run_id INTEGER NOT NULL, source_id INTEGER NOT NULL, operator_id INTEGER NOT NULL, target_table VARCHAR(64), status VARCHAR(7) NOT NULL, raw_file_path VARCHAR(1024), api_endpoint VARCHAR(1024), checksum_md5 VARCHAR(32), rows_inserted INTEGER NOT NULL, rows_updated INTEGER NOT NULL, rows_skipped INTEGER NOT NULL, rows_failed INTEGER NOT NULL, started_at DATETIME NOT NULL, ended_at DATETIME, duration_ms INTEGER, extra JSON, PRIMARY KEY (run_id), FOREIGN KEY(source_id) REFERENCES data_source (source_id), FOREIGN KEY(operator_id) REFERENCES operator (operator_id) ); CREATE INDEX ix_ingestion_run_source_id ON ingestion_run (source_id); CREATE INDEX ix_ingestion_run_operator_id ON ingestion_run (operator_id);