diff --git a/docs/en/docs/query-acceleration/hight-concurrent-point-query.md b/docs/en/docs/query-acceleration/hight-concurrent-point-query.md index 39e8e0b41c5a15..8a635c2586aa26 100644 --- a/docs/en/docs/query-acceleration/hight-concurrent-point-query.md +++ b/docs/en/docs/query-acceleration/hight-concurrent-point-query.md @@ -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" diff --git a/docs/zh-CN/docs/query-acceleration/hight-concurrent-point-query.md b/docs/zh-CN/docs/query-acceleration/hight-concurrent-point-query.md index 077cd9d6e38ccc..1a9f04dce0cc20 100644 --- a/docs/zh-CN/docs/query-acceleration/hight-concurrent-point-query.md +++ b/docs/zh-CN/docs/query-acceleration/hight-concurrent-point-query.md @@ -34,7 +34,7 @@ Doris 基于列存格式引擎构建,在高并发服务场景中,用户总 ## 行存 -用户可以在 Olap 表中开启行存模式,但是需要额外的空间来存储行存。目前的行存实现是将行存编码后存在单独的一列中,这样做是用于简化行存的实现。行存模式默认是关闭的,如果您想开启则可以在建表语句的 property 中指定如下属性 +用户可以在 Olap 表中开启行存模式,但是需要额外的空间来存储行存。目前的行存实现是将行存编码后存在单独的一列中,这样做是用于简化行存的实现。行存模式仅支持在建表的时候开启,需要在建表语句的 property 中指定如下属性: ``` "store_row_column" = "true"