File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22-- One record per orchestration run (process level).
33-- Mirrors the BatchExecution concept from DatasetTraceService (Datastore),
44-- allowing future migration of batch_process_dataset, batch_datasets, gbfs_validator.
5- CREATE TABLE IF NOT EXISTS TaskRun (
5+ CREATE TABLE IF NOT EXISTS task_run (
66 id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
77 task_name VARCHAR NOT NULL ,
88 run_id VARCHAR NOT NULL ,
@@ -18,7 +18,7 @@ CREATE TABLE IF NOT EXISTS TaskRun (
1818-- One record per entity/workflow execution within a run.
1919-- entity_id is nullable for tasks that do not operate on a specific entity.
2020-- Mirrors the DatasetTrace concept from DatasetTraceService (Datastore).
21- CREATE TABLE IF NOT EXISTS TaskExecutionLog (
21+ CREATE TABLE IF NOT EXISTS task_execution_log (
2222 id SERIAL PRIMARY KEY ,
2323 task_run_id UUID REFERENCES task_run(id),
2424 task_name VARCHAR NOT NULL ,
You can’t perform that action at this time.
0 commit comments