diff --git a/specs/mvp/mvp_roadmap_v2.md b/specs/mvp/mvp_roadmap_v2.md new file mode 100644 index 0000000..36bde09 --- /dev/null +++ b/specs/mvp/mvp_roadmap_v2.md @@ -0,0 +1,130 @@ +渐进的 AI Infrastructure 演进路线图。从最初的单机脚本执行,到最终的智能化运维平台 + +对应架构演进图,设计**基于 Native Ray Cluster 与 Verl 框架的 AI Infra Roadmap 设计文档**。 + +--- + +### **项目代号:AI Infra Roadmap (Native Ray + Verl)** + +#### **阶段一:核心内核构建 (Foundation & Core Execution)** + +这一阶段主要解决“能不能跑”的问题,聚焦于核心计算引擎的对接和基础任务调度。 + +* **v1.1: 原型验证 (Verl Task Spec & Ray Job)** + * **核心功能**:实现了最基础的任务提交链路。 + * **组件**: + * **Ray Job Tool (Ray Client)**:作为客户端工具。 + * **VerlTaskSpec YAML**:定义任务的标准配置文件。 + * **Multi-Verl Code Path**:支持多代码路径。 + + * **基础设施**:Handmade Ray Cluster(手工搭建的 Ray 集群)。 + * **目标**:验证 Verl 框架与 Ray 的基本交互。 + + +* **v2.0: 任务管理层 (Task Management)** + * **核心功能**:引入了服务化管理,不再单纯依赖命令行工具。 + * **新增组件**: + * **API Server**:提供统一的接口层。 + * **Task Management**:实现了任务队列 (Queue)、映射 (Map) 和重试/重新提交 (Resubmit) 机制。 + + + * **基础设施**:仍运行在 Handmade Ray Cluster 上。 + + +* **v2.5: 资源与用户管理 (User & Node Management)** + * **核心功能**:从“手工集群”迈向“自动化集群”,并增加了多租户基础。 + * **新增组件**: + * **User Management**:用户权限与身份管理。 + * **Node Management**:核心升级点。支持通过 SSH 管理节点池,实现 Auto-managed Ray Cluster(自动管理的 Ray 集群),不再手动维护。 + + + * **演进**:基础设施层由 Handmade 变为 SSH Node (Auto Managed)。 + + + +--- + +### **阶段二:产品化与服务化 (Productization & Serving)** + +这一阶段主要解决“好不好用”的问题,发布了第一个正式版本,并扩展了业务场景。 + +* **v3.0: 正式发布版 (Frontend & Data Management)** * **里程碑**:**1st Version to Release!!** (首个对外发布版本) + * **核心功能**:完整的前后端分离,闭环了用户的数据流。 + * **新增组件**: + * **WebUI**:提供可视化的用户界面。 + * **Data Management (SFTPGo)**:集成了 SFTPGo,解决用户训练数据、代码的上传与下载问题。 + + + * **价值**:用户可以通过 Web 界面完成从数据上传到任务提交的全流程。 + + +* **v3.5: 定制化与推理服务 (Customized Task & Serving)** + * **核心功能**:支持更复杂的训练需求和模型推理。 + * **新增组件**: + * **Model Serving**:不仅能训练,还能部署模型服务。 + * **Customized VerlTaskSpec YAML**:支持自定义参数 (Param)、奖励函数 (Reward)、Verl 代码等。 + + + * **价值**:从单一的训练平台扩展为“训练+推理”的一体化平台,且支持算法工程师深度定制实验参数。 + + + +--- + +### **阶段三:可观测性体系 (Observability)** + +这一阶段主要解决“看得清”的问题,确保系统的稳定性和模型训练的可追踪性。 + +* **v4.0: 系统级可观测性 (System Observability)** + * **核心功能**:建立完整的基础设施监控。 + * **新增组件**: + * **Prometheus**:指标采集。 + * **Grafana**:监控大盘展示。 + * **Alert**:告警系统。 + * **ELK**:日志收集与分析 (Elasticsearch, Logstash, Kibana)。 + + + * **基础设施升级**:在 SSH Node 上部署了 **Exporter**,用于采集节点层面的 metrics。 + + +* **v4.5: 实验级可观测性 (ML Observability)** + * **核心功能**:专注于模型训练过程的指标追踪。 + * **新增组件**: + * **Weight & Bias (WanB)**:集成专业的 ML 实验追踪工具,用于记录 Loss、Accuracy 等训练指标。 + + + + + +--- + +### **阶段四:智能化运维 (Operability & Intelligence)** + +这一阶段主要解决“自动化”的问题,引入 AI 来管理 AI 平台。 + +* **v5.0: 智能运维闭环 (Statistics, SOP, Agent)** + * **核心功能**:通过数据统计和 Agent 实现平台的自动化治理。 + * **新增组件**: + * **Statistics**:平台维度的统计分析(资源利用率、任务成功率等)。 + * **SOP Tools**:标准作业程序工具化(自动化运维脚本)。 + * **Agent**:智能体。可能用于自动故障诊断、资源自动调度优化或交互式助手。 + + + * **愿景**:打造一个具备自我管理、自我修复能力的 AI 基础设施平台。 + + + +--- + +### **架构层级总结** + +| 层级 | 关键组件/技术 | +| --- | --- | +| **接入层 (Frontend/API)** | WebUI, API Server, User Management | +| **调度与编排 (Orchestration)** | Task Management, Ray Job Tool (Client), Node Management | +| **计算引擎 (Compute)** | Native Ray Cluster, Verl Framework (TaskSpec YAML) | +| **数据与存储 (Data)** | SFTPGo (Data Management), Model Serving | +| **可观测性 (Observability)** | Prometheus, Grafana, ELK, Weights & Bias | +| **运维与智能 (Ops)** | Exporters, Statistics, SOP Tools, Agent | + +--- diff --git a/specs/mvp/sw_arch.excalidraw b/specs/mvp/sw_arch.excalidraw new file mode 100644 index 0000000..6846cc9 --- /dev/null +++ b/specs/mvp/sw_arch.excalidraw @@ -0,0 +1,8294 @@ +{ + "type": "excalidraw", + "version": 2, + "source": "https://marketplace.visualstudio.com/items?itemName=pomdtr.excalidraw-editor", + "elements": [ + { + "id": "Kr6QoRw3EeXM8a4I0CxEy", + "type": "rectangle", + "x": 327.66668701171875, + "y": 468.0000305175781, + "width": 481.33343505859375, + "height": 161.3333435058594, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a0", + "roundness": { + "type": 3 + }, + "seed": 344587343, + "version": 137, + "versionNonce": 1825387201, + "isDeleted": false, + "boundElements": null, + "updated": 1766542010726, + "link": null, + "locked": false + }, + { + "id": "G8a_pb-buuEO7sXOA3L5v", + "type": "rectangle", + "x": 365.3333435058594, + "y": 509.35030635717976, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a1", + "roundness": null, + "seed": 2104758529, + "version": 105, + "versionNonce": 852103297, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "PnYLc73BUD3wDz320wFae" + }, + { + "id": "gxZ_e-7_T4YBd1_7eWjyQ", + "type": "arrow" + } + ], + "updated": 1766542829878, + "link": null, + "locked": false + }, + { + "id": "PnYLc73BUD3wDz320wFae", + "type": "text", + "x": 386.2767105102539, + "y": 526.8503063571798, + "width": 114.77995300292969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a2", + "roundness": null, + "seed": 1013972623, + "version": 95, + "versionNonce": 1906899791, + "isDeleted": false, + "boundElements": null, + "updated": 1766542828321, + "link": null, + "locked": false, + "text": "ray job tool\n(ray client)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "G8a_pb-buuEO7sXOA3L5v", + "originalText": "ray job tool\n(ray client)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "ifOSWwkRR7cIqQvF2g1sm", + "type": "rectangle", + "x": 610.3333435058594, + "y": 508.85030635717976, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a3", + "roundness": null, + "seed": 810145537, + "version": 243, + "versionNonce": 1123939343, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "kOtfmULDAxU1xI0AiWmly" + }, + { + "id": "gxZ_e-7_T4YBd1_7eWjyQ", + "type": "arrow" + } + ], + "updated": 1766542829878, + "link": null, + "locked": false + }, + { + "id": "kOtfmULDAxU1xI0AiWmly", + "type": "text", + "x": 621.2167434692383, + "y": 526.3503063571798, + "width": 134.89988708496094, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a4", + "roundness": null, + "seed": 1641631457, + "version": 249, + "versionNonce": 1192257967, + "isDeleted": false, + "boundElements": [], + "updated": 1766542828324, + "link": null, + "locked": false, + "text": "VerlTaskSpec \nyaml", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "ifOSWwkRR7cIqQvF2g1sm", + "originalText": "VerlTaskSpec \nyaml", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "gxZ_e-7_T4YBd1_7eWjyQ", + "type": "arrow", + "x": 609, + "y": 547.5981685533224, + "width": 85.99996948242188, + "height": 3.979528569959598, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a5", + "roundness": { + "type": 2 + }, + "seed": 1824356129, + "version": 47, + "versionNonce": 735402959, + "isDeleted": false, + "boundElements": null, + "updated": 1766542828324, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -85.99996948242188, + 3.979528569959598 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "ifOSWwkRR7cIqQvF2g1sm", + "focus": 0.16118805172016407, + "gap": 1.333343505859375 + }, + "endBinding": { + "elementId": "G8a_pb-buuEO7sXOA3L5v", + "focus": 0.0639374218508235, + "gap": 1 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "nLBfO5Ia6Rop7BYelSIv5", + "type": "text", + "x": 339.99154870366317, + "y": 422.32232935172294, + "width": 651.0396118164062, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a6", + "roundness": null, + "seed": 1028009167, + "version": 144, + "versionNonce": 669214625, + "isDeleted": false, + "boundElements": null, + "updated": 1766542607009, + "link": null, + "locked": false, + "text": "v1.1 verl task spec & ray job submit & multi verl code path support", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "v1.1 verl task spec & ray job submit & multi verl code path support", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "nzKKIasnkchZ27NBUTDwj", + "type": "rectangle", + "x": 326.72227478027344, + "y": 747.6667226155598, + "width": 481.33343505859375, + "height": 291.3333435058595, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a7", + "roundness": { + "type": 3 + }, + "seed": 166252399, + "version": 224, + "versionNonce": 1179671361, + "isDeleted": false, + "boundElements": [], + "updated": 1766542252002, + "link": null, + "locked": false + }, + { + "id": "XyssIpnGBoVF5IXxBr4ne", + "type": "rectangle", + "x": 366.38893127441406, + "y": 928.3333791097004, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a8", + "roundness": null, + "seed": 1243285903, + "version": 199, + "versionNonce": 889539361, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "Ddir6BZTtlHBkBvwOLwzT" + }, + { + "id": "bAWdDD3N_taRtC0va2w9X", + "type": "arrow" + } + ], + "updated": 1766542252002, + "link": null, + "locked": false + }, + { + "id": "Ddir6BZTtlHBkBvwOLwzT", + "type": "text", + "x": 387.3322982788086, + "y": 945.8333791097004, + "width": 114.77995300292969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a9", + "roundness": null, + "seed": 1480654767, + "version": 190, + "versionNonce": 55656193, + "isDeleted": false, + "boundElements": [], + "updated": 1766542252002, + "link": null, + "locked": false, + "text": "ray job tool\n(ray client)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "XyssIpnGBoVF5IXxBr4ne", + "originalText": "ray job tool\n(ray client)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "gXbKVLFxlI56GZ4Zx2hwF", + "type": "rectangle", + "x": 611.3889312744141, + "y": 927.8333791097004, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aA", + "roundness": null, + "seed": 914567631, + "version": 337, + "versionNonce": 1018966721, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "XGnUQpfPq4MjJLq802tcA" + }, + { + "id": "bAWdDD3N_taRtC0va2w9X", + "type": "arrow" + } + ], + "updated": 1766542252002, + "link": null, + "locked": false + }, + { + "id": "XGnUQpfPq4MjJLq802tcA", + "type": "text", + "x": 622.272331237793, + "y": 945.3333791097004, + "width": 134.89988708496094, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aB", + "roundness": null, + "seed": 234495983, + "version": 341, + "versionNonce": 1560337775, + "isDeleted": false, + "boundElements": [], + "updated": 1766542526165, + "link": null, + "locked": false, + "text": "VerlTaskSpec \nyaml", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "gXbKVLFxlI56GZ4Zx2hwF", + "originalText": "VerlTaskSpec \nyaml", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "bAWdDD3N_taRtC0va2w9X", + "type": "arrow", + "x": 612.7222747802734, + "y": 966.3333791097004, + "width": 90.33331298828125, + "height": 4, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aC", + "roundness": { + "type": 2 + }, + "seed": 1353599503, + "version": 333, + "versionNonce": 1419636495, + "isDeleted": false, + "boundElements": [], + "updated": 1766542252695, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -90.33331298828125, + 4 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "gXbKVLFxlI56GZ4Zx2hwF", + "focus": 0.1611880517201624, + "gap": 1.333343505859375 + }, + "endBinding": { + "elementId": "XyssIpnGBoVF5IXxBr4ne", + "focus": 0.06393742185082636, + "gap": 1 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "Zu9eTRvGwdhjwjCvGMcgm", + "type": "text", + "x": 339.0555877685547, + "y": 715.0000661214192, + "width": 217.59986877441406, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aD", + "roundness": null, + "seed": 462958639, + "version": 78, + "versionNonce": 97560353, + "isDeleted": false, + "boundElements": [], + "updated": 1766542488092, + "link": null, + "locked": false, + "text": "v2.0 task management", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "v2.0 task management", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Fr7IQ0AcrysW54HG9StvF", + "type": "rectangle", + "x": 366.72251892089844, + "y": 770.4999745686848, + "width": 395.66668701171875, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aE", + "roundness": null, + "seed": 644624193, + "version": 446, + "versionNonce": 199776975, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "1yuYJqM-2mYgDlWQBvC7q" + } + ], + "updated": 1766542825979, + "link": null, + "locked": false + }, + { + "id": "1yuYJqM-2mYgDlWQBvC7q", + "type": "text", + "x": 511.7059020996094, + "y": 785.4999745686848, + "width": 105.69992065429688, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aF", + "roundness": null, + "seed": 1250336545, + "version": 482, + "versionNonce": 265383425, + "isDeleted": false, + "boundElements": [], + "updated": 1766542252002, + "link": null, + "locked": false, + "text": "API server", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "Fr7IQ0AcrysW54HG9StvF", + "originalText": "API server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "USFpampXUt7Mzzx9hVbDF", + "type": "rectangle", + "x": 366.22227478027344, + "y": 841.4999745686848, + "width": 396.3333740234375, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aG", + "roundness": null, + "seed": 663264033, + "version": 588, + "versionNonce": 1232780705, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "dStzyMeDFrHc-oluT3yjC" + } + ], + "updated": 1766542825979, + "link": null, + "locked": false + }, + { + "id": "dStzyMeDFrHc-oluT3yjC", + "type": "text", + "x": 457.61903381347656, + "y": 846.4999745686848, + "width": 213.53985595703125, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aH", + "roundness": null, + "seed": 1760202497, + "version": 671, + "versionNonce": 2084348353, + "isDeleted": false, + "boundElements": [], + "updated": 1766542252002, + "link": null, + "locked": false, + "text": "task management \n(queue, map, resubmit)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "USFpampXUt7Mzzx9hVbDF", + "originalText": "task management \n(queue, map, resubmit)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "vDDsNvA9idIrRRv3rI0M7", + "type": "rectangle", + "x": 136.7538449973963, + "y": 1167.6666920979815, + "width": 668.3017732887365, + "height": 291.3333435058595, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aI", + "roundness": { + "type": 3 + }, + "seed": 1184117391, + "version": 333, + "versionNonce": 2102602927, + "isDeleted": false, + "boundElements": [], + "updated": 1766543484111, + "link": null, + "locked": false + }, + { + "id": "hkZV73e41C0K6i3HvBJpb", + "type": "rectangle", + "x": 363.3888397216797, + "y": 1348.333348592122, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aJ", + "roundness": null, + "seed": 497879215, + "version": 258, + "versionNonce": 1860823617, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "0aoPizPF3sZX8oGYoqFjj" + }, + { + "id": "jy-RafKWReGOziaA4SIW6", + "type": "arrow" + } + ], + "updated": 1766542264933, + "link": null, + "locked": false + }, + { + "id": "0aoPizPF3sZX8oGYoqFjj", + "type": "text", + "x": 384.3322067260742, + "y": 1365.833348592122, + "width": 114.77995300292969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aK", + "roundness": null, + "seed": 1669733071, + "version": 249, + "versionNonce": 1368717857, + "isDeleted": false, + "boundElements": [], + "updated": 1766542264933, + "link": null, + "locked": false, + "text": "ray job tool\n(ray client)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "hkZV73e41C0K6i3HvBJpb", + "originalText": "ray job tool\n(ray client)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "CPWej56V43r2Do-PeNYad", + "type": "rectangle", + "x": 608.3888397216797, + "y": 1347.833348592122, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aL", + "roundness": null, + "seed": 1287121135, + "version": 396, + "versionNonce": 1633920481, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "zlxJUe76HmgvnPBGXcjwZ" + }, + { + "id": "jy-RafKWReGOziaA4SIW6", + "type": "arrow" + } + ], + "updated": 1766542264933, + "link": null, + "locked": false + }, + { + "id": "zlxJUe76HmgvnPBGXcjwZ", + "type": "text", + "x": 619.2722396850586, + "y": 1365.333348592122, + "width": 134.89988708496094, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aM", + "roundness": null, + "seed": 1724576527, + "version": 400, + "versionNonce": 128522177, + "isDeleted": false, + "boundElements": [], + "updated": 1766542533692, + "link": null, + "locked": false, + "text": "VerlTaskSpec \nyaml", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "CPWej56V43r2Do-PeNYad", + "originalText": "VerlTaskSpec \nyaml", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "jy-RafKWReGOziaA4SIW6", + "type": "arrow", + "x": 609.7221832275391, + "y": 1386.333348592122, + "width": 90.33331298828125, + "height": 4, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aN", + "roundness": { + "type": 2 + }, + "seed": 2050472239, + "version": 506, + "versionNonce": 1745331695, + "isDeleted": false, + "boundElements": [], + "updated": 1766542267645, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -90.33331298828125, + 4 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "CPWej56V43r2Do-PeNYad", + "focus": 0.16118805172017148, + "gap": 1.333343505859375 + }, + "endBinding": { + "elementId": "hkZV73e41C0K6i3HvBJpb", + "focus": 0.06393742185082019, + "gap": 1 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "byUzC11GrMczZ4zqYYsOv", + "type": "text", + "x": 336.5608702481786, + "y": 1135.0000356038408, + "width": 665.4595336914062, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aO", + "roundness": null, + "seed": 744930127, + "version": 208, + "versionNonce": 853256975, + "isDeleted": false, + "boundElements": [], + "updated": 1766549560779, + "link": null, + "locked": false, + "text": "v2.5 user management & ssh node pool management & JuiceFS cache", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "v2.5 user management & ssh node pool management & JuiceFS cache", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "GHhlL4890SxI4AuMv2QKF", + "type": "rectangle", + "x": 363.72242736816406, + "y": 1190.4999440511065, + "width": 395.66668701171875, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aP", + "roundness": null, + "seed": 1638955375, + "version": 504, + "versionNonce": 1671092545, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "P7MEARG24EUitcVfK5AYm" + } + ], + "updated": 1766542264933, + "link": null, + "locked": false + }, + { + "id": "P7MEARG24EUitcVfK5AYm", + "type": "text", + "x": 508.705810546875, + "y": 1205.4999440511065, + "width": 105.69992065429688, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aQ", + "roundness": null, + "seed": 1599959951, + "version": 541, + "versionNonce": 5245217, + "isDeleted": false, + "boundElements": [], + "updated": 1766542264933, + "link": null, + "locked": false, + "text": "API server", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "GHhlL4890SxI4AuMv2QKF", + "originalText": "API server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "_LjhsOIeERY2V2I9kEc-l", + "type": "rectangle", + "x": 363.22218322753906, + "y": 1261.4999440511065, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aR", + "roundness": null, + "seed": 765864367, + "version": 778, + "versionNonce": 58116975, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "9ytP9CaXlMNW0fJaG1nkU" + } + ], + "updated": 1766542333722, + "link": null, + "locked": false + }, + { + "id": "9ytP9CaXlMNW0fJaG1nkU", + "type": "text", + "x": 379.4240517582288, + "y": 1266.4999440511065, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aS", + "roundness": null, + "seed": 968039375, + "version": 837, + "versionNonce": 1485407631, + "isDeleted": false, + "boundElements": [], + "updated": 1766542333722, + "link": null, + "locked": false, + "text": "task\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "_LjhsOIeERY2V2I9kEc-l", + "originalText": "task management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "d7t2KVE5-pidxfxNTJpT6", + "type": "rectangle", + "x": 874.8555987343502, + "y": 497.87669769134715, + "width": 163.1357446724801, + "height": 106.45708709635272, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aT", + "roundness": null, + "seed": 1139342433, + "version": 40, + "versionNonce": 759078305, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "9gmgEuK6P19CvC8CDtM3s" + } + ], + "updated": 1766542280921, + "link": null, + "locked": false + }, + { + "id": "9gmgEuK6P19CvC8CDtM3s", + "type": "text", + "x": 904.4235168469575, + "y": 526.1052412395235, + "width": 103.99990844726562, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aU", + "roundness": null, + "seed": 966163151, + "version": 51, + "versionNonce": 1728634671, + "isDeleted": false, + "boundElements": null, + "updated": 1766542302682, + "link": null, + "locked": false, + "text": "handmade\nray cluster", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "d7t2KVE5-pidxfxNTJpT6", + "originalText": "handmade\nray cluster", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "e1MAudQXtIswEar_D-NuY", + "type": "rectangle", + "x": 882.4948637875132, + "y": 840.9050280296804, + "width": 163.1357446724801, + "height": 106.45708709635272, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aV", + "roundness": null, + "seed": 968821473, + "version": 92, + "versionNonce": 24757857, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "J-MKriKEAOpjnhgLS9lgL" + } + ], + "updated": 1766542310609, + "link": null, + "locked": false + }, + { + "id": "J-MKriKEAOpjnhgLS9lgL", + "type": "text", + "x": 912.0627819001204, + "y": 869.1335715778566, + "width": 103.99990844726562, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aW", + "roundness": null, + "seed": 305989313, + "version": 103, + "versionNonce": 437539393, + "isDeleted": false, + "boundElements": [], + "updated": 1766542310609, + "link": null, + "locked": false, + "text": "handmade\nray cluster", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "e1MAudQXtIswEar_D-NuY", + "originalText": "handmade\nray cluster", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Ht1PA24t0iCjp9fLeiRlr", + "type": "rectangle", + "x": 547.329721813209, + "y": 1262.07425236382, + "width": 207.59447102997498, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aX", + "roundness": null, + "seed": 547560097, + "version": 870, + "versionNonce": 1722832943, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "EdzWwm2MF4NMEwDTCHfs7" + } + ], + "updated": 1766542814263, + "link": null, + "locked": false + }, + { + "id": "EdzWwm2MF4NMEwDTCHfs7", + "type": "text", + "x": 563.5970272134504, + "y": 1267.07425236382, + "width": 175.0598602294922, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aY", + "roundness": null, + "seed": 1770593921, + "version": 959, + "versionNonce": 2044944527, + "isDeleted": false, + "boundElements": [], + "updated": 1766542375469, + "link": null, + "locked": false, + "text": "node management\n(ssh, ray cluster) ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "Ht1PA24t0iCjp9fLeiRlr", + "originalText": "node management\n(ssh, ray cluster) ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "w0BT8pr6dKvh_W3QmJnsG", + "type": "rectangle", + "x": 883.5285269490853, + "y": 1343.4479764568691, + "width": 163.1357446724801, + "height": 110, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aZ", + "roundness": null, + "seed": 1857196929, + "version": 168, + "versionNonce": 1534425423, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "x_QrM2XN9-uWyiDwYKJeK" + } + ], + "updated": 1766549985174, + "link": null, + "locked": false + }, + { + "id": "x_QrM2XN9-uWyiDwYKJeK", + "type": "text", + "x": 893.5364475030988, + "y": 1348.4479764568691, + "width": 143.11990356445312, + "height": 100, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aa", + "roundness": null, + "seed": 1022786401, + "version": 236, + "versionNonce": 1685248463, + "isDeleted": false, + "boundElements": [], + "updated": 1766549985508, + "link": null, + "locked": false, + "text": "ssh node\ncontainer\n(auto managed\nray cluster)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "w0BT8pr6dKvh_W3QmJnsG", + "originalText": "ssh node container\n(auto managed ray cluster)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "wi4Jwct5iVv9xd0Gcj90L", + "type": "rectangle", + "x": 885.4776376186145, + "y": 1207.0102147192865, + "width": 163.1357446724801, + "height": 110, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ab", + "roundness": null, + "seed": 1095690945, + "version": 217, + "versionNonce": 1367848303, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "hWpMW-1Y8-8WY-suBBG1X" + } + ], + "updated": 1766549979775, + "link": null, + "locked": false + }, + { + "id": "hWpMW-1Y8-8WY-suBBG1X", + "type": "text", + "x": 895.485558172628, + "y": 1212.0102147192865, + "width": 143.11990356445312, + "height": 100, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ac", + "roundness": null, + "seed": 8776353, + "version": 291, + "versionNonce": 977104911, + "isDeleted": false, + "boundElements": [], + "updated": 1766549980394, + "link": null, + "locked": false, + "text": "ssh node in\ncontainer\n(auto managed\nray cluster )", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "wi4Jwct5iVv9xd0Gcj90L", + "originalText": "ssh node in container\n(auto managed ray cluster )", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "NO871H0Q0A1A5W2lUz72p", + "type": "rectangle", + "x": 138.79772348700453, + "y": 1582.166696004372, + "width": 661.7742141151542, + "height": 291.3333435058595, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ad", + "roundness": { + "type": 3 + }, + "seed": 1293021921, + "version": 451, + "versionNonce": 1769629007, + "isDeleted": false, + "boundElements": [], + "updated": 1766543487761, + "link": null, + "locked": false + }, + { + "id": "AeqnWfvRBAzri5XwyfQEq", + "type": "rectangle", + "x": 359.37142850972657, + "y": 1763.76580606867, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ae", + "roundness": null, + "seed": 183692993, + "version": 375, + "versionNonce": 1710540655, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "gHc6JukMuqLmtbPxnn9w-" + }, + { + "id": "QjCb3WZ-8v5ChL8WL1Obh", + "type": "arrow" + } + ], + "updated": 1766542690628, + "link": null, + "locked": false + }, + { + "id": "gHc6JukMuqLmtbPxnn9w-", + "type": "text", + "x": 380.3147955141211, + "y": 1781.26580606867, + "width": 114.77995300292969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "af", + "roundness": null, + "seed": 2131324577, + "version": 366, + "versionNonce": 837288335, + "isDeleted": false, + "boundElements": [], + "updated": 1766542690628, + "link": null, + "locked": false, + "text": "ray job tool\n(ray client)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "AeqnWfvRBAzri5XwyfQEq", + "originalText": "ray job tool\n(ray client)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "zJhO4LlN4kkZaSlalAqEn", + "type": "rectangle", + "x": 604.3714285097266, + "y": 1763.26580606867, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ag", + "roundness": null, + "seed": 1342501505, + "version": 513, + "versionNonce": 1500654031, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "45y8Nu03ZvFy_AHq6XXWO" + }, + { + "id": "QjCb3WZ-8v5ChL8WL1Obh", + "type": "arrow" + } + ], + "updated": 1766542690628, + "link": null, + "locked": false + }, + { + "id": "45y8Nu03ZvFy_AHq6XXWO", + "type": "text", + "x": 615.2548284731055, + "y": 1780.76580606867, + "width": 134.89988708496094, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ah", + "roundness": null, + "seed": 581237345, + "version": 517, + "versionNonce": 1749686255, + "isDeleted": false, + "boundElements": [], + "updated": 1766542690628, + "link": null, + "locked": false, + "text": "VerlTaskSpec \nyaml", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "zJhO4LlN4kkZaSlalAqEn", + "originalText": "VerlTaskSpec \nyaml", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "QjCb3WZ-8v5ChL8WL1Obh", + "type": "arrow", + "x": 605.704772015586, + "y": 1801.76580606867, + "width": 90.33331298828125, + "height": 4, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ai", + "roundness": { + "type": 2 + }, + "seed": 1471743553, + "version": 853, + "versionNonce": 1008172193, + "isDeleted": false, + "boundElements": [], + "updated": 1766542690843, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -90.33331298828125, + 4 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "zJhO4LlN4kkZaSlalAqEn", + "focus": 0.1611880517201738, + "gap": 1.333343505859375 + }, + "endBinding": { + "elementId": "AeqnWfvRBAzri5XwyfQEq", + "focus": 0.06393742185081787, + "gap": 1 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "wKpsZ2hFBIgpn72A-8wZr", + "type": "text", + "x": 331.57185821878863, + "y": 1550.4324930803887, + "width": 704.9595336914062, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aj", + "roundness": null, + "seed": 169907745, + "version": 380, + "versionNonce": 1702855265, + "isDeleted": false, + "boundElements": [], + "updated": 1766544993470, + "link": null, + "locked": false, + "text": "v3.0 frontend & user data upload/download ---> 1st version to release!!", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "v3.0 frontend & user data upload/download ---> 1st version to release!!", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "r6-lzZiCDDrDt4PP7HmT6", + "type": "rectangle", + "x": 545.1953765829007, + "y": 1605.9324015276543, + "width": 210.1763265850289, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ak", + "roundness": null, + "seed": 1288382977, + "version": 665, + "versionNonce": 1013142031, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "6ae9k0dUsgAoCkk525fXO" + } + ], + "updated": 1766542755550, + "link": null, + "locked": false + }, + { + "id": "6ae9k0dUsgAoCkk525fXO", + "type": "text", + "x": 597.4335795482667, + "y": 1620.9324015276543, + "width": 105.69992065429688, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "al", + "roundness": null, + "seed": 683164129, + "version": 702, + "versionNonce": 1533818927, + "isDeleted": false, + "boundElements": [], + "updated": 1766542755550, + "link": null, + "locked": false, + "text": "API server", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "r6-lzZiCDDrDt4PP7HmT6", + "originalText": "API server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Nq8Dc7Jz3gqjE2TKyL7tr", + "type": "rectangle", + "x": 359.20477201558595, + "y": 1676.9324015276543, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "am", + "roundness": null, + "seed": 1526160833, + "version": 895, + "versionNonce": 931731631, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "L_CVODO1w2UyFpKvcdPHC" + } + ], + "updated": 1766542690628, + "link": null, + "locked": false + }, + { + "id": "L_CVODO1w2UyFpKvcdPHC", + "type": "text", + "x": 375.4066405462757, + "y": 1681.9324015276543, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "an", + "roundness": null, + "seed": 1386741153, + "version": 954, + "versionNonce": 123742927, + "isDeleted": false, + "boundElements": [], + "updated": 1766542690628, + "link": null, + "locked": false, + "text": "task\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "Nq8Dc7Jz3gqjE2TKyL7tr", + "originalText": "task management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "eebtjBKkYJE3VF_lVR2oE", + "type": "rectangle", + "x": 543.3123106012558, + "y": 1677.5067098403679, + "width": 207.59447102997498, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ao", + "roundness": null, + "seed": 1861853569, + "version": 986, + "versionNonce": 181401839, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "PXtF1zNsnvNxKU_H4jeH9" + } + ], + "updated": 1766542690628, + "link": null, + "locked": false + }, + { + "id": "PXtF1zNsnvNxKU_H4jeH9", + "type": "text", + "x": 559.5796160014972, + "y": 1682.5067098403679, + "width": 175.0598602294922, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ap", + "roundness": null, + "seed": 2100021601, + "version": 1076, + "versionNonce": 1197540111, + "isDeleted": false, + "boundElements": [], + "updated": 1766542690628, + "link": null, + "locked": false, + "text": "node management\n(ssh, ray cluster) ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "eebtjBKkYJE3VF_lVR2oE", + "originalText": "node management\n(ssh, ray cluster) ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "c435CnHbTETzqC7gKyhIm", + "type": "rectangle", + "x": 879.5111157371322, + "y": 1758.880433933417, + "width": 163.1357446724801, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aq", + "roundness": null, + "seed": 1989014849, + "version": 286, + "versionNonce": 1999959567, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "yBtyY9co8Ab9jgSrqqGY_" + } + ], + "updated": 1766550015460, + "link": null, + "locked": false + }, + { + "id": "yBtyY9co8Ab9jgSrqqGY_", + "type": "text", + "x": 916.299027441048, + "y": 1763.880433933417, + "width": 89.55992126464844, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ar", + "roundness": null, + "seed": 2122294561, + "version": 364, + "versionNonce": 96320993, + "isDeleted": false, + "boundElements": [], + "updated": 1766550017013, + "link": null, + "locked": false, + "text": "ssh node\ncontainer", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "c435CnHbTETzqC7gKyhIm", + "originalText": "ssh node container", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "mfKA7of0hnZM0OQJfcYru", + "type": "rectangle", + "x": 880.9548523743028, + "y": 1622.4426721958343, + "width": 163.1357446724801, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "as", + "roundness": null, + "seed": 544233729, + "version": 335, + "versionNonce": 272113953, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "WAFYosAqYimAcOXDP213P" + } + ], + "updated": 1766550021028, + "link": null, + "locked": false + }, + { + "id": "WAFYosAqYimAcOXDP213P", + "type": "text", + "x": 917.7427640782187, + "y": 1627.4426721958343, + "width": 89.55992126464844, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "at", + "roundness": null, + "seed": 1306497249, + "version": 413, + "versionNonce": 346419521, + "isDeleted": false, + "boundElements": [], + "updated": 1766550021028, + "link": null, + "locked": false, + "text": "ssh node\ncontainer", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "mfKA7of0hnZM0OQJfcYru", + "originalText": "ssh node container", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "3p8wLSQ7534CMRsq-Ob8W", + "type": "rectangle", + "x": 362.01028148167325, + "y": 1603.719508861911, + "width": 147.4799234681481, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "au", + "roundness": null, + "seed": 1851859425, + "version": 782, + "versionNonce": 1151086241, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "v9NQSPucXoHOlFYHQTVlZ" + } + ], + "updated": 1766542807715, + "link": null, + "locked": false + }, + { + "id": "v9NQSPucXoHOlFYHQTVlZ", + "type": "text", + "x": 404.5202703763918, + "y": 1618.719508861911, + "width": 62.45994567871094, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "av", + "roundness": null, + "seed": 948190657, + "version": 832, + "versionNonce": 297727855, + "isDeleted": false, + "boundElements": [], + "updated": 1766542778004, + "link": null, + "locked": false, + "text": "WebUI", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "3p8wLSQ7534CMRsq-Ob8W", + "originalText": "WebUI", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Rd7JHWM_ny8z2ZJ0MkCKn", + "type": "rectangle", + "x": 148.97176197870834, + "y": 2006.6604210780683, + "width": 647.3203086953981, + "height": 405.099679723593, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aw", + "roundness": { + "type": 3 + }, + "seed": 948027169, + "version": 697, + "versionNonce": 1180083041, + "isDeleted": false, + "boundElements": [], + "updated": 1766545096488, + "link": null, + "locked": false + }, + { + "id": "B1JM-LDb2vYza0FJIjrZC", + "type": "rectangle", + "x": 354.62529210965334, + "y": 2187.327077572209, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ax", + "roundness": null, + "seed": 1193227009, + "version": 487, + "versionNonce": 393578479, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "rEBo5c1XdkyzGhFPyFSHn" + }, + { + "id": "sY32sZPRyQsAIDp5SkRBr", + "type": "arrow" + }, + { + "id": "tHtCqZPa-q-naEqo8De3C", + "type": "arrow" + } + ], + "updated": 1766543076329, + "link": null, + "locked": false + }, + { + "id": "rEBo5c1XdkyzGhFPyFSHn", + "type": "text", + "x": 375.5686591140479, + "y": 2204.827077572209, + "width": 114.77995300292969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ay", + "roundness": null, + "seed": 765668065, + "version": 477, + "versionNonce": 346332751, + "isDeleted": false, + "boundElements": [], + "updated": 1766542962265, + "link": null, + "locked": false, + "text": "ray job tool\n(ray client)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "B1JM-LDb2vYza0FJIjrZC", + "originalText": "ray job tool\n(ray client)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "G5fZSvxsRcq1v8uhb3YS6", + "type": "rectangle", + "x": 599.6252921096534, + "y": 2186.827077572209, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "az", + "roundness": null, + "seed": 882714305, + "version": 624, + "versionNonce": 1170118287, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "uTe3sVvji88P6OIPncFqq" + }, + { + "id": "sY32sZPRyQsAIDp5SkRBr", + "type": "arrow" + } + ], + "updated": 1766542962265, + "link": null, + "locked": false + }, + { + "id": "uTe3sVvji88P6OIPncFqq", + "type": "text", + "x": 610.5086920730323, + "y": 2204.327077572209, + "width": 134.89988708496094, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b00", + "roundness": null, + "seed": 1722590881, + "version": 628, + "versionNonce": 300608687, + "isDeleted": false, + "boundElements": [], + "updated": 1766542962265, + "link": null, + "locked": false, + "text": "VerlTaskSpec \nyaml", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "G5fZSvxsRcq1v8uhb3YS6", + "originalText": "VerlTaskSpec \nyaml", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "sY32sZPRyQsAIDp5SkRBr", + "type": "arrow", + "x": 600.9586356155128, + "y": 2225.327077572209, + "width": 90.33331298828125, + "height": 4, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b01", + "roundness": { + "type": 2 + }, + "seed": 1317087873, + "version": 1182, + "versionNonce": 834140065, + "isDeleted": false, + "boundElements": [], + "updated": 1766542962468, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -90.33331298828125, + 4 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "G5fZSvxsRcq1v8uhb3YS6", + "focus": 0.1611880517201727, + "gap": 1.333343505859375 + }, + "endBinding": { + "elementId": "B1JM-LDb2vYza0FJIjrZC", + "focus": 0.06393742185081833, + "gap": 1 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "MSNGdxEhPAuZTViFZA0UY", + "type": "text", + "x": 154.90147538843206, + "y": 1942.0901138836757, + "width": 781.6194458007812, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b02", + "roundness": null, + "seed": 1960456801, + "version": 746, + "versionNonce": 54710305, + "isDeleted": false, + "boundElements": [], + "updated": 1766548609119, + "link": null, + "locked": false, + "text": "v3.5 Advanced task (customized param, reward function, verl version/code, etc) \n & resubmit from last checkpoint & ib network supporting & model serving", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "v3.5 Advanced task (customized param, reward function, verl version/code, etc) \n & resubmit from last checkpoint & ib network supporting & model serving", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "fzOO_AogClsdD9RH3-JNK", + "type": "rectangle", + "x": 540.4492401828275, + "y": 2029.4936730311933, + "width": 210.1763265850289, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b03", + "roundness": null, + "seed": 512179777, + "version": 776, + "versionNonce": 1046715695, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "uB6oYv9tR1wA14DPs0ooT" + } + ], + "updated": 1766542962265, + "link": null, + "locked": false + }, + { + "id": "uB6oYv9tR1wA14DPs0ooT", + "type": "text", + "x": 592.6874431481934, + "y": 2044.4936730311933, + "width": 105.69992065429688, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b04", + "roundness": null, + "seed": 1248316961, + "version": 814, + "versionNonce": 1232478031, + "isDeleted": false, + "boundElements": [], + "updated": 1766542962265, + "link": null, + "locked": false, + "text": "API server", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "fzOO_AogClsdD9RH3-JNK", + "originalText": "API server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "iH0YtWN9KBWOODaaTjBMV", + "type": "rectangle", + "x": 354.4586356155127, + "y": 2100.4936730311933, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b05", + "roundness": null, + "seed": 1869308417, + "version": 1006, + "versionNonce": 1865637231, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "YNxzP9EAbGLj3S1ox8TRq" + } + ], + "updated": 1766542962265, + "link": null, + "locked": false + }, + { + "id": "YNxzP9EAbGLj3S1ox8TRq", + "type": "text", + "x": 370.66050414620247, + "y": 2105.4936730311933, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b06", + "roundness": null, + "seed": 2056354273, + "version": 1065, + "versionNonce": 48486287, + "isDeleted": false, + "boundElements": [], + "updated": 1766542962265, + "link": null, + "locked": false, + "text": "task\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "iH0YtWN9KBWOODaaTjBMV", + "originalText": "task management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "0ZvDA2LRua0EySrPhQV5B", + "type": "rectangle", + "x": 538.5661742011825, + "y": 2101.067981343907, + "width": 207.59447102997498, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b07", + "roundness": null, + "seed": 216634817, + "version": 1097, + "versionNonce": 1522535855, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "h6mvzqBGKdfkOScP34ny_" + } + ], + "updated": 1766542962265, + "link": null, + "locked": false + }, + { + "id": "h6mvzqBGKdfkOScP34ny_", + "type": "text", + "x": 554.833479601424, + "y": 2106.067981343907, + "width": 175.0598602294922, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b08", + "roundness": null, + "seed": 2039690657, + "version": 1187, + "versionNonce": 1911586767, + "isDeleted": false, + "boundElements": [], + "updated": 1766542962265, + "link": null, + "locked": false, + "text": "node management\n(ssh, ray cluster) ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "0ZvDA2LRua0EySrPhQV5B", + "originalText": "node management\n(ssh, ray cluster) ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "UCNeCZDb_1FxxqXxFbnKE", + "type": "rectangle", + "x": 874.764979337059, + "y": 2182.441705436956, + "width": 163.1357446724801, + "height": 106.45708709635272, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b09", + "roundness": null, + "seed": 62773633, + "version": 394, + "versionNonce": 1250799087, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "PLea_3C6ZwhUvAxzMYPUt" + } + ], + "updated": 1766542962265, + "link": null, + "locked": false + }, + { + "id": "PLea_3C6ZwhUvAxzMYPUt", + "type": "text", + "x": 911.5528910409748, + "y": 2210.6702489851323, + "width": 89.55992126464844, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0A", + "roundness": null, + "seed": 1554579809, + "version": 455, + "versionNonce": 1729568367, + "isDeleted": false, + "boundElements": [], + "updated": 1766550026291, + "link": null, + "locked": false, + "text": "ssh node\ncontainer", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "UCNeCZDb_1FxxqXxFbnKE", + "originalText": "ssh node container", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "j0ctOKOc-HSrAaeO20QQv", + "type": "rectangle", + "x": 876.7140900065881, + "y": 2046.0039436993734, + "width": 163.1357446724801, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0B", + "roundness": null, + "seed": 1638149441, + "version": 443, + "versionNonce": 1998601775, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "5YoG8i-Ye5ly6-_S-cpdQ" + } + ], + "updated": 1766542962265, + "link": null, + "locked": false + }, + { + "id": "5YoG8i-Ye5ly6-_S-cpdQ", + "type": "text", + "x": 913.5020017105039, + "y": 2063.5039436993734, + "width": 89.55992126464844, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0C", + "roundness": null, + "seed": 437181729, + "version": 508, + "versionNonce": 1515785711, + "isDeleted": false, + "boundElements": [], + "updated": 1766550024498, + "link": null, + "locked": false, + "text": "ssh node\ncontainer", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "j0ctOKOc-HSrAaeO20QQv", + "originalText": "ssh node container", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "YmzKs_JghGq5gQ_1zRNTn", + "type": "rectangle", + "x": 357.2641450816, + "y": 2027.28078036545, + "width": 147.4799234681481, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0D", + "roundness": null, + "seed": 1968738561, + "version": 894, + "versionNonce": 2004715169, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "eON0BC4wPRqMcWvu_Thde" + } + ], + "updated": 1766542978938, + "link": null, + "locked": false + }, + { + "id": "eON0BC4wPRqMcWvu_Thde", + "type": "text", + "x": 399.7741339763186, + "y": 2042.28078036545, + "width": 62.45994567871094, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0E", + "roundness": null, + "seed": 1224788193, + "version": 943, + "versionNonce": 1173887119, + "isDeleted": false, + "boundElements": [], + "updated": 1766542962265, + "link": null, + "locked": false, + "text": "WebUI", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "YmzKs_JghGq5gQ_1zRNTn", + "originalText": "WebUI", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "D6Mbsmb7s6kKZ3ue7w8KF", + "type": "rectangle", + "x": 600.9359268425728, + "y": 2302.3761703818636, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0F", + "roundness": null, + "seed": 833708431, + "version": 675, + "versionNonce": 301361071, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "D_32yPttd9giCH42fMVwj" + }, + { + "id": "tHtCqZPa-q-naEqo8De3C", + "type": "arrow" + } + ], + "updated": 1766543076329, + "link": null, + "locked": false + }, + { + "id": "D_32yPttd9giCH42fMVwj", + "type": "text", + "x": 605.9793228386666, + "y": 2307.3761703818636, + "width": 146.57989501953125, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0G", + "roundness": null, + "seed": 726423471, + "version": 723, + "versionNonce": 754280481, + "isDeleted": false, + "boundElements": [], + "updated": 1766548439582, + "link": null, + "locked": false, + "text": "Advanced\nVerlTaskSpec \n(code, ckpt, ib)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "D6Mbsmb7s6kKZ3ue7w8KF", + "originalText": "Advanced VerlTaskSpec \n(code, ckpt, ib)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "tHtCqZPa-q-naEqo8De3C", + "type": "arrow", + "x": 600.4721200456563, + "y": 2346.741162896063, + "width": 80.66214281697523, + "height": 84.85848269127973, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0H", + "roundness": { + "type": 2 + }, + "seed": 1104975823, + "version": 29, + "versionNonce": 1699453391, + "isDeleted": false, + "boundElements": null, + "updated": 1766543076329, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -80.66214281697523, + -84.85848269127973 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "D6Mbsmb7s6kKZ3ue7w8KF", + "focus": -0.678588231473151, + "gap": 1 + }, + "endBinding": { + "elementId": "B1JM-LDb2vYza0FJIjrZC", + "focus": -0.47485998984049543, + "gap": 8.517998107308983 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "qkWkNKpTsLg6U9leqsm4-", + "type": "rectangle", + "x": 172.060096535475, + "y": 2100.3987016674446, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0I", + "roundness": null, + "seed": 1670778689, + "version": 1068, + "versionNonce": 1798688943, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "nL4Y5sbkko_brwnm-BEBA" + } + ], + "updated": 1766543504718, + "link": null, + "locked": false + }, + { + "id": "nL4Y5sbkko_brwnm-BEBA", + "type": "text", + "x": 188.26196506616475, + "y": 2105.3987016674446, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0J", + "roundness": null, + "seed": 125075233, + "version": 1136, + "versionNonce": 1447221985, + "isDeleted": false, + "boundElements": [], + "updated": 1766543421158, + "link": null, + "locked": false, + "text": "user\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "qkWkNKpTsLg6U9leqsm4-", + "originalText": "user management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Ys7d2fWRwN2PPd6LDREs4", + "type": "rectangle", + "x": 173.92511039314536, + "y": 1261.139221508128, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0K", + "roundness": null, + "seed": 1744667329, + "version": 1130, + "versionNonce": 586008449, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "kIlBgdPg7c5O0klEOi1-w" + } + ], + "updated": 1766543494192, + "link": null, + "locked": false + }, + { + "id": "kIlBgdPg7c5O0klEOi1-w", + "type": "text", + "x": 190.1269789238351, + "y": 1266.139221508128, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0L", + "roundness": null, + "seed": 94470817, + "version": 1199, + "versionNonce": 732639073, + "isDeleted": false, + "boundElements": [], + "updated": 1766543494192, + "link": null, + "locked": false, + "text": "user\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "Ys7d2fWRwN2PPd6LDREs4", + "originalText": "user management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "fhLu583SX17E_zMLeDOm1", + "type": "rectangle", + "x": 174.85764933718747, + "y": 1676.1064162718744, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0M", + "roundness": null, + "seed": 2045571951, + "version": 1184, + "versionNonce": 2054283777, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "2JHTEPzkbSxTJvu0Ry2Px" + } + ], + "updated": 1766543502209, + "link": null, + "locked": false + }, + { + "id": "2JHTEPzkbSxTJvu0Ry2Px", + "type": "text", + "x": 191.05951786787722, + "y": 1681.1064162718744, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0N", + "roundness": null, + "seed": 1845144975, + "version": 1252, + "versionNonce": 4522575, + "isDeleted": false, + "boundElements": [], + "updated": 1766543500924, + "link": null, + "locked": false, + "text": "user\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "fhLu583SX17E_zMLeDOm1", + "originalText": "user management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "w7c3EvHJ-hP_Wx_78cXIV", + "type": "rectangle", + "x": 176.25650044019284, + "y": 1771.2224858520765, + "width": 154.6436510018092, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0O", + "roundness": null, + "seed": 1166830703, + "version": 1233, + "versionNonce": 1792737249, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "nwROPKKUdQBcf0FniBFQM" + } + ], + "updated": 1766544752348, + "link": null, + "locked": false + }, + { + "id": "nwROPKKUdQBcf0FniBFQM", + "type": "text", + "x": 196.4583689708826, + "y": 1776.2224858520765, + "width": 114.23991394042969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0P", + "roundness": null, + "seed": 1766000271, + "version": 1315, + "versionNonce": 101653583, + "isDeleted": false, + "boundElements": [], + "updated": 1766544748283, + "link": null, + "locked": false, + "text": "data\nmanagement\nSFTPGo ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "w7c3EvHJ-hP_Wx_78cXIV", + "originalText": "data management\nSFTPGo ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "9SzE8X2Esx1vJ_jtGthK9", + "type": "rectangle", + "x": 178.12149295439207, + "y": 2293.9835333201972, + "width": 154.6436510018092, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0Q", + "roundness": null, + "seed": 1911365505, + "version": 1300, + "versionNonce": 19802991, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "-z9hjSSocLm53YhBBKaKl" + } + ], + "updated": 1766544765826, + "link": null, + "locked": false + }, + { + "id": "-z9hjSSocLm53YhBBKaKl", + "type": "text", + "x": 198.32336148508182, + "y": 2298.9835333201972, + "width": 114.23991394042969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0R", + "roundness": null, + "seed": 285181793, + "version": 1382, + "versionNonce": 2083578689, + "isDeleted": false, + "boundElements": [], + "updated": 1766544763644, + "link": null, + "locked": false, + "text": "data\nmanagement\nSFTPGo ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "9SzE8X2Esx1vJ_jtGthK9", + "originalText": "data management\nSFTPGo ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "hfyGYREhwfOiJ0NmS7nWJ", + "type": "rectangle", + "x": 145.70805709406656, + "y": 2619.319767745958, + "width": 647.3203086953981, + "height": 526.3260713720084, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0S", + "roundness": { + "type": 3 + }, + "seed": 1547009185, + "version": 833, + "versionNonce": 123286017, + "isDeleted": false, + "boundElements": [], + "updated": 1766545303838, + "link": null, + "locked": false + }, + { + "id": "kcnXooRmgv12d40l7DX1I", + "type": "rectangle", + "x": 351.3615872250116, + "y": 2799.9864242400986, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0T", + "roundness": null, + "seed": 142557313, + "version": 581, + "versionNonce": 1369576865, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "-kTPtQM7ZjAJg_O72uvP0" + }, + { + "id": "BfGeVEKVLbnnxWatX-CuX", + "type": "arrow" + }, + { + "id": "OJ2YvI_4pyTp3tvnog5HM", + "type": "arrow" + } + ], + "updated": 1766545237730, + "link": null, + "locked": false + }, + { + "id": "-kTPtQM7ZjAJg_O72uvP0", + "type": "text", + "x": 372.3049542294061, + "y": 2817.4864242400986, + "width": 114.77995300292969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0U", + "roundness": null, + "seed": 849709153, + "version": 571, + "versionNonce": 921745793, + "isDeleted": false, + "boundElements": [], + "updated": 1766545237730, + "link": null, + "locked": false, + "text": "ray job tool\n(ray client)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "kcnXooRmgv12d40l7DX1I", + "originalText": "ray job tool\n(ray client)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "syy4HE220r-q_RMUUSsel", + "type": "rectangle", + "x": 596.3615872250116, + "y": 2799.4864242400986, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0V", + "roundness": null, + "seed": 1954010177, + "version": 718, + "versionNonce": 61717793, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "CA5CuK3pSeEixp1YwKENQ" + }, + { + "id": "BfGeVEKVLbnnxWatX-CuX", + "type": "arrow" + } + ], + "updated": 1766545237730, + "link": null, + "locked": false + }, + { + "id": "CA5CuK3pSeEixp1YwKENQ", + "type": "text", + "x": 607.2449871883905, + "y": 2816.9864242400986, + "width": 134.89988708496094, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0W", + "roundness": null, + "seed": 30778401, + "version": 722, + "versionNonce": 136016129, + "isDeleted": false, + "boundElements": [], + "updated": 1766545237730, + "link": null, + "locked": false, + "text": "VerlTaskSpec \nyaml", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "syy4HE220r-q_RMUUSsel", + "originalText": "VerlTaskSpec \nyaml", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "BfGeVEKVLbnnxWatX-CuX", + "type": "arrow", + "x": 597.694930730871, + "y": 2837.9864242400986, + "width": 90.33331298828125, + "height": 4, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0X", + "roundness": { + "type": 2 + }, + "seed": 1722710017, + "version": 1460, + "versionNonce": 1568273583, + "isDeleted": false, + "boundElements": [], + "updated": 1766545238799, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -90.33331298828125, + 4 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "syy4HE220r-q_RMUUSsel", + "focus": 0.16118805172016915, + "gap": 1.333343505859375 + }, + "endBinding": { + "elementId": "kcnXooRmgv12d40l7DX1I", + "focus": 0.06393742185082188, + "gap": 1 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "XwaSYITVD0m2YORWBiATj", + "type": "text", + "x": 324.49455587811565, + "y": 2586.6531112518173, + "width": 480.5596923828125, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0Y", + "roundness": null, + "seed": 84004833, + "version": 652, + "versionNonce": 1828651841, + "isDeleted": false, + "boundElements": [], + "updated": 1766546120049, + "link": null, + "locked": false, + "text": "v4.0 observability (prom, grafana, alert, ELK, etc)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "v4.0 observability (prom, grafana, alert, ELK, etc)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "hO23c7cUKniC0ShSkbYHY", + "type": "rectangle", + "x": 537.1855352981856, + "y": 2642.153019699083, + "width": 210.1763265850289, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0Z", + "roundness": null, + "seed": 1390357441, + "version": 870, + "versionNonce": 1752066177, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "WvC3BnzbmedjQgc_rcGOG" + } + ], + "updated": 1766545237730, + "link": null, + "locked": false + }, + { + "id": "WvC3BnzbmedjQgc_rcGOG", + "type": "text", + "x": 589.4237382635517, + "y": 2657.153019699083, + "width": 105.69992065429688, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0a", + "roundness": null, + "seed": 1483082657, + "version": 909, + "versionNonce": 443527265, + "isDeleted": false, + "boundElements": [], + "updated": 1766545237730, + "link": null, + "locked": false, + "text": "API server", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "hO23c7cUKniC0ShSkbYHY", + "originalText": "API server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "QTuaauYBrKurb9Uym-vJ0", + "type": "rectangle", + "x": 351.19493073087096, + "y": 2713.153019699083, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0b", + "roundness": null, + "seed": 1841688449, + "version": 1100, + "versionNonce": 817691713, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "wds-TjwVp7NzSUYdwGMzH" + } + ], + "updated": 1766545237730, + "link": null, + "locked": false + }, + { + "id": "wds-TjwVp7NzSUYdwGMzH", + "type": "text", + "x": 367.39679926156066, + "y": 2718.153019699083, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0c", + "roundness": null, + "seed": 960386913, + "version": 1159, + "versionNonce": 1261816865, + "isDeleted": false, + "boundElements": [], + "updated": 1766545237730, + "link": null, + "locked": false, + "text": "task\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "QTuaauYBrKurb9Uym-vJ0", + "originalText": "task management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "h-InDEDqJ6h9usuQPtO1A", + "type": "rectangle", + "x": 535.3024693165407, + "y": 2713.7273280117965, + "width": 207.59447102997498, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0d", + "roundness": null, + "seed": 1830732609, + "version": 1191, + "versionNonce": 1640603649, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "B1uYGWk1HK8JtizGFaaGC" + } + ], + "updated": 1766545237730, + "link": null, + "locked": false + }, + { + "id": "B1uYGWk1HK8JtizGFaaGC", + "type": "text", + "x": 551.5697747167821, + "y": 2718.7273280117965, + "width": 175.0598602294922, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0e", + "roundness": null, + "seed": 1170649889, + "version": 1281, + "versionNonce": 1115158497, + "isDeleted": false, + "boundElements": [], + "updated": 1766545237730, + "link": null, + "locked": false, + "text": "node management\n(ssh, ray cluster) ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "h-InDEDqJ6h9usuQPtO1A", + "originalText": "node management\n(ssh, ray cluster) ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "XS4hxHD7hkjqqdIPoHNyM", + "type": "rectangle", + "x": 872.6485818367171, + "y": 2851.7015263882736, + "width": 163.1357446724801, + "height": 106.45708709635272, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0f", + "roundness": null, + "seed": 1202038529, + "version": 516, + "versionNonce": 390245327, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "ilnIrrhwIwdl5yMP0J_-o" + } + ], + "updated": 1766545564008, + "link": null, + "locked": false + }, + { + "id": "ilnIrrhwIwdl5yMP0J_-o", + "type": "text", + "x": 909.4364935406329, + "y": 2879.93006993645, + "width": 89.55992126464844, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0g", + "roundness": null, + "seed": 1027284705, + "version": 578, + "versionNonce": 40809217, + "isDeleted": false, + "boundElements": [], + "updated": 1766550032641, + "link": null, + "locked": false, + "text": "ssh node\ncontainer", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "XS4hxHD7hkjqqdIPoHNyM", + "originalText": "ssh node container", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "qYCyZgffVShRdxYkZZEQC", + "type": "rectangle", + "x": 873.4503851219463, + "y": 2658.663290367263, + "width": 163.1357446724801, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0h", + "roundness": null, + "seed": 1964415681, + "version": 537, + "versionNonce": 235739009, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "7cAjOCsL26YdZ9huXHSvG" + } + ], + "updated": 1766545237730, + "link": null, + "locked": false + }, + { + "id": "7cAjOCsL26YdZ9huXHSvG", + "type": "text", + "x": 910.2382968258621, + "y": 2676.163290367263, + "width": 89.55992126464844, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0i", + "roundness": null, + "seed": 1071094433, + "version": 602, + "versionNonce": 242547585, + "isDeleted": false, + "boundElements": [], + "updated": 1766550030479, + "link": null, + "locked": false, + "text": "ssh node\ncontainer", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "qYCyZgffVShRdxYkZZEQC", + "originalText": "ssh node container", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Ov7Ctp7PvJITFoQy7Yb4E", + "type": "rectangle", + "x": 354.00044019695827, + "y": 2639.9401270333396, + "width": 147.4799234681481, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0j", + "roundness": null, + "seed": 774741633, + "version": 988, + "versionNonce": 867953473, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "hkWZM79d15pmmlJnpM5GC" + } + ], + "updated": 1766545237730, + "link": null, + "locked": false + }, + { + "id": "hkWZM79d15pmmlJnpM5GC", + "type": "text", + "x": 396.5104290916768, + "y": 2654.9401270333396, + "width": 62.45994567871094, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0k", + "roundness": null, + "seed": 249046625, + "version": 1038, + "versionNonce": 243194657, + "isDeleted": false, + "boundElements": [], + "updated": 1766545237730, + "link": null, + "locked": false, + "text": "WebUI", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "Ov7Ctp7PvJITFoQy7Yb4E", + "originalText": "WebUI", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "hJ1qbW1rf0n6-WrDss2Ro", + "type": "rectangle", + "x": 597.672221957931, + "y": 2915.035517049753, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0l", + "roundness": null, + "seed": 749122113, + "version": 770, + "versionNonce": 1067673025, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "w68ybhw27soUMyLsMu-vA" + }, + { + "id": "OJ2YvI_4pyTp3tvnog5HM", + "type": "arrow" + } + ], + "updated": 1766545307006, + "link": null, + "locked": false + }, + { + "id": "w68ybhw27soUMyLsMu-vA", + "type": "text", + "x": 602.7156179540248, + "y": 2920.035517049753, + "width": 146.57989501953125, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0m", + "roundness": null, + "seed": 1282982433, + "version": 784, + "versionNonce": 2124728655, + "isDeleted": false, + "boundElements": [], + "updated": 1766548451240, + "link": null, + "locked": false, + "text": "Advanced\nVerlTaskSpec \n(code, ckpt, ib)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "hJ1qbW1rf0n6-WrDss2Ro", + "originalText": "Advanced VerlTaskSpec \n(code, ckpt, ib)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "OJ2YvI_4pyTp3tvnog5HM", + "type": "arrow", + "x": 597.2084151610145, + "y": 2959.4005095639527, + "width": 80.66214281697523, + "height": 84.85848269127973, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0n", + "roundness": { + "type": 2 + }, + "seed": 1799214593, + "version": 307, + "versionNonce": 389666031, + "isDeleted": false, + "boundElements": [], + "updated": 1766545238799, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -80.66214281697523, + -84.85848269127973 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "hJ1qbW1rf0n6-WrDss2Ro", + "focus": -0.6785882314731592, + "gap": 1 + }, + "endBinding": { + "elementId": "kcnXooRmgv12d40l7DX1I", + "focus": -0.4748599898404937, + "gap": 8.517998107308927 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "ozgVxBsj7snNecNunrp11", + "type": "rectangle", + "x": 168.79639165083321, + "y": 2713.0580483353347, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0o", + "roundness": null, + "seed": 1005940193, + "version": 1162, + "versionNonce": 919389825, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "i3wz2t7mbs8b39oPir_Gf" + } + ], + "updated": 1766545237730, + "link": null, + "locked": false + }, + { + "id": "i3wz2t7mbs8b39oPir_Gf", + "type": "text", + "x": 184.99826018152297, + "y": 2718.0580483353347, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0p", + "roundness": null, + "seed": 1705970113, + "version": 1230, + "versionNonce": 156388961, + "isDeleted": false, + "boundElements": [], + "updated": 1766545237730, + "link": null, + "locked": false, + "text": "user\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "ozgVxBsj7snNecNunrp11", + "originalText": "user management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "-6-EuXJhEm2mWx5ISTwFk", + "type": "rectangle", + "x": 174.85778806975028, + "y": 2906.6428799880864, + "width": 154.6436510018092, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0q", + "roundness": null, + "seed": 25831841, + "version": 1394, + "versionNonce": 630970945, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "GabFf-T0sdW_Oq8DrJ2I3" + } + ], + "updated": 1766545237730, + "link": null, + "locked": false + }, + { + "id": "GabFf-T0sdW_Oq8DrJ2I3", + "type": "text", + "x": 195.05965660044004, + "y": 2911.6428799880864, + "width": 114.23991394042969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0r", + "roundness": null, + "seed": 1488342401, + "version": 1476, + "versionNonce": 1015605793, + "isDeleted": false, + "boundElements": [], + "updated": 1766545237730, + "link": null, + "locked": false, + "text": "data\nmanagement\nSFTPGo ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "-6-EuXJhEm2mWx5ISTwFk", + "originalText": "data management\nSFTPGo ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "OkOW_h1bpRwbXvHRE98qO", + "type": "rectangle", + "x": 182.78414498765986, + "y": 3050.6268158384833, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0s", + "roundness": null, + "seed": 905236833, + "version": 1230, + "versionNonce": 1563580431, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "dr1KmTO-yRI3g5vju74ZK" + } + ], + "updated": 1766545349965, + "link": null, + "locked": false + }, + { + "id": "dr1KmTO-yRI3g5vju74ZK", + "type": "text", + "x": 205.13600741483398, + "y": 3068.1268158384833, + "width": 109.93992614746094, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0t", + "roundness": null, + "seed": 1089862977, + "version": 1310, + "versionNonce": 656720751, + "isDeleted": false, + "boundElements": [], + "updated": 1766545320817, + "link": null, + "locked": false, + "text": "prometheus", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "OkOW_h1bpRwbXvHRE98qO", + "originalText": "prometheus", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "PwNRlpy3F_V5w-3sfAYAQ", + "type": "rectangle", + "x": 380.47625420486156, + "y": 3048.761908698168, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0u", + "roundness": null, + "seed": 1448322511, + "version": 1274, + "versionNonce": 130692193, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "kWS_uGtXbrBusArKpVdGc" + } + ], + "updated": 1766545349965, + "link": null, + "locked": false + }, + { + "id": "kWS_uGtXbrBusArKpVdGc", + "type": "text", + "x": 421.01811907344194, + "y": 3066.261908698168, + "width": 73.55992126464844, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0v", + "roundness": null, + "seed": 1134302191, + "version": 1363, + "versionNonce": 2067682977, + "isDeleted": false, + "boundElements": [], + "updated": 1766545330509, + "link": null, + "locked": false, + "text": "grafana", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "PwNRlpy3F_V5w-3sfAYAQ", + "originalText": "grafana", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Kh_k-i4xvHEjEJb8_WQGe", + "type": "rectangle", + "x": 144.7756888977941, + "y": 3318.702674993213, + "width": 647.3203086953981, + "height": 641.0568098019863, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0y", + "roundness": { + "type": 3 + }, + "seed": 1341573071, + "version": 944, + "versionNonce": 857091553, + "isDeleted": false, + "boundElements": [], + "updated": 1766545521716, + "link": null, + "locked": false + }, + { + "id": "_W--_CG68zeuj3T62ETPL", + "type": "rectangle", + "x": 350.4292190287391, + "y": 3499.3693314873535, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0z", + "roundness": null, + "seed": 545977839, + "version": 661, + "versionNonce": 1136311439, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "ta4lpkZtQQzWOHjvV7FUZ" + }, + { + "id": "EHQ4kp8hzyDTaf37J9ZtT", + "type": "arrow" + }, + { + "id": "bkx6LQav2SUWAUBD5ulLa", + "type": "arrow" + } + ], + "updated": 1766545389705, + "link": null, + "locked": false + }, + { + "id": "ta4lpkZtQQzWOHjvV7FUZ", + "type": "text", + "x": 371.37258603313364, + "y": 3516.8693314873535, + "width": 114.77995300292969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b10", + "roundness": null, + "seed": 1186226191, + "version": 651, + "versionNonce": 158487215, + "isDeleted": false, + "boundElements": [], + "updated": 1766545389705, + "link": null, + "locked": false, + "text": "ray job tool\n(ray client)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "_W--_CG68zeuj3T62ETPL", + "originalText": "ray job tool\n(ray client)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "ff2ONOPa1y8jPmi5h653t", + "type": "rectangle", + "x": 595.4292190287391, + "y": 3498.8693314873535, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b11", + "roundness": null, + "seed": 1416332847, + "version": 800, + "versionNonce": 250191489, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "Sp8TUJYedU9gJGAI-AxfH" + }, + { + "id": "EHQ4kp8hzyDTaf37J9ZtT", + "type": "arrow" + } + ], + "updated": 1766546214569, + "link": null, + "locked": false + }, + { + "id": "Sp8TUJYedU9gJGAI-AxfH", + "type": "text", + "x": 606.312618992118, + "y": 3516.3693314873535, + "width": 134.89988708496094, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b12", + "roundness": null, + "seed": 144238671, + "version": 802, + "versionNonce": 2080899887, + "isDeleted": false, + "boundElements": [], + "updated": 1766545389705, + "link": null, + "locked": false, + "text": "VerlTaskSpec \nyaml", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "ff2ONOPa1y8jPmi5h653t", + "originalText": "VerlTaskSpec \nyaml", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "EHQ4kp8hzyDTaf37J9ZtT", + "type": "arrow", + "x": 596.7625625345985, + "y": 3537.3693314873535, + "width": 90.33331298828125, + "height": 4, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b13", + "roundness": { + "type": 2 + }, + "seed": 823461487, + "version": 1696, + "versionNonce": 1657674593, + "isDeleted": false, + "boundElements": [], + "updated": 1766545390322, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -90.33331298828125, + 4 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "ff2ONOPa1y8jPmi5h653t", + "focus": 0.1611880517201695, + "gap": 1.333343505859375 + }, + "endBinding": { + "elementId": "_W--_CG68zeuj3T62ETPL", + "focus": 0.06393742185081497, + "gap": 1 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "L4pG2mhd5e-0Pd1Pi3Rtf", + "type": "text", + "x": 323.0959182098221, + "y": 3285.1034795550304, + "width": 248.73980712890625, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b14", + "roundness": null, + "seed": 1286103183, + "version": 773, + "versionNonce": 1540512385, + "isDeleted": false, + "boundElements": [], + "updated": 1766546254231, + "link": null, + "locked": false, + "text": "v4.5 observerbility (wanb)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "v4.5 observerbility (wanb)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "-nJJwacshyGBduJHI6hXt", + "type": "rectangle", + "x": 536.2531671019132, + "y": 3341.535926946338, + "width": 210.1763265850289, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b15", + "roundness": null, + "seed": 1829467823, + "version": 950, + "versionNonce": 1744925615, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "jDNKsROHTO2oMIWzI3OsA" + } + ], + "updated": 1766545389705, + "link": null, + "locked": false + }, + { + "id": "jDNKsROHTO2oMIWzI3OsA", + "type": "text", + "x": 588.4913700672791, + "y": 3356.535926946338, + "width": 105.69992065429688, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b16", + "roundness": null, + "seed": 1491519695, + "version": 990, + "versionNonce": 1578444239, + "isDeleted": false, + "boundElements": [], + "updated": 1766545389705, + "link": null, + "locked": false, + "text": "API server", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "-nJJwacshyGBduJHI6hXt", + "originalText": "API server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "up-AtpppOYdyyCNXNlwgr", + "type": "rectangle", + "x": 350.2625625345985, + "y": 3412.535926946338, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b17", + "roundness": null, + "seed": 1842534127, + "version": 1180, + "versionNonce": 1462604783, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "jXoEPKCyuLdoL1i4yThdA" + } + ], + "updated": 1766545389705, + "link": null, + "locked": false + }, + { + "id": "jXoEPKCyuLdoL1i4yThdA", + "type": "text", + "x": 366.4644310652883, + "y": 3417.535926946338, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b18", + "roundness": null, + "seed": 1113071887, + "version": 1240, + "versionNonce": 190004751, + "isDeleted": false, + "boundElements": [], + "updated": 1766545389705, + "link": null, + "locked": false, + "text": "task\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "up-AtpppOYdyyCNXNlwgr", + "originalText": "task management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "7zXodXAZupZo9ox9VxG2c", + "type": "rectangle", + "x": 534.3701011202683, + "y": 3413.1102352590515, + "width": 207.59447102997498, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b19", + "roundness": null, + "seed": 133113647, + "version": 1271, + "versionNonce": 494838831, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "ghLH4zRCaGh2ml_wjH-TO" + } + ], + "updated": 1766545389705, + "link": null, + "locked": false + }, + { + "id": "ghLH4zRCaGh2ml_wjH-TO", + "type": "text", + "x": 550.6374065205097, + "y": 3418.1102352590515, + "width": 175.0598602294922, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1A", + "roundness": null, + "seed": 755001679, + "version": 1361, + "versionNonce": 1033389647, + "isDeleted": false, + "boundElements": [], + "updated": 1766545389705, + "link": null, + "locked": false, + "text": "node management\n(ssh, ray cluster) ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "7zXodXAZupZo9ox9VxG2c", + "originalText": "node management\n(ssh, ray cluster) ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "_jFvOMU6QE09vt670MiYY", + "type": "rectangle", + "x": 872.4811085720062, + "y": 3547.260099029891, + "width": 163.1357446724801, + "height": 106.45708709635272, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1B", + "roundness": null, + "seed": 1055156079, + "version": 602, + "versionNonce": 1494939727, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "MlWwMns8GvsbUSPuAkpxn" + } + ], + "updated": 1766545582405, + "link": null, + "locked": false + }, + { + "id": "MlWwMns8GvsbUSPuAkpxn", + "type": "text", + "x": 909.269020275922, + "y": 3575.4886425780674, + "width": 89.55992126464844, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1C", + "roundness": null, + "seed": 199467407, + "version": 664, + "versionNonce": 245158063, + "isDeleted": false, + "boundElements": [], + "updated": 1766550037488, + "link": null, + "locked": false, + "text": "ssh node\ncontainer", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "_jFvOMU6QE09vt670MiYY", + "originalText": "ssh node container", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "tzm932P2Nq-2wiRjYiVPx", + "type": "rectangle", + "x": 872.5180169256738, + "y": 3358.046197614518, + "width": 163.1357446724801, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1D", + "roundness": null, + "seed": 87463855, + "version": 617, + "versionNonce": 1553962159, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "UI2QBOWsvPD_E4TkC2r6A" + } + ], + "updated": 1766545389705, + "link": null, + "locked": false + }, + { + "id": "UI2QBOWsvPD_E4TkC2r6A", + "type": "text", + "x": 909.3059286295896, + "y": 3375.546197614518, + "width": 89.55992126464844, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1E", + "roundness": null, + "seed": 1627769295, + "version": 683, + "versionNonce": 2016853569, + "isDeleted": false, + "boundElements": [], + "updated": 1766550036548, + "link": null, + "locked": false, + "text": "ssh node\ncontainer", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "tzm932P2Nq-2wiRjYiVPx", + "originalText": "ssh node container", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "vzmun3KBgH1bWxrCLhdr4", + "type": "rectangle", + "x": 353.0680720006858, + "y": 3339.3230342805946, + "width": 147.4799234681481, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1F", + "roundness": null, + "seed": 2087303151, + "version": 1068, + "versionNonce": 24605935, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "VEsmYxCGuRpYe7MsXVGH4" + } + ], + "updated": 1766545389705, + "link": null, + "locked": false + }, + { + "id": "VEsmYxCGuRpYe7MsXVGH4", + "type": "text", + "x": 395.5780608954044, + "y": 3354.3230342805946, + "width": 62.45994567871094, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1G", + "roundness": null, + "seed": 2104156687, + "version": 1119, + "versionNonce": 1941503759, + "isDeleted": false, + "boundElements": [], + "updated": 1766545389705, + "link": null, + "locked": false, + "text": "WebUI", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "vzmun3KBgH1bWxrCLhdr4", + "originalText": "WebUI", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "kqsUdl0CACk1QR5EJIsUM", + "type": "rectangle", + "x": 596.7398537616585, + "y": 3614.4184242970077, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1H", + "roundness": null, + "seed": 889309231, + "version": 852, + "versionNonce": 1692812815, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "48jcZ2N3xXiaxLPFd7pd-" + }, + { + "id": "bkx6LQav2SUWAUBD5ulLa", + "type": "arrow" + } + ], + "updated": 1766546214569, + "link": null, + "locked": false + }, + { + "id": "48jcZ2N3xXiaxLPFd7pd-", + "type": "text", + "x": 607.6232537250374, + "y": 3631.9184242970077, + "width": 134.89988708496094, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1I", + "roundness": null, + "seed": 1092020815, + "version": 882, + "versionNonce": 1330794145, + "isDeleted": false, + "boundElements": [], + "updated": 1766548533430, + "link": null, + "locked": false, + "text": "Advanced\nVerlTaskSpec ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "kqsUdl0CACk1QR5EJIsUM", + "originalText": "Advanced VerlTaskSpec ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "bkx6LQav2SUWAUBD5ulLa", + "type": "arrow", + "x": 596.276046964742, + "y": 3658.7834168112076, + "width": 80.66214281697523, + "height": 84.85848269127973, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1J", + "roundness": { + "type": 2 + }, + "seed": 1854064751, + "version": 543, + "versionNonce": 1496676129, + "isDeleted": false, + "boundElements": [], + "updated": 1766545390322, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -80.66214281697523, + -84.85848269127973 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "kqsUdl0CACk1QR5EJIsUM", + "focus": -0.6785882314731533, + "gap": 1 + }, + "endBinding": { + "elementId": "_W--_CG68zeuj3T62ETPL", + "focus": -0.4748599898404899, + "gap": 8.517998107308927 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "IOTv_Hn-HGdkkJrYt0s5v", + "type": "rectangle", + "x": 167.86402345456077, + "y": 3412.4409555825896, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1K", + "roundness": null, + "seed": 1527636623, + "version": 1242, + "versionNonce": 676115887, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "m_jx2UrHXZ0NfOapDPm-L" + } + ], + "updated": 1766545389705, + "link": null, + "locked": false + }, + { + "id": "m_jx2UrHXZ0NfOapDPm-L", + "type": "text", + "x": 184.06589198525052, + "y": 3417.4409555825896, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1L", + "roundness": null, + "seed": 1467005103, + "version": 1310, + "versionNonce": 933767119, + "isDeleted": false, + "boundElements": [], + "updated": 1766545389705, + "link": null, + "locked": false, + "text": "user\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "IOTv_Hn-HGdkkJrYt0s5v", + "originalText": "user management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "YTMJ4-LAXakruC_IZ4VMV", + "type": "rectangle", + "x": 173.92541987347784, + "y": 3606.0257872353413, + "width": 154.6436510018092, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1M", + "roundness": null, + "seed": 156486351, + "version": 1474, + "versionNonce": 1259361775, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "3zvswnkz729ixr6DjNPxl" + } + ], + "updated": 1766545389705, + "link": null, + "locked": false + }, + { + "id": "3zvswnkz729ixr6DjNPxl", + "type": "text", + "x": 194.1272884041676, + "y": 3611.0257872353413, + "width": 114.23991394042969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1N", + "roundness": null, + "seed": 1297062127, + "version": 1556, + "versionNonce": 965591055, + "isDeleted": false, + "boundElements": [], + "updated": 1766545389705, + "link": null, + "locked": false, + "text": "data\nmanagement\nSFTPGo ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "YTMJ4-LAXakruC_IZ4VMV", + "originalText": "data management\nSFTPGo ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "KLsJgrEgTOZMoS63wjzN_", + "type": "rectangle", + "x": 181.8517767913874, + "y": 3750.009723085738, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1O", + "roundness": null, + "seed": 1491903247, + "version": 1311, + "versionNonce": 1980786799, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "ep3LNDs6SOtIx1TDhkW8G" + } + ], + "updated": 1766545503640, + "link": null, + "locked": false + }, + { + "id": "ep3LNDs6SOtIx1TDhkW8G", + "type": "text", + "x": 204.20363921856153, + "y": 3767.509723085738, + "width": 109.93992614746094, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1P", + "roundness": null, + "seed": 480471343, + "version": 1390, + "versionNonce": 1553614927, + "isDeleted": false, + "boundElements": [], + "updated": 1766545389705, + "link": null, + "locked": false, + "text": "prometheus", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "KLsJgrEgTOZMoS63wjzN_", + "originalText": "prometheus", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "v560fy5BrT8Z52JNzT8xm", + "type": "rectangle", + "x": 379.5438860085891, + "y": 3748.144815945423, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1Q", + "roundness": null, + "seed": 1708944207, + "version": 1355, + "versionNonce": 2145114625, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "ooj5Xb_9jcdjO3WZ1Vijt" + } + ], + "updated": 1766545503640, + "link": null, + "locked": false + }, + { + "id": "ooj5Xb_9jcdjO3WZ1Vijt", + "type": "text", + "x": 420.0857508771695, + "y": 3765.644815945423, + "width": 73.55992126464844, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1R", + "roundness": null, + "seed": 1089481071, + "version": 1443, + "versionNonce": 1473364111, + "isDeleted": false, + "boundElements": [], + "updated": 1766545389705, + "link": null, + "locked": false, + "text": "grafana", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "v560fy5BrT8Z52JNzT8xm", + "originalText": "grafana", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "SBmp6XU2_8KPazefCsLpu", + "type": "rectangle", + "x": 581.8987326329435, + "y": 3746.2797380573393, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1S", + "roundness": null, + "seed": 455549839, + "version": 1403, + "versionNonce": 466490881, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "0EqDUcXu-9N73qqFrRs52" + } + ], + "updated": 1766546131803, + "link": null, + "locked": false + }, + { + "id": "0EqDUcXu-9N73qqFrRs52", + "type": "text", + "x": 640.5905685098246, + "y": 3763.7797380573393, + "width": 37.259979248046875, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1T", + "roundness": null, + "seed": 616159663, + "version": 1511, + "versionNonce": 703097903, + "isDeleted": false, + "boundElements": [], + "updated": 1766546128096, + "link": null, + "locked": false, + "text": "ELK", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "SBmp6XU2_8KPazefCsLpu", + "originalText": "ELK", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "uhMYcKaMG2rZhI00IcBSD", + "type": "rectangle", + "x": 355.7896175628582, + "y": 2294.6225286985473, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1U", + "roundness": null, + "seed": 183438625, + "version": 747, + "versionNonce": 743207841, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "tG5qUF40N98-XcVs10hIV" + } + ], + "updated": 1766545460643, + "link": null, + "locked": false + }, + { + "id": "tG5qUF40N98-XcVs10hIV", + "type": "text", + "x": 399.91299250182306, + "y": 2312.1225286985473, + "width": 68.41993713378906, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1V", + "roundness": null, + "seed": 984793345, + "version": 776, + "versionNonce": 1133276417, + "isDeleted": false, + "boundElements": [], + "updated": 1766545474186, + "link": null, + "locked": false, + "text": "model\nServing", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "uhMYcKaMG2rZhI00IcBSD", + "originalText": "model\nServing", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "WqZBuHMkJ_xXpYPfrQPkl", + "type": "rectangle", + "x": 361.14377704466176, + "y": 2918.757745757631, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1W", + "roundness": null, + "seed": 1897690607, + "version": 814, + "versionNonce": 1206380609, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "zyzk1x5dPQV0NxUlyzpVt" + } + ], + "updated": 1766545485370, + "link": null, + "locked": false + }, + { + "id": "zyzk1x5dPQV0NxUlyzpVt", + "type": "text", + "x": 405.2671519836266, + "y": 2936.257745757631, + "width": 68.41993713378906, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1X", + "roundness": null, + "seed": 152428559, + "version": 842, + "versionNonce": 391770127, + "isDeleted": false, + "boundElements": [], + "updated": 1766545482988, + "link": null, + "locked": false, + "text": "model\nServing", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "WqZBuHMkJ_xXpYPfrQPkl", + "originalText": "model\nServing", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "HLOBaDvlTUpD2yQy4lUZI", + "type": "rectangle", + "x": 358.0842673445005, + "y": 3614.0260906693875, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1Y", + "roundness": null, + "seed": 704275425, + "version": 874, + "versionNonce": 746143073, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "2fK4AUySK3XyYyYntFqtC" + } + ], + "updated": 1766545494104, + "link": null, + "locked": false + }, + { + "id": "2fK4AUySK3XyYyYntFqtC", + "type": "text", + "x": 402.20764228346536, + "y": 3631.5260906693875, + "width": 68.41993713378906, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1Z", + "roundness": null, + "seed": 1940209601, + "version": 902, + "versionNonce": 1141696833, + "isDeleted": false, + "boundElements": [], + "updated": 1766545494104, + "link": null, + "locked": false, + "text": "model\nServing", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "HLOBaDvlTUpD2yQy4lUZI", + "originalText": "model\nServing", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "DHdIrKA2SmPRr2rTtJJ8E", + "type": "rectangle", + "x": 901.0073882308212, + "y": 2951.1443487304227, + "width": 106.83929336612698, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1a", + "roundness": null, + "seed": 1809008399, + "version": 1385, + "versionNonce": 2086522159, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "HbJRSZyHsD6NLPzLVoa9C" + } + ], + "updated": 1766545568758, + "link": null, + "locked": false + }, + { + "id": "HbJRSZyHsD6NLPzLVoa9C", + "type": "text", + "x": 912.3370614641777, + "y": 2968.6443487304227, + "width": 84.17994689941406, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1b", + "roundness": null, + "seed": 1662356783, + "version": 1476, + "versionNonce": 682250063, + "isDeleted": false, + "boundElements": [], + "updated": 1766545568758, + "link": null, + "locked": false, + "text": "exporter", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "DHdIrKA2SmPRr2rTtJJ8E", + "originalText": "exporter", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "SYvgt1uhLv6KU1Snpyha0", + "type": "rectangle", + "x": 902.7282442681425, + "y": 2740.039825032305, + "width": 106.83929336612698, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1c", + "roundness": null, + "seed": 1250827695, + "version": 1399, + "versionNonce": 852631169, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "zbUHQA7llONcizbRp8kkI" + } + ], + "updated": 1766545566574, + "link": null, + "locked": false + }, + { + "id": "zbUHQA7llONcizbRp8kkI", + "type": "text", + "x": 914.057917501499, + "y": 2757.539825032305, + "width": 84.17994689941406, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1d", + "roundness": null, + "seed": 1568444367, + "version": 1490, + "versionNonce": 183281249, + "isDeleted": false, + "boundElements": [], + "updated": 1766545566574, + "link": null, + "locked": false, + "text": "exporter", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "SYvgt1uhLv6KU1Snpyha0", + "originalText": "exporter", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "fPC0GPrONm31BqGfJwBv-", + "type": "rectangle", + "x": 896.1313493540686, + "y": 3649.472220848862, + "width": 106.83929336612698, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1e", + "roundness": null, + "seed": 857988591, + "version": 1451, + "versionNonce": 266393807, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "LS0wSTonqjRNneUbZVukD" + } + ], + "updated": 1766545590131, + "link": null, + "locked": false + }, + { + "id": "LS0wSTonqjRNneUbZVukD", + "type": "text", + "x": 907.4610225874251, + "y": 3666.972220848862, + "width": 84.17994689941406, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1f", + "roundness": null, + "seed": 1710245903, + "version": 1541, + "versionNonce": 477998447, + "isDeleted": false, + "boundElements": [], + "updated": 1766545577140, + "link": null, + "locked": false, + "text": "exporter", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "fPC0GPrONm31BqGfJwBv-", + "originalText": "exporter", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "89v45dCwlOq01K4woKzly", + "type": "rectangle", + "x": 897.85220539139, + "y": 3438.367697150744, + "width": 106.83929336612698, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1g", + "roundness": null, + "seed": 1944743471, + "version": 1465, + "versionNonce": 2110857121, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "H-xVGBDkmPVLm7G5Tmz19" + } + ], + "updated": 1766545590131, + "link": null, + "locked": false + }, + { + "id": "H-xVGBDkmPVLm7G5Tmz19", + "type": "text", + "x": 909.1818786247466, + "y": 3455.867697150744, + "width": 84.17994689941406, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1h", + "roundness": null, + "seed": 670748751, + "version": 1555, + "versionNonce": 1438014895, + "isDeleted": false, + "boundElements": [], + "updated": 1766545577140, + "link": null, + "locked": false, + "text": "exporter", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "89v45dCwlOq01K4woKzly", + "originalText": "exporter", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "ND0kaXREeIHTrNlSqY34p", + "type": "rectangle", + "x": 582.8208303270419, + "y": 3048.283098956208, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1i", + "roundness": null, + "seed": 814939215, + "version": 1330, + "versionNonce": 519559151, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "e8-1MnFz0QWrPJXZ-ZnQ3" + } + ], + "updated": 1766546085637, + "link": null, + "locked": false + }, + { + "id": "e8-1MnFz0QWrPJXZ-ZnQ3", + "type": "text", + "x": 641.5126662039231, + "y": 3065.783098956208, + "width": 37.259979248046875, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1j", + "roundness": null, + "seed": 2024577647, + "version": 1423, + "versionNonce": 135499201, + "isDeleted": false, + "boundElements": [], + "updated": 1766546094558, + "link": null, + "locked": false, + "text": "ELK", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "ND0kaXREeIHTrNlSqY34p", + "originalText": "ELK", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Q-6aV4mSfbyEwllp_M7u2", + "type": "rectangle", + "x": 183.94027304345434, + "y": 3846.0441434972986, + "width": 546.6403289665554, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1k", + "roundness": null, + "seed": 1627548065, + "version": 1641, + "versionNonce": 511334241, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "ZKpraEqfq0gLY7JI2xzC6" + } + ], + "updated": 1766546166116, + "link": null, + "locked": false + }, + { + "id": "ZKpraEqfq0gLY7JI2xzC6", + "type": "text", + "x": 391.4104924583727, + "y": 3863.5441434972986, + "width": 131.69989013671875, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1l", + "roundness": null, + "seed": 522620289, + "version": 1768, + "versionNonce": 1020210383, + "isDeleted": false, + "boundElements": [], + "updated": 1766546159215, + "link": null, + "locked": false, + "text": "weight & bias", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "Q-6aV4mSfbyEwllp_M7u2", + "originalText": "weight & bias", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "UOlgJuhEaQm81KRHgyY-0", + "type": "rectangle", + "x": 157.29031698446732, + "y": 4084.8474727592948, + "width": 647.3203086953981, + "height": 717.4711059065564, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1m", + "roundness": { + "type": 3 + }, + "seed": 790237583, + "version": 1075, + "versionNonce": 1932557135, + "isDeleted": false, + "boundElements": [], + "updated": 1766546448759, + "link": null, + "locked": false + }, + { + "id": "ExBkrVpyvo_OXAog8ivWn", + "type": "rectangle", + "x": 362.9438471154123, + "y": 4265.514129253435, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1n", + "roundness": null, + "seed": 1478428591, + "version": 728, + "versionNonce": 1800969423, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "hqH-l-CJ15NjmjoZtiq-9" + }, + { + "id": "qO3lO1bGwrfyKuWKhDJ1J", + "type": "arrow" + }, + { + "id": "DS3tViVPwVs_FojIMqBSU", + "type": "arrow" + } + ], + "updated": 1766546319431, + "link": null, + "locked": false + }, + { + "id": "hqH-l-CJ15NjmjoZtiq-9", + "type": "text", + "x": 383.88721411980686, + "y": 4283.014129253435, + "width": 114.77995300292969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1o", + "roundness": null, + "seed": 492845519, + "version": 718, + "versionNonce": 2062166767, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319431, + "link": null, + "locked": false, + "text": "ray job tool\n(ray client)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "ExBkrVpyvo_OXAog8ivWn", + "originalText": "ray job tool\n(ray client)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "kurhiArg2sM7XFjEdTyrI", + "type": "rectangle", + "x": 607.9438471154124, + "y": 4265.014129253435, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1p", + "roundness": null, + "seed": 603334639, + "version": 867, + "versionNonce": 501759311, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "7k75o8I7t4NCGdyrtenGs" + }, + { + "id": "qO3lO1bGwrfyKuWKhDJ1J", + "type": "arrow" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "7k75o8I7t4NCGdyrtenGs", + "type": "text", + "x": 618.8272470787913, + "y": 4282.514129253435, + "width": 134.89988708496094, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1q", + "roundness": null, + "seed": 1508463119, + "version": 869, + "versionNonce": 1806809967, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "VerlTaskSpec \nyaml", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "kurhiArg2sM7XFjEdTyrI", + "originalText": "VerlTaskSpec \nyaml", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "qO3lO1bGwrfyKuWKhDJ1J", + "type": "arrow", + "x": 609.2771906212718, + "y": 4303.514129253435, + "width": 90.33331298828125, + "height": 4, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1r", + "roundness": { + "type": 2 + }, + "seed": 1479686191, + "version": 1893, + "versionNonce": 301239841, + "isDeleted": false, + "boundElements": [], + "updated": 1766546320485, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -90.33331298828125, + 4 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "kurhiArg2sM7XFjEdTyrI", + "focus": 0.16118805172017495, + "gap": 1.333343505859375 + }, + "endBinding": { + "elementId": "ExBkrVpyvo_OXAog8ivWn", + "focus": 0.06393742185082298, + "gap": 1 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "oZv8__WhJ3c5fkGqXVl2_", + "type": "text", + "x": 335.61054629649533, + "y": 4051.2482773211123, + "width": 385.8797302246094, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1s", + "roundness": null, + "seed": 79256143, + "version": 886, + "versionNonce": 682329921, + "isDeleted": false, + "boundElements": [], + "updated": 1766546372109, + "link": null, + "locked": false, + "text": "v5.0 operability (statistics, sop, agent)", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "v5.0 operability (statistics, sop, agent)", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "WNodxBjaE-CYp8dK1fMQN", + "type": "rectangle", + "x": 548.7677951885864, + "y": 4107.68072471242, + "width": 210.1763265850289, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1t", + "roundness": null, + "seed": 1951873135, + "version": 1017, + "versionNonce": 1038945263, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "G2DrVh_u1lhQlxAkO611N" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "G2DrVh_u1lhQlxAkO611N", + "type": "text", + "x": 601.0059981539524, + "y": 4122.68072471242, + "width": 105.69992065429688, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1u", + "roundness": null, + "seed": 215241359, + "version": 1058, + "versionNonce": 1533261327, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "API server", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "WNodxBjaE-CYp8dK1fMQN", + "originalText": "API server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "XxNyZL0flCwhAO9zT3UQy", + "type": "rectangle", + "x": 362.7771906212717, + "y": 4178.68072471242, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1v", + "roundness": null, + "seed": 1726556335, + "version": 1247, + "versionNonce": 79698991, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "O2dtUuIqb0fs_uv7D29cW" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "O2dtUuIqb0fs_uv7D29cW", + "type": "text", + "x": 378.97905915196145, + "y": 4183.68072471242, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1w", + "roundness": null, + "seed": 1883126479, + "version": 1308, + "versionNonce": 770358863, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "task\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "XxNyZL0flCwhAO9zT3UQy", + "originalText": "task management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "UK3M2EByn3haJdkH9Z21T", + "type": "rectangle", + "x": 546.8847292069415, + "y": 4179.255033025133, + "width": 207.59447102997498, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1x", + "roundness": null, + "seed": 1298925807, + "version": 1338, + "versionNonce": 968629359, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "_erL3NkeChZxbmMXnWyQ8" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "_erL3NkeChZxbmMXnWyQ8", + "type": "text", + "x": 563.1520346071829, + "y": 4184.255033025133, + "width": 175.0598602294922, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1y", + "roundness": null, + "seed": 2080051983, + "version": 1428, + "versionNonce": 469546639, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "node management\n(ssh, ray cluster) ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "UK3M2EByn3haJdkH9Z21T", + "originalText": "node management\n(ssh, ray cluster) ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "lQT5-sydwGN_vbadu61qE", + "type": "rectangle", + "x": 884.9957366586793, + "y": 4313.4048967959725, + "width": 163.1357446724801, + "height": 106.45708709635272, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1z", + "roundness": null, + "seed": 878958895, + "version": 669, + "versionNonce": 996478127, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "yqwCJHk3GkcnyEzFHSU2z" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "yqwCJHk3GkcnyEzFHSU2z", + "type": "text", + "x": 921.7836483625952, + "y": 4341.633440344149, + "width": 89.55992126464844, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b20", + "roundness": null, + "seed": 202300239, + "version": 732, + "versionNonce": 1344398287, + "isDeleted": false, + "boundElements": [], + "updated": 1766550043686, + "link": null, + "locked": false, + "text": "ssh node\ncontainer", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "lQT5-sydwGN_vbadu61qE", + "originalText": "ssh node container", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "n74P3TAm78jOVPnYqFccD", + "type": "rectangle", + "x": 885.0326450123471, + "y": 4124.1909953806, + "width": 163.1357446724801, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b21", + "roundness": null, + "seed": 1465162095, + "version": 684, + "versionNonce": 389999855, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "BTIKScHoPW_m2eS-Ro8GX" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "BTIKScHoPW_m2eS-Ro8GX", + "type": "text", + "x": 921.8205567162629, + "y": 4141.6909953806, + "width": 89.55992126464844, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b22", + "roundness": null, + "seed": 1266520975, + "version": 749, + "versionNonce": 1943252289, + "isDeleted": false, + "boundElements": [], + "updated": 1766550040560, + "link": null, + "locked": false, + "text": "ssh node\ncontainer", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "n74P3TAm78jOVPnYqFccD", + "originalText": "ssh node container", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "L9owxY-Ly_UhJE3U0jLgC", + "type": "rectangle", + "x": 365.582700087359, + "y": 4105.467832046676, + "width": 147.4799234681481, + "height": 55.000000000000014, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b23", + "roundness": null, + "seed": 1623345583, + "version": 1135, + "versionNonce": 1238220079, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "8S3xYcC5-56RoTln81Vps" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "8S3xYcC5-56RoTln81Vps", + "type": "text", + "x": 408.09268898207756, + "y": 4120.467832046676, + "width": 62.45994567871094, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b24", + "roundness": null, + "seed": 1951087567, + "version": 1187, + "versionNonce": 580665167, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "WebUI", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "L9owxY-Ly_UhJE3U0jLgC", + "originalText": "WebUI", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "r5vmCFPIVwxZGcbV8EtDP", + "type": "rectangle", + "x": 609.2544818483318, + "y": 4380.56322206309, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b25", + "roundness": null, + "seed": 707848687, + "version": 919, + "versionNonce": 2123726191, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "BPGRZQXUil0Bmwl2yz1n9" + }, + { + "id": "DS3tViVPwVs_FojIMqBSU", + "type": "arrow" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "BPGRZQXUil0Bmwl2yz1n9", + "type": "text", + "x": 620.1378818117107, + "y": 4398.06322206309, + "width": 134.89988708496094, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b26", + "roundness": null, + "seed": 259773455, + "version": 932, + "versionNonce": 170600623, + "isDeleted": false, + "boundElements": [], + "updated": 1766548543557, + "link": null, + "locked": false, + "text": "Advanced\nVerlTaskSpec ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "r5vmCFPIVwxZGcbV8EtDP", + "originalText": "Advanced VerlTaskSpec ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "DS3tViVPwVs_FojIMqBSU", + "type": "arrow", + "x": 608.7906750514153, + "y": 4424.9282145772895, + "width": 80.66214281697523, + "height": 84.85848269127973, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b27", + "roundness": { + "type": 2 + }, + "seed": 2082765359, + "version": 740, + "versionNonce": 1441675745, + "isDeleted": false, + "boundElements": [], + "updated": 1766546320485, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -80.66214281697523, + -84.85848269127973 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "r5vmCFPIVwxZGcbV8EtDP", + "focus": -0.6785882314731602, + "gap": 1 + }, + "endBinding": { + "elementId": "ExBkrVpyvo_OXAog8ivWn", + "focus": -0.4748599898404967, + "gap": 8.517998107308927 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "AUK2tr7zEw-7pPSMh0Ric", + "type": "rectangle", + "x": 180.37865154123398, + "y": 4178.5857533486715, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b28", + "roundness": null, + "seed": 890461263, + "version": 1309, + "versionNonce": 132107759, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "B-9nH3-XOZNOEeCLd2Fu-" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "B-9nH3-XOZNOEeCLd2Fu-", + "type": "text", + "x": 196.58052007192373, + "y": 4183.5857533486715, + "width": 122.23991394042969, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b29", + "roundness": null, + "seed": 1310784111, + "version": 1377, + "versionNonce": 497956879, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "user\nmanagement ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "AUK2tr7zEw-7pPSMh0Ric", + "originalText": "user management ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "rfGCTpcFlf1T-8NxoJELc", + "type": "rectangle", + "x": 186.44004796015105, + "y": 4372.170585001423, + "width": 154.6436510018092, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2A", + "roundness": null, + "seed": 1276499087, + "version": 1541, + "versionNonce": 1584029231, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "12ZSYQo1l8nLuktF_M13y" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "12ZSYQo1l8nLuktF_M13y", + "type": "text", + "x": 206.6419164908408, + "y": 4377.170585001423, + "width": 114.23991394042969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2B", + "roundness": null, + "seed": 111831727, + "version": 1623, + "versionNonce": 486326351, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "data\nmanagement\nSFTPGo ", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "rfGCTpcFlf1T-8NxoJELc", + "originalText": "data management\nSFTPGo ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "kvfUPQgQ5eG_Fxn-tGm59", + "type": "rectangle", + "x": 194.36640487806062, + "y": 4516.15452085182, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2C", + "roundness": null, + "seed": 1250376911, + "version": 1378, + "versionNonce": 993910383, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "a5mX2A_-o1LoWTFedzdqg" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "a5mX2A_-o1LoWTFedzdqg", + "type": "text", + "x": 216.71826730523475, + "y": 4533.65452085182, + "width": 109.93992614746094, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2D", + "roundness": null, + "seed": 994364143, + "version": 1457, + "versionNonce": 1274427535, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "prometheus", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "kvfUPQgQ5eG_Fxn-tGm59", + "originalText": "prometheus", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "_M4VtkTCC_G6rAalQU_8m", + "type": "rectangle", + "x": 392.0585140952623, + "y": 4514.289613711505, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2E", + "roundness": null, + "seed": 1969984783, + "version": 1422, + "versionNonce": 1960726191, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "xQD6qQi-05xLjq0nbHiqd" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "xQD6qQi-05xLjq0nbHiqd", + "type": "text", + "x": 432.6003789638427, + "y": 4531.789613711505, + "width": 73.55992126464844, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2F", + "roundness": null, + "seed": 1886657327, + "version": 1511, + "versionNonce": 278831311, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "grafana", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "_M4VtkTCC_G6rAalQU_8m", + "originalText": "grafana", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "aCuSAi4oJ_KJdRKAHJ5y_", + "type": "rectangle", + "x": 594.4133607196168, + "y": 4512.424535823421, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2G", + "roundness": null, + "seed": 549903695, + "version": 1470, + "versionNonce": 282046191, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "25Rm9RG-UnIb_WWemRDJY" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "25Rm9RG-UnIb_WWemRDJY", + "type": "text", + "x": 653.1051965964979, + "y": 4529.924535823421, + "width": 37.259979248046875, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2H", + "roundness": null, + "seed": 1505516399, + "version": 1579, + "versionNonce": 536475919, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "ELK", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "aCuSAi4oJ_KJdRKAHJ5y_", + "originalText": "ELK", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "aVk5d_J2lP8Z8cTxcLino", + "type": "rectangle", + "x": 370.59889543117373, + "y": 4380.170888435469, + "width": 156.66668701171875, + "height": 85, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2I", + "roundness": null, + "seed": 1872565647, + "version": 941, + "versionNonce": 60161839, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "-7mLziiSO10QZS0oA7Zmp" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "-7mLziiSO10QZS0oA7Zmp", + "type": "text", + "x": 414.7222703701386, + "y": 4397.670888435469, + "width": 68.41993713378906, + "height": 50, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2J", + "roundness": null, + "seed": 430017455, + "version": 969, + "versionNonce": 1040990543, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "model\nServing", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "aVk5d_J2lP8Z8cTxcLino", + "originalText": "model\nServing", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Kwettsi3WP-Qkpn71oRV_", + "type": "rectangle", + "x": 908.6459774407417, + "y": 4415.617018614944, + "width": 106.83929336612698, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2K", + "roundness": null, + "seed": 334642639, + "version": 1518, + "versionNonce": 1890926447, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "Ws50jhW1M-jJ3lnoEAvY2" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "Ws50jhW1M-jJ3lnoEAvY2", + "type": "text", + "x": 919.9756506740981, + "y": 4433.117018614944, + "width": 84.17994689941406, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2L", + "roundness": null, + "seed": 27765743, + "version": 1609, + "versionNonce": 2111404431, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "exporter", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "Kwettsi3WP-Qkpn71oRV_", + "originalText": "exporter", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "uYm1lMA4TITqp8EHogQDU", + "type": "rectangle", + "x": 910.3668334780632, + "y": 4204.512494916826, + "width": 106.83929336612698, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2M", + "roundness": null, + "seed": 248141327, + "version": 1532, + "versionNonce": 1790013359, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "tX9OTModeIVpu_FonBF3E" + } + ], + "updated": 1766546319432, + "link": null, + "locked": false + }, + { + "id": "tX9OTModeIVpu_FonBF3E", + "type": "text", + "x": 921.6965067114196, + "y": 4222.012494916826, + "width": 84.17994689941406, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2N", + "roundness": null, + "seed": 1381153839, + "version": 1623, + "versionNonce": 23437775, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "exporter", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "uYm1lMA4TITqp8EHogQDU", + "originalText": "exporter", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "-OJqAXeLe21OC9Q6YQYNB", + "type": "rectangle", + "x": 196.45490113012755, + "y": 4612.18894126338, + "width": 546.6403289665554, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2O", + "roundness": null, + "seed": 1881759311, + "version": 1709, + "versionNonce": 2123334031, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "8eYn92JxE4ky_uFVEGphM" + } + ], + "updated": 1766546376993, + "link": null, + "locked": false + }, + { + "id": "8eYn92JxE4ky_uFVEGphM", + "type": "text", + "x": 403.9251205450459, + "y": 4629.68894126338, + "width": 131.69989013671875, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2P", + "roundness": null, + "seed": 2066136175, + "version": 1835, + "versionNonce": 968145423, + "isDeleted": false, + "boundElements": [], + "updated": 1766546319432, + "link": null, + "locked": false, + "text": "weight & bias", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "-OJqAXeLe21OC9Q6YQYNB", + "originalText": "weight & bias", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "yGh_yLim4aBl8oGqW_oU1", + "type": "rectangle", + "x": 200.4218292527276, + "y": 4713.67831875264, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2Q", + "roundness": null, + "seed": 170223553, + "version": 1420, + "versionNonce": 1579534113, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "lqdb6MLxScVe5ns9aqeeu" + } + ], + "updated": 1766546445481, + "link": null, + "locked": false + }, + { + "id": "lqdb6MLxScVe5ns9aqeeu", + "type": "text", + "x": 229.18370297140564, + "y": 4731.17831875264, + "width": 97.11990356445312, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2R", + "roundness": null, + "seed": 1132775329, + "version": 1508, + "versionNonce": 1918695521, + "isDeleted": false, + "boundElements": [], + "updated": 1766546410776, + "link": null, + "locked": false, + "text": "statistics", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "yGh_yLim4aBl8oGqW_oU1", + "originalText": "statistics", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "TtGKkGSFi4MbYg3ZfyNiG", + "type": "rectangle", + "x": 395.5031174592006, + "y": 4713.67831875264, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2S", + "roundness": null, + "seed": 62346383, + "version": 1479, + "versionNonce": 1431730031, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "G7gy-YlXMFxKiO7gmm6tl" + } + ], + "updated": 1766546445481, + "link": null, + "locked": false + }, + { + "id": "G7gy-YlXMFxKiO7gmm6tl", + "type": "text", + "x": 426.81496371205833, + "y": 4731.17831875264, + "width": 92.01995849609375, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2T", + "roundness": null, + "seed": 1310452399, + "version": 1576, + "versionNonce": 1626997793, + "isDeleted": false, + "boundElements": [], + "updated": 1766546429018, + "link": null, + "locked": false, + "text": "sop tools", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "TtGKkGSFi4MbYg3ZfyNiG", + "originalText": "sop tools", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "JldxRrrtgsQXtVb-OKmEY", + "type": "rectangle", + "x": 597.7764406036847, + "y": 4713.678318752639, + "width": 154.6436510018092, + "height": 60, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2U", + "roundness": null, + "seed": 1283509455, + "version": 1515, + "versionNonce": 721566465, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "YbDIjM6HTsYLldkdyo8ed" + } + ], + "updated": 1766546445481, + "link": null, + "locked": false + }, + { + "id": "YbDIjM6HTsYLldkdyo8ed", + "type": "text", + "x": 647.6282877720698, + "y": 4731.178318752639, + "width": 54.93995666503906, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2V", + "roundness": null, + "seed": 1737251567, + "version": 1618, + "versionNonce": 1250251887, + "isDeleted": false, + "boundElements": [], + "updated": 1766546440005, + "link": null, + "locked": false, + "text": "agent", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "JldxRrrtgsQXtVb-OKmEY", + "originalText": "agent", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "_Zgu4gR2fktoVHKaUQb1c", + "type": "rectangle", + "x": 1060.450408091689, + "y": 1228.3990155355616, + "width": 78.84661364258261, + "height": 188.34936741723558, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#ffc9c9", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2f", + "roundness": null, + "seed": 158833537, + "version": 1080, + "versionNonce": 307738095, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "natjxKxjBD22rIy9kQo5F" + } + ], + "updated": 1766549478990, + "link": null, + "locked": false + }, + { + "id": "natjxKxjBD22rIy9kQo5F", + "type": "text", + "x": 1069.2437481771406, + "y": 1285.0736992441794, + "width": 61.25993347167969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2g", + "roundness": null, + "seed": 1239057249, + "version": 1093, + "versionNonce": 1288478913, + "isDeleted": false, + "boundElements": [], + "updated": 1766549476497, + "link": null, + "locked": false, + "text": "JuiceF\nS\ncache", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "_Zgu4gR2fktoVHKaUQb1c", + "originalText": "JuiceFS\ncache", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "CG6yONl8gUpLktvzyo8Sr", + "type": "rectangle", + "x": 1054.891663837564, + "y": 1645.2816569685795, + "width": 78.84661364258261, + "height": 188.34936741723558, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2h", + "roundness": null, + "seed": 1242056239, + "version": 1124, + "versionNonce": 1742603681, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "Sl08WIR6gCRTqD4BpOt6g" + } + ], + "updated": 1766549488214, + "link": null, + "locked": false + }, + { + "id": "Sl08WIR6gCRTqD4BpOt6g", + "type": "text", + "x": 1063.6850039230155, + "y": 1701.9563406771972, + "width": 61.25993347167969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2i", + "roundness": null, + "seed": 748529743, + "version": 1137, + "versionNonce": 890929327, + "isDeleted": false, + "boundElements": [], + "updated": 1766549485662, + "link": null, + "locked": false, + "text": "JuiceF\nS\ncache", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "CG6yONl8gUpLktvzyo8Sr", + "originalText": "JuiceFS\ncache", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "rCphrx7mF_YEPITUD0218", + "type": "rectangle", + "x": 1049.8385711921608, + "y": 2068.73328183044, + "width": 78.84661364258261, + "height": 188.34936741723558, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2j", + "roundness": null, + "seed": 847237473, + "version": 1171, + "versionNonce": 1034184193, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "3Q0gbzE9c5TcDs5CvDwr4" + } + ], + "updated": 1766549492711, + "link": null, + "locked": false + }, + { + "id": "3Q0gbzE9c5TcDs5CvDwr4", + "type": "text", + "x": 1058.6319112776123, + "y": 2125.407965539058, + "width": 61.25993347167969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2k", + "roundness": null, + "seed": 1948319041, + "version": 1185, + "versionNonce": 587857377, + "isDeleted": false, + "boundElements": [], + "updated": 1766549492711, + "link": null, + "locked": false, + "text": "JuiceF\nS\ncache", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "rCphrx7mF_YEPITUD0218", + "originalText": "JuiceFS\ncache", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Z88ttfOpQUtGXPUZOTNLh", + "type": "rectangle", + "x": 1046.301230542016, + "y": 2690.267563284097, + "width": 78.84661364258261, + "height": 239.8912269868912, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2l", + "roundness": null, + "seed": 995417473, + "version": 1195, + "versionNonce": 1412336609, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "JUS2JvDrkx5GXQjxkI78l" + } + ], + "updated": 1766549504559, + "link": null, + "locked": false + }, + { + "id": "JUS2JvDrkx5GXQjxkI78l", + "type": "text", + "x": 1055.0945706274674, + "y": 2772.7131767775427, + "width": 61.25993347167969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2m", + "roundness": null, + "seed": 314541409, + "version": 1209, + "versionNonce": 353658817, + "isDeleted": false, + "boundElements": [], + "updated": 1766549504559, + "link": null, + "locked": false, + "text": "JuiceF\nS\ncache", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "Z88ttfOpQUtGXPUZOTNLh", + "originalText": "JuiceFS\ncache", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "YMHES-uetzrMEDwFkCHdH", + "type": "rectangle", + "x": 1045.7959490351118, + "y": 3391.1356675943966, + "width": 78.84661364258261, + "height": 239.8912269868912, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2n", + "roundness": null, + "seed": 1580012385, + "version": 1257, + "versionNonce": 206700609, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "OlaiVvlhdGvnYHx9Km9Qv" + } + ], + "updated": 1766549511124, + "link": null, + "locked": false + }, + { + "id": "OlaiVvlhdGvnYHx9Km9Qv", + "type": "text", + "x": 1054.5892891205633, + "y": 3473.5812810878424, + "width": 61.25993347167969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2o", + "roundness": null, + "seed": 2094399297, + "version": 1272, + "versionNonce": 1971998753, + "isDeleted": false, + "boundElements": [], + "updated": 1766549511124, + "link": null, + "locked": false, + "text": "JuiceF\nS\ncache", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "YMHES-uetzrMEDwFkCHdH", + "originalText": "JuiceFS\ncache", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "py2gWjP2fsxBZN-9ttfBh", + "type": "rectangle", + "x": 1058.9340084182502, + "y": 4150.114846216833, + "width": 78.84661364258261, + "height": 239.8912269868912, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2p", + "roundness": null, + "seed": 105076673, + "version": 1253, + "versionNonce": 1238206881, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "5tfhe4hwG92sJ3lHY77pG" + } + ], + "updated": 1766549517790, + "link": null, + "locked": false + }, + { + "id": "5tfhe4hwG92sJ3lHY77pG", + "type": "text", + "x": 1067.7273485037017, + "y": 4232.560459710278, + "width": 61.25993347167969, + "height": 75, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2q", + "roundness": null, + "seed": 1717876641, + "version": 1268, + "versionNonce": 26062209, + "isDeleted": false, + "boundElements": [], + "updated": 1766549517790, + "link": null, + "locked": false, + "text": "JuiceF\nS\ncache", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "py2gWjP2fsxBZN-9ttfBh", + "originalText": "JuiceFS\ncache", + "autoResize": true, + "lineHeight": 1.25 + } + ], + "appState": { + "gridSize": 20, + "gridStep": 5, + "gridModeEnabled": false, + "viewBackgroundColor": "#ffffff" + }, + "files": {} +} \ No newline at end of file