feat(all): 源精度命名体系、工作流可观测台、节点停用管理与白名单归档
核心变更:
1. GridAxisValue 源精度命名
- 新增 GridAxisValue 类型,携带 f64 数值 + YAML 源书写文本(Deref 透明兼容算术)
- config.rs 绕过 serde_yaml 归一化,逐 token 捕获轴值原文(logg: 5.0 → g5.0)
- runner/executor/scheduler 全链路改用 DB TEXT 列权威 point_name,
修复 REAL 列回读丢精度导致的 model_name 错配
2. 工作流执行可观测台
- 新增 stats/progress/points 三组 API(进度时间序列、经验速率 ETA、
停滞预警、逐点明细分页、收敛性热力图数据)
- 新增 workflow_progress_snapshots 表 + tasks/grid_points 耗时列
- runner 携带 last_iter/worst_depth/n_depths 进 conv.json
- 前端新增 hash 路由、工作流详情页(概览/网格点/收敛分析三 Tab)、YAML 编辑器
3. 节点停用/启用管理
- 新增 disabled 状态 + disable/enable API;停用节点保持心跳但停止分发,
worker 空闲待命而非退出;移除 revoke API,token 失效统一走重发覆盖;
移除 host_name 字段
4. 白名单结果归档
- 新增 result_filter 模块,只归档有语义产物,丢弃 Tlusty 中间单元(~2MB/模型)
- executor 原子写入归档 + 200 点 LRU 上限
5. 历史数据导入
- sync_seeds 重写为 import_results:经 /admin/import_seed 标记 converged +
按新版命名迁移产物树
6. 部署与目录重规划
- data/results→seeds、data/archive→result + migrate_data_dirs.sh
- deploy.sh 增强(SSH 复用、Profile、远程 env);Dockerfile 瘦身
7. 文档同步更新 api/database/architecture/deployment
This commit is contained in:
@@ -0,0 +1,176 @@
|
||||
/* DCTS 控制台首页视图
|
||||
*
|
||||
* 内容:核心指标卡 + 计算节点集群与凭据管理大表 + 工作流卡片列表。
|
||||
* 标记来自 index.html 的 #view-home-template(克隆挂载,ID 与原版逐字一致,
|
||||
* state.js 的轮询渲染逻辑无需任何改动)。
|
||||
*
|
||||
* 生命周期:mountHome 克隆模板 → 绑定首页作用域事件委托 → 骨架屏 → 启动全局轮询;
|
||||
* unmountHome 停轮询 → 清空 #view-root(委托监听随 DOM 移除,无泄漏)。
|
||||
*/
|
||||
|
||||
import {
|
||||
approveNodeApi,
|
||||
rejectNodeApi,
|
||||
reissueNodeApi,
|
||||
disableNodeApi,
|
||||
enableNodeApi
|
||||
} from '../api.js';
|
||||
import { showToast } from '../components/toast.js';
|
||||
import { showConfirm, setupFocusTrap } from '../components/modal.js';
|
||||
import { renderNodesTableSkeleton } from '../components/nodesTable.js';
|
||||
import { renderWorkflowsSkeleton } from '../components/workflows.js';
|
||||
import { startPolling, stopPolling, fetchAllData, fetchNodes } from '../state.js';
|
||||
import { triggerRefreshAnimation } from '../utils.js';
|
||||
import {
|
||||
handleStartWorkflow,
|
||||
handleStopWorkflow,
|
||||
handleDeleteWorkflow,
|
||||
handleViewWorkflow
|
||||
} from '../components/wfActions.js';
|
||||
|
||||
// ===== 节点授权管理交互处理(首页专属) =====
|
||||
async function handleApprove(nodeId) {
|
||||
const ok = await showConfirm('同意节点接入', `确定同意授权计算节点 '${nodeId}' 加入集群吗?\n系统将自动分配身份 Token 并在节点轮询时下发。`);
|
||||
if (!ok) return;
|
||||
|
||||
try {
|
||||
const res = await approveNodeApi(nodeId);
|
||||
const json = await res.json();
|
||||
if (res.ok && json.success) {
|
||||
showToast(json.message || '节点接入成功已授权', 'success');
|
||||
fetchAllData();
|
||||
} else {
|
||||
showToast(json.message || '审批失败', 'error');
|
||||
}
|
||||
} catch (err) {
|
||||
showToast(`请求异常: ${err.message}`, 'error');
|
||||
}
|
||||
}
|
||||
|
||||
async function handleReject(nodeId) {
|
||||
const ok = await showConfirm('拒绝节点接入', `确定拒绝节点 '${nodeId}' 的接入申请吗?`);
|
||||
if (!ok) return;
|
||||
|
||||
try {
|
||||
const res = await rejectNodeApi(nodeId);
|
||||
const json = await res.json();
|
||||
if (res.ok && json.success) {
|
||||
showToast(json.message || '已拒绝节点接入申请', 'info');
|
||||
fetchAllData();
|
||||
} else {
|
||||
showToast(json.message || '操作失败', 'error');
|
||||
}
|
||||
} catch (err) {
|
||||
showToast(`请求异常: ${err.message}`, 'error');
|
||||
}
|
||||
}
|
||||
|
||||
async function handleDisable(nodeId) {
|
||||
const ok = await showConfirm('停用节点', `确定停用节点 '${nodeId}' 吗?\n停用后该节点保持在线但不再被分发任务,worker 将空闲待命。可随时重新启用。`);
|
||||
if (!ok) return;
|
||||
|
||||
try {
|
||||
const res = await disableNodeApi(nodeId);
|
||||
const json = await res.json();
|
||||
if (res.ok && json.success) {
|
||||
showToast(json.message || '节点已停用', 'info');
|
||||
fetchAllData();
|
||||
} else {
|
||||
showToast(json.message || '停用失败', 'error');
|
||||
}
|
||||
} catch (err) {
|
||||
showToast(`请求异常: ${err.message}`, 'error');
|
||||
}
|
||||
}
|
||||
|
||||
async function handleEnable(nodeId) {
|
||||
const ok = await showConfirm('启用节点', `确定重新启用节点 '${nodeId}' 吗?\n节点将在下一次心跳后恢复分发任务。`);
|
||||
if (!ok) return;
|
||||
|
||||
try {
|
||||
const res = await enableNodeApi(nodeId);
|
||||
const json = await res.json();
|
||||
if (res.ok && json.success) {
|
||||
showToast(json.message || '节点已重新启用', 'success');
|
||||
fetchAllData();
|
||||
} else {
|
||||
showToast(json.message || '启用失败', 'error');
|
||||
}
|
||||
} catch (err) {
|
||||
showToast(`请求异常: ${err.message}`, 'error');
|
||||
}
|
||||
}
|
||||
|
||||
async function handleReissue(nodeId) {
|
||||
const ok = await showConfirm('重发节点 Token', `确定为节点 '${nodeId}' 重新颁发专属 Token 吗?旧 Token 将立即失效,请随后把新 Token 同步到该节点。`);
|
||||
if (!ok) return;
|
||||
|
||||
try {
|
||||
const res = await reissueNodeApi(nodeId);
|
||||
const json = await res.json();
|
||||
if (json.success && json.node_token) {
|
||||
// 弹窗展示新 token 明文(仅此一次):管理员须手动复制并写入节点本地 .node_token
|
||||
// 后重启节点。服务端不持久化明文,故必须在此处交给管理员。
|
||||
const modal = document.getElementById('modal-reissue-token');
|
||||
document.getElementById('reissue-token-content').textContent = json.node_token;
|
||||
modal?.classList.remove('hidden');
|
||||
setupFocusTrap(modal);
|
||||
showToast('已重新生成专属 Token,请复制并同步到节点', 'success');
|
||||
fetchAllData();
|
||||
} else {
|
||||
showToast(json.message || '重发失败', 'error');
|
||||
}
|
||||
} catch (err) {
|
||||
showToast(`请求异常: ${err.message}`, 'error');
|
||||
}
|
||||
}
|
||||
|
||||
export function mountHome() {
|
||||
const root = document.getElementById('view-root');
|
||||
const tpl = document.getElementById('view-home-template');
|
||||
if (!root || !tpl) return;
|
||||
root.replaceChildren(tpl.content.cloneNode(true));
|
||||
|
||||
// 工作流卡片事件委托(随 DOM 移除而销毁,无需手动解绑)
|
||||
document.getElementById('workflows-list')?.addEventListener('click', (e) => {
|
||||
const btn = e.target.closest('[data-wf-action]');
|
||||
if (!btn) return;
|
||||
const action = btn.getAttribute('data-wf-action');
|
||||
const name = btn.getAttribute('data-wf-name');
|
||||
if (action === 'start') handleStartWorkflow(name);
|
||||
else if (action === 'stop') handleStopWorkflow(name);
|
||||
else if (action === 'delete') handleDeleteWorkflow(name);
|
||||
else if (action === 'view') handleViewWorkflow(name);
|
||||
else if (action === 'create-first') document.getElementById('btn-create-wf')?.click();
|
||||
});
|
||||
|
||||
// 节点大表事件委托
|
||||
document.getElementById('nodes-table-body')?.addEventListener('click', (e) => {
|
||||
const btn = e.target.closest('[data-node-action], [data-cred-action]');
|
||||
if (!btn) return;
|
||||
const action = btn.getAttribute('data-node-action') || btn.getAttribute('data-cred-action');
|
||||
const nodeId = btn.getAttribute('data-node-id');
|
||||
if (action === 'approve') handleApprove(nodeId);
|
||||
else if (action === 'reject') handleReject(nodeId);
|
||||
else if (action === 'reissue') handleReissue(nodeId);
|
||||
else if (action === 'disable') handleDisable(nodeId);
|
||||
else if (action === 'enable') handleEnable(nodeId);
|
||||
});
|
||||
|
||||
// 节点面板刷新按钮(header 的全局刷新按钮仍由 main.js 管理)
|
||||
document.getElementById('btn-refresh-nodes')?.addEventListener('click', (e) => {
|
||||
triggerRefreshAnimation(e.currentTarget);
|
||||
showToast('正在刷新节点列表...', 'info');
|
||||
fetchNodes();
|
||||
});
|
||||
|
||||
renderNodesTableSkeleton();
|
||||
renderWorkflowsSkeleton();
|
||||
startPolling();
|
||||
}
|
||||
|
||||
export function unmountHome() {
|
||||
stopPolling();
|
||||
const root = document.getElementById('view-root');
|
||||
if (root) root.innerHTML = '';
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user