EMP-38: add scenarios (#3)

Co-authored-by: ttt161 <losto@nix>
This commit is contained in:
ttt161 2024-10-28 14:50:31 +03:00 committed by GitHub
parent c999ef02fe
commit 0a8b6f9f6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 270 additions and 151 deletions

316
README.md
View File

@ -1,77 +1,249 @@
# progressor # progressor
## Usage ## Использование
TODO TODO
## Observability ## Мониторинг и логирование
\# HELP progressor_notification_duration_ms Notification durations in millisecond Доступны следующие метрики:
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="lifecycle_sink",le="10"} 9311
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="lifecycle_sink",le="50"} 9311 - TYPE progressor_calls_scanning_duration_ms histogram
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="lifecycle_sink",le="150"} 9311 HELP progressor_calls_scanning_duration_ms Calls (call, repair) scanning durations in millisecond
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="lifecycle_sink",le="300"} 9311 - TYPE progressor_timers_scanning_duration_ms histogram
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="lifecycle_sink",le="500"} 9311 HELP progressor_timers_scanning_duration_ms Timers (timeout, remove) scanning durations in millisecond
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="lifecycle_sink",le="1000"} 9311 - TYPE progressor_zombie_collection_duration_ms histogram
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="lifecycle_sink",le="+Inf"} 9311 HELP progressor_zombie_collection_duration_ms Zombie tasks collecting durations in millisecond
progressor_notification_duration_ms_count{service="hellgate",namespace="default",notification_type="lifecycle_sink"} 9311 - TYPE progressor_request_preparing_duration_ms histogram
progressor_notification_duration_ms_sum{service="hellgate",namespace="default",notification_type="lifecycle_sink"} 60 HELP progressor_request_preparing_duration_ms Preparing request (init, call, repair) durations in millisecond
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="event_sink",le="10"} 9311 - TYPE progressor_task_processing_duration_ms histogram
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="event_sink",le="50"} 9311 HELP progressor_task_processing_duration_ms Task processing durations in millisecond
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="event_sink",le="150"} 9311 - TYPE progressor_task_completion_duration_ms histogram
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="event_sink",le="300"} 9311 HELP progressor_task_completion_duration_ms Task completion durations in millisecond
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="event_sink",le="500"} 9311 - TYPE progressor_process_removing_duration_ms histogram
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="event_sink",le="1000"} 9311 HELP progressor_process_removing_duration_ms Task completion durations in millisecond
progressor_notification_duration_ms_bucket{service="hellgate",namespace="default",notification_type="event_sink",le="+Inf"} 9311 - TYPE progressor_notification_duration_ms histogram
progressor_notification_duration_ms_count{service="hellgate",namespace="default",notification_type="event_sink"} 9311 HELP progressor_notification_duration_ms Notification durations in millisecond
progressor_notification_duration_ms_sum{service="hellgate",namespace="default",notification_type="event_sink"} 19
\# TYPE progressor_task_completion_duration_ms histogram ## Базовые сценарии
\# HELP progressor_task_completion_duration_ms Task completion durations in millisecond
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_suspend",le="50"} 26 Схема БД здесь: https://github.com/valitydev/progressor/blob/master/priv/schemas/postgres-schema.sql
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_suspend",le="150"} 32
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_suspend",le="300"} 50 ### Старт экземпляра процесса
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_suspend",le="500"} 50
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_suspend",le="750"} 50 ```mermaid
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_suspend",le="1000"} 50 sequenceDiagram
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_suspend",le="+Inf"} 50 box Client
progressor_task_completion_duration_ms_count{service="hellgate",namespace="default",completion_type="complete_and_suspend"} 50 participant Client
progressor_task_completion_duration_ms_sum{service="hellgate",namespace="default",completion_type="complete_and_suspend"} 5100 end
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_continue",le="50"} 298 box Grey Progressor
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_continue",le="150"} 4596 participant API_Handler
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_continue",le="300"} 8926 participant Storage
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_continue",le="500"} 9258 participant Worker
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_continue",le="750"} 9261 end
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_continue",le="1000"} 9261 box Processor
progressor_task_completion_duration_ms_bucket{service="hellgate",namespace="default",completion_type="complete_and_continue",le="+Inf"} 9261 participant Process
progressor_task_completion_duration_ms_count{service="hellgate",namespace="default",completion_type="complete_and_continue"} 9261 end
progressor_task_completion_duration_ms_sum{service="hellgate",namespace="default",completion_type="complete_and_continue"} 1473582
\# TYPE progressor_process_removing_duration_ms histogram Client->>+API_Handler: Start
\# HELP progressor_process_removing_duration_ms Task completion durations in millisecond API_Handler->>+Storage: PrepareInit
\# TYPE progressor_task_processing_duration_ms histogram Storage->>-API_Handler: TaskId
\# HELP progressor_task_processing_duration_ms Task processing durations in millisecond API_Handler->>+Worker: ProcessTask
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="timeout",le="50"} 9261 Worker->>+Process: Process
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="timeout",le="150"} 9261 Process->>-Worker: Result
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="timeout",le="300"} 9261 Worker->>+Storage: SaveResult
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="timeout",le="500"} 9261 Storage->>-Worker: OK
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="timeout",le="750"} 9261 Worker->>API_Handler: Response
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="timeout",le="1000"} 9261 API_Handler->>-Client: Response
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="timeout",le="+Inf"} 9261 ```
progressor_task_processing_duration_ms_count{service="hellgate",namespace="default",task_type="timeout"} 9261
progressor_task_processing_duration_ms_sum{service="hellgate",namespace="default",task_type="timeout"} 176 PrepareInit.sql
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="init",le="50"} 25 ```sql
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="init",le="150"} 25 -- сохраняем новый процесс
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="init",le="300"} 25 INSERT INTO ProcessTable (process_id, status, detail, aux_state, metadata) VALUES ($1, $2, $3, $4, $5);
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="init",le="500"} 25
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="init",le="750"} 25 -- сохраняем задачу в историческую таблицу
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="init",le="1000"} 25 INSERT INTO TaskTable
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="init",le="+Inf"} 25 (process_id, task_type, status, scheduled_time, running_time, args, metadata, idempotency_key,
progressor_task_processing_duration_ms_count{service="hellgate",namespace="default",task_type="init"} 25 blocked_task, response, last_retry_interval, attempts_count, context)
progressor_task_processing_duration_ms_sum{service="hellgate",namespace="default",task_type="init"} 0 VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) RETURNING task_id;
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="call",le="50"} 25
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="call",le="150"} 25 -- сохраняем задачу как запущенную
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="call",le="300"} 25 INSERT INTO RunningTable
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="call",le="500"} 25 (task_id, process_id, task_type, status, scheduled_time, running_time, args, metadata,
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="call",le="750"} 25 last_retry_interval, attempts_count, context)
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="call",le="1000"} 25 VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11)
progressor_task_processing_duration_ms_bucket{service="hellgate",namespace="default",task_type="call",le="+Inf"} 25 ON CONFLICT (process_id) DO NOTHING RETURNING task_id;
progressor_task_processing_duration_ms_count{service="hellgate",namespace="default",task_type="call"} 25 ```
progressor_task_processing_duration_ms_sum{service="hellgate",namespace="default",task_type="call"} 1 здесь и далее все примеры запросов выполняются транзакционно, то есть обернуты в BEGIN - COMMIT|ROLLBACK
В случае отсутствия свободных воркеров задача вместо RunningTable будет сохранена в ScheduleTable:
```sql
-- сохраняем задачу как запланированную
INSERT INTO ScheduleTable
(task_id, process_id, task_type, status, scheduled_time, args, metadata,
last_retry_interval, attempts_count, context)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING task_id;
```
Следующий запрос представлен для случая, когда процессор запланировал следующий вызов с нулевым таймаутом
(наиболее частый вариант)
SaveResult.sql
```sql
-- обновляем процесс
UPDATE ProcessesTable
SET status = $1, detail = $2, aux_state = $3, metadata = $4, corrupted_by = $5
WHERE process_id = $6;
-- сохраняем события
INSERT INTO EventsTable (process_id, task_id, event_id, timestamp, payload, metadata)
VALUES ($1, $2, $3, $4, $5, $6);
-- отменяем ранее запланированные таймеры, так как получили новый
WITH deleted_tasks as(
DELETE FROM ScheduleTable WHERE process_id = $1 AND task_type IN ('timeout', 'remove')
AND (status = 'waiting' OR status = 'blocked') RETURNING task_id
)
MERGE INTO TaskTable as tt USING deleted_tasks as dt ON tt.task_id = dt.task_id
WHEN MATCHED THEN UPDATE SET status = 'cancelled';
-- сохраняем новую задачу (вызов с нулевым таймаутом) в историческую таблицу
INSERT INTO TaskTable
(process_id, task_type, status, scheduled_time, running_time, args, metadata, idempotency_key,
blocked_task, response, last_retry_interval, attempts_count, context)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) RETURNING task_id;
-- финализируем завершёную задачу
WITH deleted AS(
DELETE FROM RunningTable WHERE process_id = $4
)
UPDATE TaskTable SET status = $1, response = $2, finished_time = $3 WHERE task_id = $5;
-- проверяем не появились ли внешние вызовы за время процессинга
WITH postponed_tasks AS (
DELETE FROM ScheduleTable WHERE task_id = (SELECT min(task_id) FROM ScheduleTable
WHERE process_id = $1 AND status = 'waiting' AND task_type IN ('call', 'repair'))
RETURNING task_id, process_id, task_type, 'running'::task_status as status, scheduled_time,
TO_TIMESTAMP($2, 'YYYY-MM-DD HH24:MI:SS') as running_time, args, metadata,
last_retry_interval, attempts_count, context
)
INSERT INTO RunningTable (task_id, process_id, task_type, status, scheduled_time, running_time, args,
metadata, last_retry_interval, attempts_count, context) SELECT * FROM postponed_tasks RETURNING *;
-- сохраняем новую задачу как запущенную
-- при условии, что предыдущий запрос вернул пустую таблицу, иначе сохраняем как запланированную
INSERT INTO RunningTable
(task_id, process_id, task_type, status, scheduled_time, running_time, args, metadata,
last_retry_interval, attempts_count, context)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11)
ON CONFLICT (process_id) DO NOTHING RETURNING task_id;
```
### Вызов экземпляра процесса
Аналогичен старту, но вместо PrepareInit - PrepareCall
```mermaid
sequenceDiagram
box Client
participant Client
end
box Grey Progressor
participant API_Handler
participant Storage
participant Worker
end
box Processor
participant Process
end
Client->>+API_Handler: Call
API_Handler->>+Storage: PrepareCall
Storage->>-API_Handler: TaskId
API_Handler->>+Worker: ProcessTask
Worker->>+Process: Process
Process->>-Worker: Result
Worker->>+Storage: SaveResult
Storage->>-Worker: OK
Worker->>API_Handler: Response
API_Handler->>-Client: Response
```
PrepareCall.sql
```sql
-- сохраняем задачу в историческую таблицу
INSERT INTO TaskTable
(process_id, task_type, status, scheduled_time, running_time, args, metadata, idempotency_key,
blocked_task, response, last_retry_interval, attempts_count, context)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) RETURNING task_id;
-- блокируем таймеры на время обработки внешнего вызова
UPDATE ScheduleTable SET status = 'blocked' WHERE task_type IN ('timeout', 'remove') AND
process_id = $1 AND status = 'waiting' RETURNING task_id;
-- сохраняем задачу как запущенную (если сработает ON CONFLICT, то сохраняем как запланированную)
INSERT INTO RunningTable
(task_id, process_id, task_type, status, scheduled_time, running_time, args, metadata,
last_retry_interval, attempts_count, context)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11)
ON CONFLICT (process_id) DO NOTHING RETURNING task_id;
```
SaveResult.sql аналогичный предыдущему
### Сканирование задач
SearchTimers.sql
```sql
WITH tasks_for_run as(
DELETE FROM ScheduleTable WHERE task_id IN
(SELECT task_id FROM ScheduleTable WHERE status = 'waiting' AND scheduled_time <= $1
AND task_type IN ('timeout', 'remove') AND process_id NOT IN (SELECT process_id FROM RunningTable )
ORDER BY scheduled_time ASC LIMIT $3)
RETURNING task_id, process_id, task_type, 'running'::task_status as status, scheduled_time,
TO_TIMESTAMP($2, 'YYYY-MM-DD HH24:MI:SS') as running_time, args, metadata,
last_retry_interval, attempts_count, context
)
INSERT INTO RunningTable
(task_id, process_id, task_type, status, scheduled_time, running_time, args, metadata, last_retry_interval, attempts_count, context)
SELECT * FROM tasks_for_run RETURNING *;
```
SearchCalls.sql
```sql
WITH tasks_for_run as(
DELETE FROM ScheduleTable WHERE task_id IN
(SELECT min(task_id) FROM ScheduleTable WHERE status = 'waiting' AND task_type IN ('init', 'call', 'repair')
AND process_id NOT IN (SELECT process_id FROM RunningTable )
GROUP BY process_id ORDER BY min ASC LIMIT $2
)
RETURNING task_id, process_id, task_type, 'running'::task_status as status, scheduled_time,
TO_TIMESTAMP($1, 'YYYY-MM-DD HH24:MI:SS') as running_time, args, metadata,
last_retry_interval, attempts_count, context
)
INSERT INTO RunningTable
(task_id, process_id, task_type, status, scheduled_time, running_time, args, metadata, last_retry_interval, attempts_count, context)
SELECT * FROM tasks_for_run RETURNING *;
```
SearchCalls вызывается в 3 раз чаще, чем SearchTimers. Данные вызовы являются конкурентными. Уникальность запущенных
процессов достигается за счет "INSERT INTO RunningTable" с первичным ключом, за счет этого, даже при нарушении изоляции,
сможет быть выполнена только одна из конкурентных транзакций, а остальные будут откачены.
### Сборка зомби-задач
Зомби-задачи могут возникать при аварийном завершении работы ноды, когда приложение штатно не завершает задачу и она остаётся
висеть в RunningTable.
CollectZombie.sql
```sql
WITH zombie_tasks as (
DELETE FROM RunningTable WHERE running_time < $1
RETURNING process_id, task_id
),
t1 AS (UPDATE TaskTable SET status = 'cancelled' WHERE process_id IN (SELECT process_id FROM zombie_tasks))
t2 AS (UPDATE TaskTable SET status = 'error', finished_time = $2 WHERE task_id IN (SELECT task_id FROM zombie_tasks))
MERGE INTO ProcessesTable AS pt USING zombie_tasks AS zt ON pt.process_id = zt.process_id
WHEN MATCHED THEN UPDATE SET status = 'error', detail = 'zombie detected', corrupted_by = zt.task_id;
```
зомби-задачи переводятся в статус error, соответствующий процесс также переводится в статус error, а все запланированные
задачи отменяются (cancelled)

View File

@ -22,7 +22,6 @@ CREATE TABLE IF NOT EXISTS default_tasks(
"metadata" JSONB, "metadata" JSONB,
"idempotency_key" VARCHAR(80) UNIQUE, "idempotency_key" VARCHAR(80) UNIQUE,
"response" BYTEA, "response" BYTEA,
"blocked_task" BIGINT REFERENCES default_tasks ("task_id"),
"last_retry_interval" INTEGER NOT NULL, "last_retry_interval" INTEGER NOT NULL,
"attempts_count" SMALLINT NOT NULL, "attempts_count" SMALLINT NOT NULL,
"context" BYTEA, "context" BYTEA,
@ -31,10 +30,34 @@ CREATE TABLE IF NOT EXISTS default_tasks(
ALTER TABLE default_processes ADD COLUMN IF NOT EXISTS "corrupted_by" BIGINT REFERENCES default_tasks("task_id"); ALTER TABLE default_processes ADD COLUMN IF NOT EXISTS "corrupted_by" BIGINT REFERENCES default_tasks("task_id");
CREATE TABLE IF NOT EXISTS "default_locks"( CREATE TABLE IF NOT EXISTS default_schedule(
"task_id" BIGINT PRIMARY KEY,
"process_id" VARCHAR(80) NOT NULL,
"task_type" task_type NOT NULL,
"status" task_status NOT NULL,
"scheduled_time" TIMESTAMP WITH TIME ZONE NOT NULL,
"args" BYTEA,
"metadata" JSONB,
"last_retry_interval" INTEGER NOT NULL,
"attempts_count" SMALLINT NOT NULL,
"context" BYTEA,
FOREIGN KEY ("process_id") REFERENCES default_processes ("process_id"),
FOREIGN KEY ("task_id") REFERENCES "default_tasks" ("task_id")
);
CREATE TABLE IF NOT EXISTS default_running(
"process_id" VARCHAR(80) PRIMARY KEY, "process_id" VARCHAR(80) PRIMARY KEY,
"task_id" BIGINT NOT NULL, "task_id" BIGINT NOT NULL,
FOREIGN KEY ("process_id") REFERENCES "default_processes" ("process_id"), "task_type" task_type NOT NULL,
"status" task_status NOT NULL,
"scheduled_time" TIMESTAMP WITH TIME ZONE NOT NULL,
"running_time" TIMESTAMP WITH TIME ZONE NOT NULL,
"args" BYTEA,
"metadata" JSONB,
"last_retry_interval" INTEGER NOT NULL,
"attempts_count" SMALLINT NOT NULL,
"context" BYTEA,
FOREIGN KEY ("process_id") REFERENCES default_processes ("process_id"),
FOREIGN KEY ("task_id") REFERENCES "default_tasks" ("task_id") FOREIGN KEY ("task_id") REFERENCES "default_tasks" ("task_id")
); );

View File

@ -1,76 +0,0 @@
CREATE TYPE process_status AS ENUM ('running', 'error');
CREATE TYPE task_status AS ENUM ('waiting', 'running', 'blocked', 'error', 'finished', 'cancelled');
CREATE TYPE task_type AS ENUM ('init', 'timeout', 'call', 'notify', 'repair', 'remove');
CREATE TABLE IF NOT EXISTS default_processes(
"process_id" VARCHAR(80) PRIMARY KEY,
"status" process_status NOT NULL,
"detail" TEXT,
"aux_state" BYTEA,
"metadata" JSONB
);
CREATE TABLE IF NOT EXISTS default_tasks(
"task_id" BIGSERIAL PRIMARY KEY,
"process_id" VARCHAR(80) NOT NULL,
"task_type" task_type NOT NULL,
"status" task_status NOT NULL,
"scheduled_time" TIMESTAMP WITH TIME ZONE NOT NULL,
"running_time" TIMESTAMP WITH TIME ZONE,
"finished_time" TIMESTAMP WITH TIME ZONE,
"args" BYTEA,
"metadata" JSONB,
"idempotency_key" VARCHAR(80) UNIQUE,
"response" BYTEA,
"last_retry_interval" INTEGER NOT NULL,
"attempts_count" SMALLINT NOT NULL,
"context" BYTEA,
FOREIGN KEY ("process_id") REFERENCES default_processes ("process_id")
);
ALTER TABLE default_processes ADD COLUMN IF NOT EXISTS "corrupted_by" BIGINT REFERENCES default_tasks("task_id");
CREATE TABLE IF NOT EXISTS default_schedule(
"task_id" BIGINT PRIMARY KEY,
"process_id" VARCHAR(80) NOT NULL,
"task_type" task_type NOT NULL,
"status" task_status NOT NULL,
"scheduled_time" TIMESTAMP WITH TIME ZONE NOT NULL,
"args" BYTEA,
"metadata" JSONB,
"last_retry_interval" INTEGER NOT NULL,
"attempts_count" SMALLINT NOT NULL,
"context" BYTEA,
FOREIGN KEY ("process_id") REFERENCES default_processes ("process_id"),
FOREIGN KEY ("task_id") REFERENCES "default_tasks" ("task_id")
);
CREATE TABLE IF NOT EXISTS default_running(
"process_id" VARCHAR(80) PRIMARY KEY,
"task_id" BIGINT NOT NULL,
"task_type" task_type NOT NULL,
"status" task_status NOT NULL,
"scheduled_time" TIMESTAMP WITH TIME ZONE NOT NULL,
"running_time" TIMESTAMP WITH TIME ZONE NOT NULL,
"args" BYTEA,
"metadata" JSONB,
"last_retry_interval" INTEGER NOT NULL,
"attempts_count" SMALLINT NOT NULL,
"context" BYTEA,
FOREIGN KEY ("process_id") REFERENCES default_processes ("process_id"),
FOREIGN KEY ("task_id") REFERENCES "default_tasks" ("task_id")
);
CREATE TABLE IF NOT EXISTS default_events(
"process_id" VARCHAR(80) NOT NULL,
"task_id" BIGINT NOT NULL,
"event_id" SMALLINT NOT NULL,
"timestamp" TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
"metadata" JSONB,
"payload" BYTEA NOT NULL,
PRIMARY KEY ("process_id", "event_id"),
FOREIGN KEY ("process_id") REFERENCES default_processes ("process_id"),
FOREIGN KEY ("task_id") REFERENCES default_tasks ("task_id")
);
CREATE INDEX IF NOT EXISTS "process_idx" on default_events USING HASH ("process_id");