[GitHub] [incubator-doris] github-actions[bot] commented on pull request #8136: [community](doc) Refactor the release and verify doc

2022-02-19 Thread GitBox


github-actions[bot] commented on pull request #8136:
URL: https://github.com/apache/incubator-doris/pull/8136#issuecomment-1045970408






-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] yiguolei commented on issue #8141: doris跑tpch并发设置8、16、32、64、96,结果都是10分钟左右

2022-02-19 Thread GitBox


yiguolei commented on issue #8141:
URL: 
https://github.com/apache/incubator-doris/issues/8141#issuecomment-1045984196


   你建表的时候的tablet 数目是多少呢?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] dataroaring opened a new pull request #8148: make asan work as much as possible

2022-02-19 Thread GitBox


dataroaring opened a new pull request #8148:
URL: https://github.com/apache/incubator-doris/pull/8148


   # Proposed changes
   make asan work as much as possible
   
   Issue Number: close #xxx
   
   ## Problem Summary:
   Manually ASAN poisoning is complicated and it is hard to make it work right. 
There are illustrated examples in 
http://blog.hostilefork.com/poison-memory-without-asan/.
   
   Stacks of use after poison do not provide enough information to resolve bug, 
while stacks of use afer free provide. 
https://github.com/google/sanitizers/issues/191
   
   We'd better implement a mempool using malloc/free directly, thus asan works 
natively. However we cannot do it in a short time, so we make manual poisoning 
work as much as possible.
   
   I refers to https://github.com/mcgov/asan_alignment_example.
   
   ## Checklist(Required)
   
   1. Does it affect the original behavior: (No)
   2. Has unit tests been added: (No)
   3. Has document been added or modified: (No)
   4. Does it need to update dependencies: (No)
   5. Are there any changes that cannot be rolled back: (No)
   
   ## Further comments
   
   We need much more work to make asan work, for example we need fix manual 
poison in ./be/src/olap/rowset/segment_v2/bitshuffle_page.h and I am not sure 
if there are any places.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] westgatepark opened a new issue #8149: [Bug] 当开启向量化时函数或语法报错

2022-02-19 Thread GitBox


westgatepark opened a new issue #8149:
URL: https://github.com/apache/incubator-doris/issues/8149


   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and 
found no similar issues.
   
   
   ### Version
   
   0.15.1-rc09
   
   ### What's Wrong?
   
   当开启向量化时: SET enable_vectorized_engine=true,使用某些函数会提示参数类型错误或者函数不存在,丽日case 
when.. 。 show version() select current_timestamp等
   
   ### What You Expected?
   
   兼容没开启向量化时能正常执行的sql
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] dataalive opened a new pull request #8150: [doc]fix start/stop command

2022-02-19 Thread GitBox


dataalive opened a new pull request #8150:
URL: https://github.com/apache/incubator-doris/pull/8150


   fix start fe/be/broker command, for `sh start_xx.sh` under vendors like 
ubuntu doesn't work
   
   # Proposed changes
   
   Issue Number: close #xxx
   
   ## Problem Summary:
   
   Describe the overview of changes.
   
   ## Checklist(Required)
   
   1. Does it affect the original behavior: (No)
   2. Has unit tests been added: (No)
   3. Has document been added or modified: (Yes)
   4. Does it need to update dependencies: (No)
   5. Are there any changes that cannot be rolled back: (No)
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] github-actions[bot] commented on pull request #8150: [doc]fix start/stop command

2022-02-19 Thread GitBox


github-actions[bot] commented on pull request #8150:
URL: https://github.com/apache/incubator-doris/pull/8150#issuecomment-1045998907


   PR approved by anyone and no changes requested.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] github-actions[bot] commented on pull request #8150: [doc]fix start/stop command

2022-02-19 Thread GitBox


github-actions[bot] commented on pull request #8150:
URL: https://github.com/apache/incubator-doris/pull/8150#issuecomment-1045999362


   PR approved by at least one committer and no changes requested.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] yiguolei commented on issue #8149: [Bug] 当开启向量化时函数或语法报错

2022-02-19 Thread GitBox


yiguolei commented on issue #8149:
URL: 
https://github.com/apache/incubator-doris/issues/8149#issuecomment-1046003907


   最新的master 已经支持了,你可以更新一下试试


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7984: [Docs] add rpc function document

2022-02-19 Thread GitBox


github-actions[bot] commented on pull request #7984:
URL: https://github.com/apache/incubator-doris/pull/7984#issuecomment-1046005640


   PR approved by at least one committer and no changes requested.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] github-actions[bot] commented on pull request #8110: (refactor) (runtime) tidy up the plan_fragment_executor codes

2022-02-19 Thread GitBox


github-actions[bot] commented on pull request #8110:
URL: https://github.com/apache/incubator-doris/pull/8110#issuecomment-1046016876


   PR approved by anyone and no changes requested.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] hf200012 closed issue #8135: [Bug] ES on Doris uses the inconsistency of the Decimal type precision

2022-02-19 Thread GitBox


hf200012 closed issue #8135:
URL: https://github.com/apache/incubator-doris/issues/8135


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] morningman opened a new issue #8151: [Bug] explode_json_array_string return unexpected return

2022-02-19 Thread GitBox


morningman opened a new issue #8151:
URL: https://github.com/apache/incubator-doris/issues/8151


   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and 
found no similar issues.
   
   
   ### Version
   
   trunk
   
   ### What's Wrong?
   
   ```
   create table t1 (k1 int,k2 varchar(50)) distributed by hash(k1);
   
   insert into t1 values (1,'["a","b","cd"]'),(2,'["e","f"]');
   
   select k1,e1 from t1 lateral view explode_json_array_string(k2) tmp as e1;
   ```
   
   The result is wrong and unstable.
   
   ### What You Expected?
   
   ```
   +--+--+
   | k1   | e1   |
   +--+--+
   |1 | cd   |
   |1 | b|
   |1 | a|
   |2 | f|
   |2 | e|
   +--+--+
   ```
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] morningman opened a new pull request #8152: [fix](lateral-view) Fix bug that explode_json_array_string return unstable result

2022-02-19 Thread GitBox


morningman opened a new pull request #8152:
URL: https://github.com/apache/incubator-doris/pull/8152


   # Proposed changes
   
   Issue Number: close #8151
   
   ## Problem Summary:
   
   Also fix a bug of download-thirdparty.sh
   
   ## Checklist(Required)
   
   1. Does it affect the original behavior: (Yes/No/I Don't know)
   2. Has unit tests been added: (Yes/No/No Need)
   3. Has document been added or modified: (Yes/No/No Need)
   4. Does it need to update dependencies: (Yes/No)
   5. Are there any changes that cannot be rolled back: (Yes/No)
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] github-actions[bot] commented on pull request #8152: [fix](lateral-view) Fix bug that explode_json_array_string return unstable result

2022-02-19 Thread GitBox


github-actions[bot] commented on pull request #8152:
URL: https://github.com/apache/incubator-doris/pull/8152#issuecomment-1046043566






-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] dingjing0604 commented on issue #8141: doris跑tpch并发设置8、16、32、64、96,结果都是10分钟左右

2022-02-19 Thread GitBox


dingjing0604 commented on issue #8141:
URL: 
https://github.com/apache/incubator-doris/issues/8141#issuecomment-1046056914


   > 你建表的时候的tablet 数目是多少呢?
   
   1. 8个表。load之前的数据大小:
   -rw-r--r-- 1 root root 2.3G Jan 27 20:16 customer.csv
   -rw-r--r-- 1 root root  74G Jan 27 20:30 lineitem.csv
   -rw-r--r-- 1 root root 2.2K Jan 27 20:30 nation.csv
   -rw-r--r-- 1 root root  17G Jan 27 20:33 orders.csv
   -rw-r--r-- 1 root root 2.3G Jan 27 20:35 part.csv
   -rw-r--r-- 1 root root  12G Jan 27 20:34 partsupp.csv
   -rw-r--r-- 1 root root  384 Jan 27 20:35 region.csv
   -rw-r--r-- 1 root root 136M Jan 27 20:35 supplier.csv
   2. 建表语句
   CREATE TABLE `customer` (
  `C_CUSTKEY` int(11) NOT NULL,
  `C_NAME` varchar(25) NOT NULL,
  `C_ADDRESS` varchar(40) NOT NULL,
  `C_NATIONKEY` int(11) NOT NULL,
  `C_PHONE` varchar(15) NOT NULL,
  `C_ACCTBAL` decimal(12,2) NOT NULL,
  `C_MKTSEGMENT` varchar(10) NOT NULL,
  `C_COMMENT` varchar(117) NOT NULL
  )
DISTRIBUTED BY HASH(C_CUSTKEY) BUCKETS 10
PROPERTIES("replication_num" = "1");
   
CREATE TABLE `lineitem` (
  `L_ORDERKEY` bigint(20) NOT NULL,
  `L_PARTKEY` int(11) NOT NULL,
  `L_SUPPKEY` int(11) NOT NULL,
  `L_LINENUMBER` bigint(20) NOT NULL,
  `L_QUANTITY` decimal(12,2) NOT NULL,
  `L_EXTENDEDPRICE` decimal(12,2) NOT NULL,
  `L_DISCOUNT` decimal(12,2) NOT NULL,
  `L_TAX` decimal(12,2) NOT NULL,
  `L_RETURNFLAG` varchar(1) NOT NULL,
  `L_LINESTATUS` varchar(1) NOT NULL,
  `L_SHIPDATE` date NOT NULL,
  `L_COMMITDATE` date NOT NULL,
  `L_RECEIPTDATE` date NOT NULL,
  `L_SHIPINSTRUCT` varchar(25) NOT NULL,
  `L_SHIPMODE` varchar(10) NOT NULL,
  `L_COMMENT` varchar(44) NOT NULL
  )
DISTRIBUTED BY HASH(L_ORDERKEY) BUCKETS 10
PROPERTIES("replication_num" = "1");
CREATE TABLE `nation` (
  `N_NATIONKEY` int(11) NOT NULL,
  `N_NAME` varchar(25) NOT NULL,
  `N_REGIONKEY` int(11) NOT NULL,
  `N_COMMENT` varchar(152) DEFAULT NULL
  )
DISTRIBUTED BY HASH(N_NATIONKEY) BUCKETS 10
PROPERTIES("replication_num" = "1");
CREATE TABLE `orders` (
  `O_ORDERKEY` bigint(20) NOT NULL,
  `O_CUSTKEY` int(11) NOT NULL,
  `O_ORDERSTATUS` varchar(1) NOT NULL,
  `O_TOTALPRICE` decimal(12,2) NOT NULL,
  `O_ORDERDATE` date NOT NULL,
  `O_ORDERPRIORITY` varchar(15) NOT NULL,
  `O_CLERK` varchar(15) NOT NULL,
  `O_SHIPPRIORITY` int(11) NOT NULL,
  `O_COMMENT` varchar(79) NOT NULL
  )
   DISTRIBUTED BY HASH(O_ORDERKEY) BUCKETS 10
PROPERTIES("replication_num" = "1");
CREATE TABLE `part` (
  `P_PARTKEY` int(11) NOT NULL,
  `P_NAME` varchar(55) NOT NULL,
  `P_MFGR` varchar(25) NOT NULL,
  `P_BRAND` varchar(10) NOT NULL,
  `P_TYPE` varchar(25) NOT NULL,
  `P_SIZE` int(11) NOT NULL,
  `P_CONTAINER` varchar(10) NOT NULL,
  `P_RETAILPRICE` decimal(12,2) NOT NULL,
  `P_COMMENT` varchar(23) NOT NULL
  )
DISTRIBUTED BY HASH(P_PARTKEY) BUCKETS 10
PROPERTIES("replication_num" = "1");
CREATE TABLE `partsupp` (
  `PS_PARTKEY` int(11) NOT NULL,
  `PS_SUPPKEY` int(11) NOT NULL,
  `PS_AVAILQTY` int(11) NOT NULL,
  `PS_SUPPLYCOST` decimal(12,2) NOT NULL,
  `PS_COMMENT` varchar(199) NOT NULL
)
DISTRIBUTED BY HASH(PS_PARTKEY) BUCKETS 10
PROPERTIES("replication_num" = "1");
CREATE TABLE `region` (
  `R_REGIONKEY` int(11) NOT NULL,
  `R_NAME` varchar(25) NOT NULL,
  `R_COMMENT` varchar(152) DEFAULT NULL
  )
DISTRIBUTED BY HASH(R_REGIONKEY) BUCKETS 10
PROPERTIES("replication_num" = "1");
CREATE TABLE `supplier` (
  `S_SUPPKEY` int(11) NOT NULL,
  `S_NAME` varchar(25) NOT NULL,
  `S_ADDRESS` varchar(40) NOT NULL,
  `S_NATIONKEY` int(11) NOT NULL,
  `S_PHONE` varchar(15) NOT NULL,
  `S_ACCTBAL` decimal(12,2) NOT NULL,
  `S_COMMENT` varchar(101) NOT NULL
  )
DISTRIBUTED BY HASH(S_SUPPKEY) BUCKETS 10
PROPERTIES("replication_num" = "1");


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] yiguolei commented on issue #8141: doris跑tpch并发设置8、16、32、64、96,结果都是10分钟左右

2022-02-19 Thread GitBox


yiguolei commented on issue #8141:
URL: 
https://github.com/apache/incubator-doris/issues/8141#issuecomment-1046059715


   你把bucket 数目调整成64试试


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] zhannngchen opened a new pull request #8153: Some doc improvements and typo fix

2022-02-19 Thread GitBox


zhannngchen opened a new pull request #8153:
URL: https://github.com/apache/incubator-doris/pull/8153


   # Proposed changes
   
   Issue Number: close #xxx
   
   ## Problem Summary:
   
   Describe the overview of changes.
   
   ## Checklist(Required)
   
   1. Does it affect the original behavior: (No)
   2. Has unit tests been added: (No)
   3. Has document been added or modified: (Yes)
   4. Does it need to update dependencies: (No)
   5. Are there any changes that cannot be rolled back: (No)
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] hf200012 merged pull request #8150: [doc]fix start/stop command

2022-02-19 Thread GitBox


hf200012 merged pull request #8150:
URL: https://github.com/apache/incubator-doris/pull/8150


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[incubator-doris] branch master updated: [doc]fix start/stop command (#8150)

2022-02-19 Thread jiafengzheng
This is an automated email from the ASF dual-hosted git repository.

jiafengzheng 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 02531cc  [doc]fix start/stop command (#8150)
02531cc is described below

commit 02531cc53604c00fcc143025f4e73cf85536e71c
Author: dataalive <99398130+dataal...@users.noreply.github.com>
AuthorDate: Sun Feb 20 12:03:47 2022 +0800

[doc]fix start/stop command (#8150)
---
 docs/en/installing/install-deploy.md| 6 +++---
 docs/zh-CN/installing/install-deploy.md | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/en/installing/install-deploy.md 
b/docs/en/installing/install-deploy.md
index 78d177e..3d5b1ba 100644
--- a/docs/en/installing/install-deploy.md
+++ b/docs/en/installing/install-deploy.md
@@ -177,7 +177,7 @@ See the section on `lower_case_table_names` variables in 
[Variables](../administ
 
 * Start FE
 
-   `sh bin/start_fe.sh --daemon`
+   `bin/start_fe.sh --daemon`
 
The FE process starts and enters the background execution. Logs are 
stored in the log/ directory by default. If startup fails, you can view error 
messages by looking at log/fe.log or log/fe.out.
 
@@ -236,7 +236,7 @@ See the section on `lower_case_table_names` variables in 
[Variables](../administ
 
 * Start BE
 
-   `sh bin/start_be.sh --daemon`
+   `bin/start_be.sh --daemon`
 
The BE process will start and go into the background for execution. 
Logs are stored in be/log/directory by default. If startup fails, you can view 
error messages by looking at be/log/be.log or be/log/be.out.
 
@@ -256,7 +256,7 @@ Broker is deployed as a plug-in, independent of Doris. If 
you need to import dat
 
 * Start Broker
 
-   `sh bin /start'u broker.sh --daemon ` start Broker
+   `bin/start_broker.sh --daemon ` start Broker
 
 * Add Broker
 
diff --git a/docs/zh-CN/installing/install-deploy.md 
b/docs/zh-CN/installing/install-deploy.md
index 8b67173..d05acec 100644
--- a/docs/zh-CN/installing/install-deploy.md
+++ b/docs/zh-CN/installing/install-deploy.md
@@ -176,7 +176,7 @@ doris默认为表名大小写敏感,如有表名大小写不敏感的需求需
 
 * 启动FE
 
-`sh bin/start_fe.sh --daemon`
+`bin/start_fe.sh --daemon`
 
 FE进程启动进入后台执行。日志默认存放在 log/ 目录下。如启动失败,可以通过查看 log/fe.log 或者 log/fe.out 查看错误信息。
 
@@ -235,7 +235,7 @@ doris默认为表名大小写敏感,如有表名大小写不敏感的需求需
 
 * 启动 BE
 
-`sh bin/start_be.sh --daemon`
+`bin/start_be.sh --daemon`
 
 BE 进程将启动并进入后台执行。日志默认存放在 be/log/ 目录下。如启动失败,可以通过查看 be/log/be.log 或者 
be/log/be.out 查看错误信息。
 
@@ -255,7 +255,7 @@ Broker 以插件的形式,独立于 Doris 部署。如果需要从第三方存
 
  * 启动 Broker
 
-`sh bin/start_broker.sh --daemon` 启动 Broker。
+`bin/start_broker.sh --daemon` 启动 Broker。
 
 * 添加 Broker
 

-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [incubator-doris] github-actions[bot] commented on pull request #8153: Some doc improvements and typo fix

2022-02-19 Thread GitBox


github-actions[bot] commented on pull request #8153:
URL: https://github.com/apache/incubator-doris/pull/8153#issuecomment-1046173386


   PR approved by anyone and no changes requested.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org