4.3 KiB
4.3 KiB
DCTS 数据库设计 (Database Schema)
DCTS 采用轻量级、零配置、高并发安全的 SQLite 双数据库架构:主状态库
dcts.db存储网格结构与历史记录;队列库dcts_queue.db由mq驱动管理原子任务状态机。
1. 数据库分库架构
erDiagram
WORKFLOWS ||--o{ GRID_POINTS : contains
GRID_POINTS ||--o{ TASK_HISTORY : logs
NODES ||--o{ TASK_QUEUE : executes
subgraph PrimaryDB ["主数据库 (dcts.db)"]
WORKFLOWS {
string name PK
string description
text yaml_config
string status
datetime created_at
}
GRID_POINTS {
string point_id PK
string workflow_name FK
double teff
double logg
double he_abund
double c_abund
double n_abund
double o_abund
string status
datetime updated_at
}
TASK_HISTORY {
string id PK
string point_id FK
string node_id
boolean success
text conv_info_json
datetime duration_sec
}
NODES {
string node_id PK
string hostname
integer cpu_cores
string status
datetime last_heartbeat
}
end
subgraph QueueDB ["队列库 (dcts_queue.db / mq)"]
TASK_QUEUE {
string task_id PK
string workflow_name
string payload_json
string status
string assigned_node
integer retry_count
datetime claimed_at
}
end
2. 表结构定义 (Schema Specification)
2.1 workflows (工作流配置表)
存储用户定义的计算网格配置及整体状态。
name(VARCHAR(64) PRIMARY KEY):工作流唯一标志(如sdB_cno)。description(TEXT):描述信息。yaml_config(TEXT):完整的参数网格定义与物理配置 YAML 内容。status(VARCHAR(32)):状态:idle/running/paused/completed。created_at(DATETIME DEFAULT CURRENT_TIMESTAMP):创建时间。
2.2 grid_points (网格点物理参数表)
存储多维笛卡尔积展开后的每一个独立参数点。
point_id(VARCHAR(128) PRIMARY KEY):点全局唯一 ID(如pt_teff40000_logg600_he-100...)。workflow_name(VARCHAR(64) REFERENCES workflows(name)):所属工作流。teff,logg,he_abund,c_abund,n_abund,o_abund(REAL):物理参数。status(VARCHAR(32)):pending/running/converged/failed。success_method(VARCHAR(32)):收敛时的成功手段 (cold_run冷启动成功 /seed_step种子步进成功)。
2.3 nodes (计算节点心跳与状态表)
node_id(VARCHAR(64) PRIMARY KEY):节点唯一标识。hostname(VARCHAR(128)):节点主机名或 IP。cpu_cores(INTEGER):节点 CPU 核心数。status(VARCHAR(32)):online/offline/busy。last_heartbeat(DATETIME):最后一次心跳上报时间。
2.4 task_queue (分布式任务队列表 - mq)
驱动分布式抢占与超时重试的核心表,使用 SQLite WAL 模式确保高吞吐并发安全。
task_id(VARCHAR(128) PRIMARY KEY):任务 ID。workflow_name(VARCHAR(64)):工作流。payload_json(TEXT):任务所含参数 payload。status(VARCHAR(32)):pending(就绪) /running(计算中) /completed(完成) /failed(失败)。assigned_node(VARCHAR(64)):当前抢占该任务的节点 ID。retry_count(INTEGER DEFAULT 0):失败或超时重发次数。claimed_at(DATETIME):抢占时间戳(用于超时释放判定)。
3. 并发与事务安全设计
- WAL (Write-Ahead Logging) 模式:SQLite 连接自动启用
PRAGMA journal_mode=WAL;和PRAGMA busy_timeout=5000;,解决多线程/多进程读写锁竞争。 - 连接池机制:借助
r2d2+r2d2_sqlite维护异步连接池,防止高并发下数据库句柄冲突。 - 原子 Claim 事务:任务抢占在单个 SQLite 事务中完成(
UPDATE task_queue SET status='running', assigned_node=? WHERE status='pending' ... LIMIT 1),保证绝对防重领。