Skip to content

Commit

Permalink
[typo] (docs)Row storage mode can only be turned on when creating a t…
Browse files Browse the repository at this point in the history
…able (apache#24257)
  • Loading branch information
DongLiang-0 authored Sep 15, 2023
1 parent 6990230 commit c270a2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ Doris is built on a columnar storage format engine. In high-concurrency service

We support a row format for olap table to reduce point lookup io cost,
but to enable this format, you need to spend more disk space for row format store.
Currently, we store row in an extra column called `row column` for simplicity.Row store is disabled by default,
users can enable it by adding the following property when create table
Currently, we store row in an extra column called `row column` for simplicity.
The Row Storage mode can only be turned on when creating a table. You need to specify the following properties in the property of the table creation statement:

```
"store_row_column" = "true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Doris 基于列存格式引擎构建,在高并发服务场景中,用户总

## 行存

用户可以在 Olap 表中开启行存模式,但是需要额外的空间来存储行存。目前的行存实现是将行存编码后存在单独的一列中,这样做是用于简化行存的实现。行存模式默认是关闭的,如果您想开启则可以在建表语句的 property 中指定如下属性
用户可以在 Olap 表中开启行存模式,但是需要额外的空间来存储行存。目前的行存实现是将行存编码后存在单独的一列中,这样做是用于简化行存的实现。行存模式仅支持在建表的时候开启,需要在建表语句的 property 中指定如下属性

```
"store_row_column" = "true"
Expand Down

0 comments on commit c270a2d

Please sign in to comment.