This is an automated email from the ASF dual-hosted git repository.

zhaoc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d2cc71  Format markdown of docker section (#2098)
8d2cc71 is described below

commit 8d2cc71934e2c2a902b0dbe25873d0d3e4a827c3
Author: zhouhaibing089 <[email protected]>
AuthorDate: Wed Oct 30 01:52:45 2019 -0700

    Format markdown of docker section (#2098)
    
    [DOC]
    This change makes the format correct so that's easier to view.
---
 docker/Dockerfile                                  |  2 +-
 docker/README.md                                   | 44 ++++++++++++----------
 .../cn/administrator-guide/config/fe_config.md     |  6 +--
 3 files changed, 29 insertions(+), 23 deletions(-)

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 773b09f..e37fb18 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -17,7 +17,7 @@
 
 FROM centos:centos7.5.1804
 
-MAINTAINER tangxiaoqing214445
+LABEL maintainer=tangxiaoqing214445
 
 ENV DEFAULT_DIR /var/local
 
diff --git a/docker/README.md b/docker/README.md
index 288ef20..0c1d492 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -4,21 +4,22 @@
 
 1. Download the Doris code repo
 
+    ```console
+    $ cd /to/your/workspace/
+    $ git clone https://github.com/apache/incubator-doris.git
     ```
-    cd /to/your/workspace/
-        git clone https://github.com/apache/incubator-doris.git
-```
 
-2. Copy Dockerfile
+1. Copy Dockerfile
 
-    ```
-    cd /to/your/workspace/
-    cp incubator-doris/docker/Dockerfile ./
+    ```console
+    $ cd /to/your/workspace/
+    $ cp incubator-doris/docker/Dockerfile ./
     ```
 
-3. Download Oracle JDK(1.8+) RPM
+1. Download Oracle JDK(1.8+) RPM
 
-    You need to download the Oracle JDK RPM, which can be found 
[here](https://www.oracle.com/technetwork/java/javase/downloads/index.html). 
And rename it to `jdk.rpm`.
+    You need to download the Oracle JDK RPM, which can be found [here][1]. And
+    rename it to `jdk.rpm`.
 
 After preparation, your workspace should like this:
 
@@ -41,24 +42,29 @@ After preparation, your workspace should like this:
 
 ### Build docker image
 
-```
-cd /to/your/workspace/
-docker build -t doris:v1.0  .
+```console
+$ cd /to/your/workspace/
+$ docker build -t doris:v1.0  .
 ```
 
-> `doris` is docker image repository name and `v1.0` is tag name, you can 
change them to whatever you like.
+> `doris` is docker image repository name and `v1.0` is tag name, you can 
change
+> them to whatever you like.
 
 ### Use docker image
 
-This docker image you just built does not contain Doris source code repo. You 
need to download it first and map it to the container. (You can just use the 
one you used to build this image before)
+This docker image you just built does not contain Doris source code repo. You 
need
+to download it first and map it to the container. (You can just use the one you
+used to build this image before)
 
-```
-docker run -it -v /your/local/path/incubator-doris/:/root/incubator-doris/ 
doris:v1.0
+```console
+$ docker run -it -v /your/local/path/incubator-doris/:/root/incubator-doris/ 
doris:v1.0
 ```
 
 Then you can build source code inside the container.
 
+```console
+$ cd /root/incubator-doris/
+$ sh build.sh
 ```
-cd /root/incubator-doris/
-sh build.sh
-```
+
+[1]: https://www.oracle.com/technetwork/java/javase/downloads/index.html
diff --git a/docs/documentation/cn/administrator-guide/config/fe_config.md 
b/docs/documentation/cn/administrator-guide/config/fe_config.md
index 642b7f4..c534c04 100644
--- a/docs/documentation/cn/administrator-guide/config/fe_config.md
+++ b/docs/documentation/cn/administrator-guide/config/fe_config.md
@@ -1,7 +1,7 @@
-# ��������
+# 基本配置
 
 ## brpc_max_body_size
 
-  ���������Ҫ�����޸� brpc �IJ��� max_body_size ��Ĭ�������� 64M��һ�㷢���� multi 
distinct + �� group by + ����1T ������������¡�����������ֲ�ѯ�������� BE �������� 
body_size is too large ��������
+  这个配置主要用来修改 brpc 的参数 max_body_size ,默认配置是 64M。一般发生在 multi distinct + 无 group 
by + 超过1T 数据量的情况下。尤其如果发现查询卡死,且 BE 出现类似 body_size is too large 的字样。
 
-  ��������һ�� brpc �����ã��û�Ҳ������������ֱ���޸ĸò�����ͨ������ 
http://host:brpc_port/flags �޸ġ�
+  由于这是一个 brpc 的配置,用户也可以在运行中直接修改该参数。通过访问 http://host:brpc_port/flags 修改。


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to