[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7215: [docs] Refine documents for commit message tags.

2021-11-25 Thread GitBox
github-actions[bot] commented on pull request #7215: URL: https://github.com/apache/incubator-doris/pull/7215#issuecomment-978944476 -- 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 c

[GitHub] [incubator-doris] morningman opened a new pull request #7217: [fix](alter) Fix bug that partition column of a unique key table can be modified

2021-11-25 Thread GitBox
morningman opened a new pull request #7217: URL: https://github.com/apache/incubator-doris/pull/7217 ## Proposed changes The partition columns can not be modified. This is because we don't consider the invisible columns(eg, delete flag column) when doing alter. ## Types

[GitHub] [incubator-doris] morningman commented on a change in pull request #7217: [fix](alter) Fix bug that partition column of a unique key table can be modified

2021-11-25 Thread GitBox
morningman commented on a change in pull request #7217: URL: https://github.com/apache/incubator-doris/pull/7217#discussion_r756667625 ## File path: fe/fe-core/src/main/java/org/apache/doris/alter/MaterializedViewHandler.java ## @@ -498,13 +499,15 @@ private RollupJobV2 create

[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7217: [fix](alter) Fix bug that partition column of a unique key table can be modified

2021-11-25 Thread GitBox
github-actions[bot] commented on pull request #7217: URL: https://github.com/apache/incubator-doris/pull/7217#issuecomment-978965962 -- 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 c

[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7216: [Feature]. Improve DeltaWriter's performance.

2021-11-25 Thread GitBox
github-actions[bot] commented on pull request #7216: URL: https://github.com/apache/incubator-doris/pull/7216#issuecomment-978970911 -- 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 c

[GitHub] [incubator-doris] morningman commented on pull request #7216: [Feature]. Improve DeltaWriter's performance.

2021-11-25 Thread GitBox
morningman commented on pull request #7216: URL: https://github.com/apache/incubator-doris/pull/7216#issuecomment-978971235 Hi @killxdcj , please fix BE ut. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL abov

[GitHub] [incubator-doris] BiteTheDDDDt opened a new issue #7218: [Bug] core dump at some bitmap function

2021-11-25 Thread GitBox
BiteThet opened a new issue #7218: URL: https://github.com/apache/incubator-doris/issues/7218 ### 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 m

[GitHub] [incubator-doris] BiteTheDDDDt opened a new pull request #7221: [Bug] fix core dump at some bitmap function

2021-11-25 Thread GitBox
BiteThet opened a new pull request #7221: URL: https://github.com/apache/incubator-doris/pull/7221 ## Proposed changes `select bitmap_xor(bitmap_from_string('1'), bitmap_from_string('1,1'));` `https://github.com/greg7mdp/parallel-hashmap` ``` The btree containers are

[GitHub] [incubator-doris] tianhui5 commented on issue #7129: [Feature] Limit cluster resource usage in user granularity

2021-11-25 Thread GitBox
tianhui5 commented on issue #7129: URL: https://github.com/apache/incubator-doris/issues/7129#issuecomment-979058445 > I see. Doris already has `max_connection` limit which can be set for each user. But I think what you need is not just limit the number of connection, but to limit the `ra

[GitHub] [incubator-doris] ChPi commented on issue #4967: ALL BE node is down

2021-11-25 Thread GitBox
ChPi commented on issue #4967: URL: https://github.com/apache/incubator-doris/issues/4967#issuecomment-979063008 我也遇到这个问题了,执行一个sql就出现。但是没有找到原因,在其他环境这个sql又能执行成功。能有办法在生产环境debug定位到具体原因吗 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to

[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7221: [Bug] fix core dump at some bitmap function

2021-11-25 Thread GitBox
github-actions[bot] commented on pull request #7221: URL: https://github.com/apache/incubator-doris/pull/7221#issuecomment-979086924 -- 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 c

[GitHub] [incubator-doris] HappenLee opened a new issue #7223: [Bug] Reader call `_capture_rs_readers` function twice

2021-11-25 Thread GitBox
HappenLee opened a new issue #7223: URL: https://github.com/apache/incubator-doris/issues/7223 ### 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 mast

[GitHub] [incubator-doris] HappenLee opened a new pull request #7224: [Bug] Fix the bug reader call `_capture_rs_readers` function twice

2021-11-25 Thread GitBox
HappenLee opened a new pull request #7224: URL: https://github.com/apache/incubator-doris/pull/7224 ## Proposed changes del the unless code ## Types of changes What types of changes does your code introduce to Doris? _Put an `x` in the boxes that apply_ - [x] B

[GitHub] [incubator-doris] renzhimin7 opened a new pull request #7225: [optimize]Partition column and bucket column should not have duplicates

2021-11-25 Thread GitBox
renzhimin7 opened a new pull request #7225: URL: https://github.com/apache/incubator-doris/pull/7225 Even if the field is a partition column and a bucket column, there will be performance problems when the in operation is performed according to the field https://github.com/apache/incubato

[GitHub] [incubator-doris] renzhimin7 commented on pull request #7225: [optimize]Partition column and bucket column should not have duplicates

2021-11-25 Thread GitBox
renzhimin7 commented on pull request #7225: URL: https://github.com/apache/incubator-doris/pull/7225#issuecomment-979177257 When querying, cut the partition first. After determining the partition, cut the bucket. When the column is both a bucket column and a partition column, if you use th

[GitHub] [incubator-doris] lovemylover042 commented on issue #4967: ALL BE node is down

2021-11-25 Thread GitBox
lovemylover042 commented on issue #4967: URL: https://github.com/apache/incubator-doris/issues/4967#issuecomment-979199180 Upgrade to version 0.14+ can fix this problem! 从 Windows 版邮件发送 发件人: ***@***.***> 发送时间: 2021年11月25日 18:1

[GitHub] [incubator-doris] killxdcj commented on pull request #7216: [Feature]. Improve DeltaWriter's performance.

2021-11-25 Thread GitBox
killxdcj commented on pull request #7216: URL: https://github.com/apache/incubator-doris/pull/7216#issuecomment-979203857 > @morningman BE ut fixed~ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL abov

[GitHub] [incubator-doris] hf200012 opened a new pull request #7226: Separate parameters for writing and reading control records

2021-11-25 Thread GitBox
hf200012 opened a new pull request #7226: URL: https://github.com/apache/incubator-doris/pull/7226 The parameters for writing and reading control records are separated, and the writing parameters are the same as those of the flink connector ## Proposed changes Describe the big

[GitHub] [incubator-doris] morningman closed issue #7218: [Bug] core dump at some bitmap function

2021-11-25 Thread GitBox
morningman closed issue #7218: URL: https://github.com/apache/incubator-doris/issues/7218 -- 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-

[GitHub] [incubator-doris] morningman merged pull request #7221: [Bug] fix core dump at some bitmap function

2021-11-25 Thread GitBox
morningman merged pull request #7221: URL: https://github.com/apache/incubator-doris/pull/7221 -- 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: com

[incubator-doris] branch master updated: [fix](bitmap-function) fix core dump at some bitmap function (#7221)

2021-11-25 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman 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 2445f10 [fix](bitmap-function) fix

[GitHub] [incubator-doris] morningman commented on pull request #7210: [feat](flink-connector) add BATCH DELETE support

2021-11-25 Thread GitBox
morningman commented on pull request #7210: URL: https://github.com/apache/incubator-doris/pull/7210#issuecomment-979281856 > NewDorisTest (Incubator Doris) failed, but I can't visit the Details. Don't worry, we will handle this. At present, you only need to update the document

[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7216: [Feature]. Improve DeltaWriter's performance.

2021-11-25 Thread GitBox
github-actions[bot] commented on pull request #7216: URL: https://github.com/apache/incubator-doris/pull/7216#issuecomment-979284261 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, plea

[GitHub] [incubator-doris] morningman commented on pull request #7195: [fix][Bug] compile error (#7191)

2021-11-25 Thread GitBox
morningman commented on pull request #7195: URL: https://github.com/apache/incubator-doris/pull/7195#issuecomment-979284535 #7174 has been merged. This PR is closed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the

[GitHub] [incubator-doris] morningman closed pull request #7195: [fix][Bug] compile error (#7191)

2021-11-25 Thread GitBox
morningman closed pull request #7195: URL: https://github.com/apache/incubator-doris/pull/7195 -- 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: com

[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7148: [Lateral View] Pruning output slot of TableFunctionNode

2021-11-25 Thread GitBox
github-actions[bot] commented on pull request #7148: URL: https://github.com/apache/incubator-doris/pull/7148#issuecomment-979286981 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, plea

[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7157: [optimize] optimize get_json_xx function

2021-11-25 Thread GitBox
github-actions[bot] commented on pull request #7157: URL: https://github.com/apache/incubator-doris/pull/7157#issuecomment-979291831 -- 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 c

[GitHub] [incubator-doris] morningman commented on pull request #7193: [fix](broker-load) BE may crash when using preceding filter in broker or routine load

2021-11-25 Thread GitBox
morningman commented on pull request #7193: URL: https://github.com/apache/incubator-doris/pull/7193#issuecomment-979292821 > What is the reason for moving all prepare open of Expr down to scanner? This is because the `source row descriptor` is initialized in `scanner.open()`, and th

[GitHub] [incubator-doris] morningman commented on a change in pull request #7167: [optimize]Add Doris restart script, optimize doris start and stop commands

2021-11-25 Thread GitBox
morningman commented on a change in pull request #7167: URL: https://github.com/apache/incubator-doris/pull/7167#discussion_r756975635 ## File path: bin/doris_be.sh ## @@ -0,0 +1,76 @@ +#!/usr/bin/env bash +# Licensed to the Apache Software Foundation (ASF) under one +# or more

[GitHub] [incubator-doris] caiconghui commented on a change in pull request #7155: [Config] Support disable query and load for backend to make Doris more robust and set default value to 1 for max_quer

2021-11-25 Thread GitBox
caiconghui commented on a change in pull request #7155: URL: https://github.com/apache/incubator-doris/pull/7155#discussion_r756980089 ## File path: fe/fe-core/src/main/java/org/apache/doris/analysis/ModifyBackendClause.java ## @@ -17,6 +17,7 @@ package org.apache.doris.ana

[GitHub] [incubator-doris] hf200012 commented on a change in pull request #7167: [optimize]Add Doris restart script, optimize doris start and stop commands

2021-11-25 Thread GitBox
hf200012 commented on a change in pull request #7167: URL: https://github.com/apache/incubator-doris/pull/7167#discussion_r756983828 ## File path: build.sh ## @@ -327,6 +327,7 @@ if [ ${BUILD_BE} -eq 1 ]; then ${DORIS_OUTPUT}/udf/include cp -r -p ${DORIS_

[GitHub] [incubator-doris] morningman commented on pull request #7205: fix preaggregation reason error

2021-11-25 Thread GitBox
morningman commented on pull request #7205: URL: https://github.com/apache/incubator-doris/pull/7205#issuecomment-979305640 > aggregation function for **KEY columns** should be MAX or MIN Why? We can use any aggregation functions for key column. -- This is an automated message from

[GitHub] [incubator-doris] hf200012 commented on a change in pull request #7167: [optimize]Add Doris restart script, optimize doris start and stop commands

2021-11-25 Thread GitBox
hf200012 commented on a change in pull request #7167: URL: https://github.com/apache/incubator-doris/pull/7167#discussion_r756986723 ## File path: build.sh ## @@ -327,6 +327,7 @@ if [ ${BUILD_BE} -eq 1 ]; then ${DORIS_OUTPUT}/udf/include cp -r -p ${DORIS_

[GitHub] [incubator-doris] morningman removed a comment on pull request #7205: fix preaggregation reason error

2021-11-25 Thread GitBox
morningman removed a comment on pull request #7205: URL: https://github.com/apache/incubator-doris/pull/7205#issuecomment-979305640 > aggregation function for **KEY columns** should be MAX or MIN Why? We can use any aggregation functions for key column. -- This is an automated mess

[GitHub] [incubator-doris] morningman commented on pull request #7205: fix preaggregation reason error

2021-11-25 Thread GitBox
morningman commented on pull request #7205: URL: https://github.com/apache/incubator-doris/pull/7205#issuecomment-979309395 > > I got your point. and it looks good to me. but the example you give in #7204 seem not correct? Neither `create table stmt` nor `query` are related to MAX or MIN.

[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7205: fix preaggregation reason error

2021-11-25 Thread GitBox
github-actions[bot] commented on pull request #7205: URL: https://github.com/apache/incubator-doris/pull/7205#issuecomment-979309769 -- 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 c

[GitHub] [incubator-doris] caiconghui commented on a change in pull request #7155: [Config] Support disable query and load for backend to make Doris more robust and set default value to 1 for max_quer

2021-11-25 Thread GitBox
caiconghui commented on a change in pull request #7155: URL: https://github.com/apache/incubator-doris/pull/7155#discussion_r756994075 ## File path: fe/fe-core/src/main/java/org/apache/doris/catalog/MetadataViewer.java ## @@ -84,7 +84,7 @@

[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7224: [Bug] Fix the bug reader call `_capture_rs_readers` function twice

2021-11-25 Thread GitBox
github-actions[bot] commented on pull request #7224: URL: https://github.com/apache/incubator-doris/pull/7224#issuecomment-979319594 -- 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 c

[GitHub] [incubator-doris] morningman commented on a change in pull request #7183: [BUG] Fix `curdate()+0` to behave like mysql

2021-11-25 Thread GitBox
morningman commented on a change in pull request #7183: URL: https://github.com/apache/incubator-doris/pull/7183#discussion_r757006435 ## File path: fe/fe-core/src/main/java/org/apache/doris/analysis/DateLiteral.java ## @@ -361,8 +368,18 @@ public int compareLiteral(LiteralExpr

[GitHub] [incubator-doris] morningman commented on a change in pull request #7226: Separate parameters for writing and reading control records

2021-11-25 Thread GitBox
morningman commented on a change in pull request #7226: URL: https://github.com/apache/incubator-doris/pull/7226#discussion_r757007288 ## File path: docs/zh-CN/extending-doris/spark-doris-connector.md ## @@ -186,6 +186,7 @@ kafkaSource.selectExpr("CAST(key AS STRING)", "CAST(va

[GitHub] [incubator-doris] littleeleventhwolf commented on a change in pull request #7183: [BUG] Fix `curdate()+0` to behave like mysql

2021-11-25 Thread GitBox
littleeleventhwolf commented on a change in pull request #7183: URL: https://github.com/apache/incubator-doris/pull/7183#discussion_r757040757 ## File path: fe/fe-core/src/main/java/org/apache/doris/analysis/DateLiteral.java ## @@ -361,8 +368,18 @@ public int compareLiteral(Lit

[GitHub] [incubator-doris] littleeleventhwolf commented on a change in pull request #7183: [BUG] Fix `curdate()+0` to behave like mysql

2021-11-25 Thread GitBox
littleeleventhwolf commented on a change in pull request #7183: URL: https://github.com/apache/incubator-doris/pull/7183#discussion_r757043811 ## File path: fe/fe-core/src/main/java/org/apache/doris/analysis/DateLiteral.java ## @@ -361,8 +368,18 @@ public int compareLiteral(Lit

[GitHub] [incubator-doris] ChPi commented on issue #4967: ALL BE node is down

2021-11-25 Thread GitBox
ChPi commented on issue #4967: URL: https://github.com/apache/incubator-doris/issues/4967#issuecomment-979588913 > Upgrade to version 0.14+ can fix this problem! 从 Windows 版邮件<[https://go.microsoft.com/fwlink/?LinkId=550986>发送](https://go.microsoft.com/fwlink/?LinkId=550986>%E5%8F%91%E9%80

[GitHub] [incubator-doris] ChPi commented on issue #4967: ALL BE node is down

2021-11-25 Thread GitBox
ChPi commented on issue #4967: URL: https://github.com/apache/incubator-doris/issues/4967#issuecomment-979590330 > Upgrade to version 0.14+ can fix this problem! 从 Windows 版邮件<[https://go.microsoft.com/fwlink/?LinkId=550986>发送](https://go.microsoft.com/fwlink/?LinkId=550986>%E5%8F%91%E9%80

[GitHub] [incubator-doris] morningman merged pull request #7148: [Lateral View] Pruning output slot of TableFunctionNode

2021-11-25 Thread GitBox
morningman merged pull request #7148: URL: https://github.com/apache/incubator-doris/pull/7148 -- 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: com

[incubator-doris] branch master updated (2445f10 -> 70670b5)

2021-11-25 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris.git. from 2445f10 [fix](bitmap-function) fix core dump at some bitmap function (#7221) add 70670b5 [feat-w

[incubator-doris] branch master updated: [feat-opt](json-function) optimize get_json_xx function (#7157)

2021-11-25 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman 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 a1bf287 [feat-opt](json-function)

[GitHub] [incubator-doris] morningman merged pull request #7157: [optimize] optimize get_json_xx function

2021-11-25 Thread GitBox
morningman merged pull request #7157: URL: https://github.com/apache/incubator-doris/pull/7157 -- 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: com

[GitHub] [incubator-doris] morningman merged pull request #7205: fix preaggregation reason error

2021-11-25 Thread GitBox
morningman merged pull request #7205: URL: https://github.com/apache/incubator-doris/pull/7205 -- 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: com

[GitHub] [incubator-doris] morningman closed issue #7204: [Bug] reason for pre_Aggregation = OFF is wrong.

2021-11-25 Thread GitBox
morningman closed issue #7204: URL: https://github.com/apache/incubator-doris/issues/7204 -- 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-

[incubator-doris] branch master updated: [fix](planner) fix preaggregation reason error (#7205)

2021-11-25 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman 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 52cd12a [fix](planner) fix preaggr

[GitHub] [incubator-doris] morningman merged pull request #7215: [docs] Refine documents for commit message tags.

2021-11-25 Thread GitBox
morningman merged pull request #7215: URL: https://github.com/apache/incubator-doris/pull/7215 -- 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: com

[incubator-doris] branch master updated: [docs] Refine documents for commit message tags. (#7215)

2021-11-25 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman 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 178fda5 [docs] Refine documents fo

[GitHub] [incubator-doris] morningman merged pull request #7216: [Feature]. Improve DeltaWriter's performance.

2021-11-25 Thread GitBox
morningman merged pull request #7216: URL: https://github.com/apache/incubator-doris/pull/7216 -- 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: com

[GitHub] [incubator-doris] morningman closed issue #7214: [Feature] Improve DeltaWriter's performance

2021-11-25 Thread GitBox
morningman closed issue #7214: URL: https://github.com/apache/incubator-doris/issues/7214 -- 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-

[incubator-doris] branch master updated: [performance] Improve DeltaWriter's performance. (#7216)

2021-11-25 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman 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 948a2a7 [performance] Improve Delt

[incubator-doris] branch master updated: [fix](alter) Fix bug that partition column of a unique key table can be modified (#7217)

2021-11-25 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman 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 baa5d60 [fix](alter) Fix bug that

[GitHub] [incubator-doris] morningman merged pull request #7217: [fix](alter) Fix bug that partition column of a unique key table can be modified

2021-11-25 Thread GitBox
morningman merged pull request #7217: URL: https://github.com/apache/incubator-doris/pull/7217 -- 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: com

[GitHub] [incubator-doris] morningman merged pull request #7224: [Bug] Fix the bug reader call `_capture_rs_readers` function twice

2021-11-25 Thread GitBox
morningman merged pull request #7224: URL: https://github.com/apache/incubator-doris/pull/7224 -- 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: com

[incubator-doris] branch master updated: [fix](reader) Fix the bug that reader call _capture_rs_readers function twice (#7224)

2021-11-25 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman 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 91a3150 [fix](reader) Fix the bug

[GitHub] [incubator-doris] morningman closed issue #7223: [Bug] Reader call `_capture_rs_readers` function twice

2021-11-25 Thread GitBox
morningman closed issue #7223: URL: https://github.com/apache/incubator-doris/issues/7223 -- 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-

[GitHub] [incubator-doris] morningman commented on pull request #7149: [Feature] Z-Order Implement

2021-11-25 Thread GitBox
morningman commented on pull request #7149: URL: https://github.com/apache/incubator-doris/pull/7149#issuecomment-979622508 ``` ../src/util/tuple_row_zorder_compare.cpp:54:83: required from here ../src/util/tuple_row_zorder_compare.cpp:168:41: warning: left shift count >= width of t

[GitHub] [incubator-doris] morningman removed a comment on pull request #7149: [Feature] Z-Order Implement

2021-11-25 Thread GitBox
morningman removed a comment on pull request #7149: URL: https://github.com/apache/incubator-doris/pull/7149#issuecomment-979622508 ``` ../src/util/tuple_row_zorder_compare.cpp:54:83: required from here ../src/util/tuple_row_zorder_compare.cpp:168:41: warning: left shift count >= wi

[GitHub] [incubator-doris] caiconghui commented on a change in pull request #7155: [Config] Support disable query and load for backend to make Doris more robust and set default value to 1 for max_quer

2021-11-25 Thread GitBox
caiconghui commented on a change in pull request #7155: URL: https://github.com/apache/incubator-doris/pull/7155#discussion_r757193119 ## File path: fe/fe-core/src/main/java/org/apache/doris/clone/BackendLoadStatistic.java ## @@ -175,7 +175,7 @@ public void init() throws LoadB

[GitHub] [incubator-doris] github-actions[bot] commented on pull request #7193: [fix](broker-load) BE may crash when using preceding filter in broker or routine load

2021-11-25 Thread GitBox
github-actions[bot] commented on pull request #7193: URL: https://github.com/apache/incubator-doris/pull/7193#issuecomment-979647360 -- 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 c

[GitHub] [incubator-doris] 391518331 opened a new issue #7227: 0.15.0-rc04 Compilation failed

2021-11-25 Thread GitBox
391518331 opened a new issue #7227: URL: https://github.com/apache/incubator-doris/issues/7227 ### 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

[GitHub] [incubator-doris] 391518331 commented on issue #7227: 0.15.0-rc04 Compilation failed

2021-11-25 Thread GitBox
391518331 commented on issue #7227: URL: https://github.com/apache/incubator-doris/issues/7227#issuecomment-979656870 编译环境:docker apache/incubator-doris:build-env-1.4.1 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and us

[GitHub] [incubator-doris] hf200012 commented on issue #7227: 0.15.0-rc04 Compilation failed

2021-11-25 Thread GitBox
hf200012 commented on issue #7227: URL: https://github.com/apache/incubator-doris/issues/7227#issuecomment-979657785 docker 1.4.2 -- 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 co

[GitHub] [incubator-doris] 391518331 commented on issue #7227: 0.15.0-rc04 Compilation failed

2021-11-25 Thread GitBox
391518331 commented on issue #7227: URL: https://github.com/apache/incubator-doris/issues/7227#issuecomment-979662658 -- Build files have been written to: /root/apache-doris-0.15.0-incubating-src/be/build_Release [0/2] Re-checking globbed directories... [163/753] Building CXX object

[GitHub] [incubator-doris] morningman commented on issue #7227: 0.15.0-rc04 Compilation failed

2021-11-25 Thread GitBox
morningman commented on issue #7227: URL: https://github.com/apache/incubator-doris/issues/7227#issuecomment-979675460 > -- Build files have been written to: /root/apache-doris-0.15.0-incubating-src/be/build_Release [0/2] Re-checking globbed directories... [163/753] Building CXX object s

[GitHub] [incubator-doris] morningman commented on a change in pull request #7149: [Feature] Z-Order Implement

2021-11-25 Thread GitBox
morningman commented on a change in pull request #7149: URL: https://github.com/apache/incubator-doris/pull/7149#discussion_r757218068 ## File path: fe/fe-core/src/main/java/org/apache/doris/analysis/DataSortInfo.java ## @@ -0,0 +1,104 @@ +// Licensed to the Apache Software Fou

[GitHub] [incubator-doris] morningman commented on pull request #7149: [Feature] Z-Order Implement

2021-11-25 Thread GitBox
morningman commented on pull request #7149: URL: https://github.com/apache/incubator-doris/pull/7149#issuecomment-979691329 I tested my own and it works well. 3 more things: 1. Some litter problem which I have commented. 2. rebase to resolve the conflict. 3. Add document for this

[GitHub] [incubator-doris] ztgoto opened a new issue #7228: apache-doris-0.14.0使用apache/incubator-doris:build-env-1.2 docker镜像无法编译

2021-11-25 Thread GitBox
ztgoto opened a new issue #7228: URL: https://github.com/apache/incubator-doris/issues/7228 ### 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 apache-

[GitHub] [incubator-doris] morningman commented on issue #7228: apache-doris-0.14.0使用apache/incubator-doris:build-env-1.2 docker镜像无法编译

2021-11-25 Thread GitBox
morningman commented on issue #7228: URL: https://github.com/apache/incubator-doris/issues/7228#issuecomment-979757931 try `sh build.sh --fe --be --ui --clean` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL