Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions zh_CN/admin/configuration-fields/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,18 @@ jwt_secret = "87212c3d906df71e9c6289fbd456d917"
# 建议配置项: "run/datalayers.sock"
# path = "run/datalayers.sock"

# The configurations of the Prometheus server.
[server.prometheus]
# The Prometheus endpoint.
# Default: "0.0.0.0:9090"
# addr = "0.0.0.0:9090"

# The default memtable size for auto-created metric tables.
# memtable_size = "5MB"

# The default TTL for auto-created metric tables.
# ttl = "356d"

# The configurations of the Redis service.
[server.redis]
# 配置 Key-Value 服务的监听地址.
Expand Down
2 changes: 1 addition & 1 deletion zh_CN/getting-started/command-line-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 工具简介

dlsql 是 Datalayers 内置的一个 通过 SQL 交互的命令行管理工具,为用户提供高效、便捷的数据库操作与管理。
`dlsql` 是 Datalayers 内置的一个 通过 SQL 交互的命令行管理工具,为用户提供高效、便捷的数据库操作与管理。

详细用法参考 [命令行工具](../admin/datalayers-cli.md)。

Expand Down
4 changes: 2 additions & 2 deletions zh_CN/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Datalayers 是一款面向工业物联网、车联网、具身智能、AI、能

### 时序数据存储

- 专为时序数据优化的存储引擎,支持高吞吐写入与海量时间线管理
- 为时序数据优化的存储引擎,支持高吞吐写入与海量时间线管理
- 提供行业领先的数据压缩比,大幅降低存储成本
- 内置丰富的时序处理函数,满足复杂分析需求

Expand Down Expand Up @@ -52,4 +52,4 @@ Datalayers 是一款面向工业物联网、车联网、具身智能、AI、能
- 支持 JDBC 驱动接入
- 支持 HTTP 协议
- 支持 InfluxDB 行协议接入
- 兼容 Prometheus 查询协议与 Remote Write 协议
- 支持 Prometheus 查询协议与 Remote Write 协议,兼容现有 Prometheus 生态工具,可做为 Prometheus 的长期存储或者作为 Prometheus 的替换
2 changes: 1 addition & 1 deletion zh_CN/prometheus/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Datalayers 兼容 Prometheus 的远程写入协议(Remote Write Protocol)
## 主要优势

- **无缝集成**
支持 Prometheus 原生 Remote Write 协议,可接收 Prometheus 的实时数据推送。
支持 Prometheus Remote Write 协议,可接收 Prometheus 的实时数据推送。
- **生态兼容**
兼容标准的 PromQL(Prometheus Query Language) 与 HTTP API,可直接对接 Grafana 等生态组件对接。
- **集群支持**
Expand Down
19 changes: 19 additions & 0 deletions zh_CN/releases/changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# CHANGELOG

## 2.3.14

发布日期: 2025-11-25

本版本重点增强了系统的 安全性、可观测性、查询性能与向量检索能力,并进一步完善了对 Prometheus 生态的兼容性,为用户提供更灵活、更安全、更高性能的数据管理体验。

### 新功能

- **RBAC 访问控制**:新增 [基于角色的访问控制](../user-security/rbac/overview.md) 功能,实现细粒度的权限控制。
- **Prometheus 增强**:支持 Prometheus Remote Write 协议,可通过该协议直接写入数据。现 Datalayers 已经完全兼容 Prometheus 写入与查询协议,可做为 Prometheus 的长期存储或者替换 Prometheus。
- **向量索引**:新增多种 [向量索引](../vector-search/vector-index.md) 类型的支持,提升检索效率与灵活性。
- **用户认证**:新增 peer认证 机制,详见 [peer认证](../admin/datalayers-cli.md)。
- **审计日志**:新增审计日志功能,增强操作可追溯性与安全性。

### ️优化

- **查询性能**:
- 优化 count(*) 查询逻辑,显著提升包含时间范围过滤条件(如 WHERE ts > now() - INTERVAL 10 day)的查询效率。

## 2.3.13

发布日期: 2025-10-20
Expand Down