Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add enterprise 24.11 release #1327

Merged
merged 6 commits into from
Nov 26, 2024
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
3 changes: 3 additions & 0 deletions docs/enterprise/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ This section provides an overview of the advanced features available in Greptime
- [Audit Logging](./deployments/audit-logging.md): Track and monitor user activity with detailed audit logs.
- More feature documentation coming soon!

## Release Notes

- [24.11](./release-notes/release-24_11.md)
55 changes: 55 additions & 0 deletions docs/enterprise/release-notes/release-24_11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Release 24.11

We are pleased to introduce the 24.11 release of GreptimeDB Enterprise.

## Feature Highlights

### Region Rebalance

To enhance the overall resilience of GreptimeDB, region rebalancing enables
flexible relocation of regions among data nodes, whether initiated manually or
dynamically.

This proactive approach facilitates several key benefits, including
redistributing workload across nodes and efficiently migrating regions to ensure
uninterrupted operation during planned maintenance activities.

### GreptimeDB Enterprise Management Console

Introducing the Console UI for Managing GreptimeDB Enterprise

This initial release provides a comprehensive set of features, including:

* In-depth slow query analysis and troubleshooting
* Detailed cluster topology information
* Real-time cluster metrics and log viewer

### LDAP User Provider

Bridging your own LDAP user database and authentication to GreptimeDB
Enterprise. We implemented flexible configuration options for LDAP connections,
supporting both simple and complex authentication mechanisms.

### Audit Logs

We provided logs to track queries in the database, with information of:

- Query type: read, write, DDL or others
- Command: select, insert, etc.
- Object type: target of the operation, for example, table, database, etc.

## Features From GreptimeDB OSS

This release is based on GreptimeDB OSS v0.10. The OSS base introduces a few
new features includes

- Vector data type support for similarity search.
- Secondary index update: user can now create secondary index on any columns.
- Alter table options are added for updating table TTL, compaction parameters
and full-text index settings.
- JSON data type and functions support.
- More geospatial UDF: spatial relation and measurement, S2 index and etc.
- Initial release of Loki remote write support.

See [this](https://docs.greptime.com/release-notes/release-0-10-0) for a
complete changelog of 0.10
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ Enterprise 版还提供更多增强功能,帮助企业优化数据效率并显
- [审计日志](./deployments/audit-logging.md): 用详细的审计日志追踪并记录用户的行为。
- 更多功能文档即将推出!

## 发布说明

- [24.11](./release-notes/release-24_11.md)
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Release 24.11

我们很高兴向大家介绍 GreptimeDB 企业版的 24.11 版本。

## 特性亮点

### Region Rebalance

为了增强 GreptimeDB 的弹性,Region Rebalance 功能允许在数据节点之间灵活地重新分配
Region,无论是否由手动或动态触发。

这一前瞻性的措施带来了多个关键优势,包括均衡工作负载、优化资源利用,并确保在计划
维护期间无缝运行。

### GreptimeDB 企业版管理控制台

我们带来了首个版本的 GreptimeDB 企业版管理控制台的用户界面。

此版本提供了一系列功能,包括:

- 慢查询分析与调试
- 详细的集群拓扑信息
- 实时查看集群指标和日志

### LDAP User Provider

将您自己的 LDAP 用户数据库与 GreptimeDB 企业版进行连接。我们实现了灵活的配置选项
支持,无论是简单的还是复杂的认证机制。

### 审计日志

提供日志以跟踪数据库中的查询操作,并记录以下信息:

- 查询类型:读取、写入、DDL 或其他
- 命令:SELECT、INSERT 等
- 对象类型:操作的目标对象,例如表、数据库等

### GreptimeDB 开源版特性

本版本基于 GreptimeDB 开源版 v0.10。开源基础引入了一些新功能:

- 向量数据类型支持用于相似性搜索
- 二级索引更新:用户现在可以在任何列上创建二级索引
- 添加了表选项以更新 TTL、压缩参数和全文索引设置
- JSON 数据类型和函数的支持
- Loki Remote Write 的早期支持
- 更多地理空间的通用函数(UDF)包括空间关系与测量、S2索引等。

请参阅[这里](https://docs.greptime.com/release-notes/release-0-10-0)以获取完整的
变更日志。
9 changes: 8 additions & 1 deletion sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,13 @@ const sidebars: SidebarsConfig = {
}
],
},
{
type: 'category',
label: 'Releases',
items: [
'enterprise/release-notes/release-24_11',
]
},
],
},
{
Expand Down Expand Up @@ -391,7 +398,7 @@ const sidebars: SidebarsConfig = {
'reference/sql/with',
'reference/sql/alter',
'reference/sql/explain',
{
{
type: 'category',
label: 'Functions',
items: [
Expand Down
Loading