跳转至

语义层配置(Semantic Layer)

语义适配器统一配置在 agent.services.semantic_layer 下。如果不配置或配置为空,Datus 使用内置默认语义适配器。当前默认是 metricflow;未来可以切到 osi,不需要为每个 node 单独改配置。

语义层选择是项目级全局设置。旧配置里 node 级的语义格式字段会被忽略;需要显式 pin 时,只改这里。

配置结构

agent:
  services:
    semantic_layer:
      metricflow:
        timeout: 300
        config_path: ./conf/agent.yml   # 可选的高级覆盖项
        default: true                   # 全局默认:无 project pin 时被选用

      osi:
        # execution_backend 默认是 metricflow,通常不需要配置。

选择规则

AgentConfig.resolve_semantic_adapter 解析活动语义适配器的顺序与 BI Dashboard / Scheduler 完全一致:

  1. 服务管理类调用处显式传入的 adapter_type
  2. ./.datus/config.yml 中的项目级 pin —— semantic: 字段。
  3. YAML 全局 default: true 标志:services.semantic_layer 中至多一条可标 default,多于一条会在加载阶段直接报错。
  4. 单条快捷:仅有一条 semantic adapter 时,自动使用它。
  5. section 为空时使用内置默认。

如果配置了多条 semantic adapter 但没有 default: true,Datus 会认为配置有歧义并报错。

services.semantic_layer 下的 key 必须等于 adapter type(例如 metricflow)。如果同时写了 type: 字段,其值必须与 key 一致,否则 Datus 会在启动时抛出配置错误。比较时会先 lowercase + trim,因此 MetricFlowmetricflow 都会被视为与 metricflow 匹配。

MetricFlow 说明

  • config_path 是可选项。
  • Datus 默认会基于当前 services.datasources 中选中的数据源和项目语义模型目录自动构建运行时配置。
  • MetricFlow 验证会直接读取配置中的项目语义模型目录,包括位于 gitignore 项目路径下的生成 YAML。
  • 仅当你需要 MetricFlow 直接读取某个指定的 agent.yml 时才需要设置 config_path

OSI 说明

  • OSI 是和 MetricFlow 并列的 semantic adapter。
  • OSI 模式编写 strict OSI core YAML,并把 Datus 执行提示放在 custom_extensions 中。
  • 当前 OSI 执行后端默认是 MetricFlow,通常不需要设置 execution_backend
  • 配置 services.semantic_layer.osi 并标记 default: true,可在同时配置其他 adapter 时全局选择 OSI。空的 osi: {} 只有在它是唯一 semantic adapter,或当前项目 pin 到 semantic: osi 时才会被选中。

通过 CLI 配置(/services

在 Datus REPL 中运行 /services semantic(或者从其他 tab 按 Tab 切过来)会进入配置 TUI 的 Semantic tab。该 tab 支持:

  • 在尾部的 + Add new semantic 行按 Enter 新增一个语义层。选择 adapter type,例如 metricflowosi。如果适配器包尚未安装,请先安装对应包,例如 datus-semantic-metricflowdatus-semantic-osi
  • x 删除条目;用 t 触发一次注册探测。
  • d 切换全局 default: true:按 d 把光标项设为默认,并自动清掉其他条目的 default。
  • p 设置项目级 default:值写入 ./.datus/config.ymlsemantic: <name>,只对当前项目生效,优先级高于全局标记。在已 pin 的行上再按一次 p 清除。
  • 对没有可编辑字段的 adapter,此 tab 不显示 e edit

新建条目会写入 ~/.datus/conf/agent.yml,形态为 services.semantic_layer.<type>: {type: <type>}

首次进入交互式 REPL 时,Datus 会跑一遍 bootstrap:若尚无项目级 pin,而 YAML 中能解析出明确的默认值(单条快捷或唯一标 default: true),Datus 会自动写入项目级 pin。若多条都未标 default,启动时会弹出一个轻量选择器。CI / Docker 等无人值守环境可设置 DATUS_DISABLE_SERVICE_BOOTSTRAP=1 关闭。