home / football

ingestion_run

5 rows where operator_id = 1

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: status, rows_inserted, 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
3 International Results CSV 1 system 1 feature_store running       0 0 0 0 2026-06-07 07:00:10      
4 International Results CSV 1 system 1 feature_store failed       0 0 0 0 2026-06-07 07:02:43 2026-06-07 07:02:43.548918 548  
5 International Results CSV 1 system 1 feature_store success       172035 0 0 0 2026-06-07 07:02:56 2026-06-07 07:03:30.555565 34555  
17 International Results CSV 1 system 1 feature_store running       0 0 0 0 2026-06-11 10:23:50      
18 International Results CSV 1 system 1 feature_store success       27290 0 0 0 2026-06-11 10:25:03 2026-06-11 10:25:20.687373 17687  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);
Powered by Datasette · Queries took 23.323ms