[GitHub] [doris] morningman opened a new pull request, #14016: [improvement](profile) support ordinary user to get query profile via http api

2022-11-07 Thread GitBox
morningman opened a new pull request, #14016: URL: https://github.com/apache/doris/pull/14016 # Proposed changes Issue Number: close #xxx ## Problem summary In previous implementation, the following http api can only be used by admin or root user: ``` GET /rest/v2/

[GitHub] [doris] wsjz opened a new pull request, #14015: [feature-wip](multi-catalog) fix page index

2022-11-07 Thread GitBox
wsjz opened a new pull request, #14015: URL: https://github.com/apache/doris/pull/14015 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Yes

[GitHub] [doris] 924060929 commented on a diff in pull request #12996: [Nereids][Improve] infer predicate after push down predicate

2022-11-07 Thread GitBox
924060929 commented on code in PR #12996: URL: https://github.com/apache/doris/pull/12996#discussion_r1015076884 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/InferPredicates.java: ## @@ -0,0 +1,118 @@ +// Licensed to the Apache Software Foundation (

[doris] annotated tag 1.1.4-rc01 updated (07344af06a -> 4422fe1579)

2022-11-07 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to annotated tag 1.1.4-rc01 in repository https://gitbox.apache.org/repos/asf/doris.git *** WARNING: tag 1.1.4-rc01 was modified! *** from 07344af06a (commit) to 4422fe1579 (tag) tagging 0734

[GitHub] [doris] nextdreamblue opened a new pull request, #14017: [docs](odbc) fix docs for sqlserver odbc table

2022-11-07 Thread GitBox
nextdreamblue opened a new pull request, #14017: URL: https://github.com/apache/doris/pull/14017 Signed-off-by: nextdreamblue # Proposed changes Issue Number: close #xxx ## Problem summary fix docs for sqlserver odbc table ## Checklist(Required) 1. D

[GitHub] [doris] 924060929 commented on a diff in pull request #12996: [Nereids][Improve] infer predicate after push down predicate

2022-11-07 Thread GitBox
924060929 commented on code in PR #12996: URL: https://github.com/apache/doris/pull/12996#discussion_r1015094281 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PredicatePropagation.java: ## @@ -0,0 +1,102 @@ +// Licensed to the Apache Software Foundat

[doris] annotated tag 1.1.4-rc01 updated (8890a58dc8 -> fe5a3e126e)

2022-11-07 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to annotated tag 1.1.4-rc01 in repository https://gitbox.apache.org/repos/asf/doris.git *** WARNING: tag 1.1.4-rc01 was modified! *** from 8890a58dc8 (commit) to fe5a3e126e (tag) tagging 8890

[GitHub] [doris] zhannngchen commented on a diff in pull request #14014: [enhancement](load) shrink reserved buffer for page builder (#14012)

2022-11-07 Thread GitBox
zhannngchen commented on code in PR #14014: URL: https://github.com/apache/doris/pull/14014#discussion_r1015120327 ## be/src/olap/rowset/segment_v2/column_writer.cpp: ## @@ -274,6 +274,7 @@ Status ScalarColumnWriter::init() { // create page builder PageBuilderOptions o

[GitHub] [doris] elisondba2022 commented on issue #5796: flinksql doris insert exception:stream load error: too many filtered rows

2022-11-07 Thread GitBox
elisondba2022 commented on issue #5796: URL: https://github.com/apache/doris/issues/5796#issuecomment-1305249013 Caused by: org.apache.flink.util.SerializedThrowable: stream load error: too many filtered rows, see more in http://192.168.168.215:8040/api/_load_error_log?file=__shard_25/error

[GitHub] [doris] lit2430 opened a new issue, #14020: [Bug] errCode = 2, detailMessage = Unknown column 'E' in 'table list'

2022-11-07 Thread GitBox
lit2430 opened a new issue, #14020: URL: https://github.com/apache/doris/issues/14020 ### 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.3

[GitHub] [doris] freemandealer commented on a diff in pull request #14014: [enhancement](load) shrink reserved buffer for page builder (#14012)

2022-11-07 Thread GitBox
freemandealer commented on code in PR #14014: URL: https://github.com/apache/doris/pull/14014#discussion_r1015127547 ## be/src/olap/rowset/segment_v2/binary_plain_page.h: ## @@ -158,6 +166,7 @@ class BinaryPlainPageBuilder : public PageBuilder { uint32_t _last_value_size =

[GitHub] [doris] xiaokang commented on a diff in pull request #13430: [feature](inverted index)WIP inverted index api: SQL syntax and metadata

2022-11-07 Thread GitBox
xiaokang commented on code in PR #13430: URL: https://github.com/apache/doris/pull/13430#discussion_r1015131165 ## fe/fe-core/src/main/java/org/apache/doris/analysis/IndexDef.java: ## @@ -126,29 +153,37 @@ public boolean isSetIfNotExists() { public enum IndexType {

[GitHub] [doris] xiaokang commented on a diff in pull request #13430: [feature](inverted index)WIP inverted index api: SQL syntax and metadata

2022-11-07 Thread GitBox
xiaokang commented on code in PR #13430: URL: https://github.com/apache/doris/pull/13430#discussion_r1015132859 ## fe/fe-core/src/main/java/org/apache/doris/catalog/TableIndexes.java: ## @@ -56,6 +58,26 @@ public TableIndexes(List indexes, Map properties) { this.proper

[GitHub] [doris] xiaokang commented on a diff in pull request #13430: [feature](inverted index)WIP inverted index api: SQL syntax and metadata

2022-11-07 Thread GitBox
xiaokang commented on code in PR #13430: URL: https://github.com/apache/doris/pull/13430#discussion_r1015134047 ## fe/fe-core/src/main/java/org/apache/doris/analysis/IndexDef.java: ## @@ -48,12 +52,18 @@ public IndexDef(String indexName, boolean ifNotExists, List columns, Ind

[GitHub] [doris] Toms1999 closed pull request #13771: [new] To complete the mysql、hive、pgsql external table to doris by shell

2022-11-07 Thread GitBox
Toms1999 closed pull request #13771: [new] To complete the mysql、hive、pgsql external table to doris by shell URL: https://github.com/apache/doris/pull/13771 -- 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

[GitHub] [doris] Toms1999 opened a new pull request, #14023: [extension]new e_table_to_doris by shell

2022-11-07 Thread GitBox
Toms1999 opened a new pull request, #14023: URL: https://github.com/apache/doris/pull/14023 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Ye

[GitHub] [doris] morrySnow commented on a diff in pull request #13681: [enhancement](Nereids) support otherJoinConjuncts in cascades join reorder

2022-11-07 Thread GitBox
morrySnow commented on code in PR #13681: URL: https://github.com/apache/doris/pull/13681#discussion_r1015133792 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/join/InnerJoinLAsscomProject.java: ## @@ -111,14 +117,26 @@ public Rule build() {

[GitHub] [doris] Toms1999 closed pull request #14023: [extension]new e_table_to_doris by shell

2022-11-07 Thread GitBox
Toms1999 closed pull request #14023: [extension]new e_table_to_doris by shell URL: https://github.com/apache/doris/pull/14023 -- 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. T

[GitHub] [doris] Toms1999 opened a new pull request, #14025: [extension] e_table_to_doris by shell

2022-11-07 Thread GitBox
Toms1999 opened a new pull request, #14025: URL: https://github.com/apache/doris/pull/14025 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Ye

[GitHub] [doris] yiguolei merged pull request #14010: [typo](docs)fix config doc

2022-11-07 Thread GitBox
yiguolei merged PR #14010: URL: https://github.com/apache/doris/pull/14010 -- 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.apa

[doris] branch master updated: [typo](docs)fix config doc #14010

2022-11-07 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new 0031304015 [typo](docs)fix config doc #14010 00

[GitHub] [doris] github-actions[bot] commented on pull request #13745: [enhancement](Nereids) remove unnecessary decimal cast

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #13745: URL: https://github.com/apache/doris/pull/13745#issuecomment-1305288663 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 UR

[GitHub] [doris] github-actions[bot] commented on pull request #13745: [enhancement](Nereids) remove unnecessary decimal cast

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #13745: URL: https://github.com/apache/doris/pull/13745#issuecomment-1305288612 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 GitHu

[GitHub] [doris] morrySnow closed pull request #13976: [feature](Nereids) support statement having aggregate function in order by list

2022-11-07 Thread GitBox
morrySnow closed pull request #13976: [feature](Nereids) support statement having aggregate function in order by list URL: https://github.com/apache/doris/pull/13976 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[doris] branch master updated (0031304015 -> 22b4c6af20)

2022-11-07 Thread morrysnow
This is an automated email from the ASF dual-hosted git repository. morrysnow pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from 0031304015 [typo](docs)fix config doc #14010 add 22b4c6af20 [feature](Nereids) support statement having aggrega

[GitHub] [doris] jackwener commented on a diff in pull request #13681: [enhancement](Nereids) support otherJoinConjuncts in cascades join reorder

2022-11-07 Thread GitBox
jackwener commented on code in PR #13681: URL: https://github.com/apache/doris/pull/13681#discussion_r1015163530 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/join/OuterJoinLAsscomProject.java: ## @@ -89,20 +87,36 @@ public Rule build() {

[GitHub] [doris] catpineapple commented on pull request #13772: [feature](planner) add multi partition

2022-11-07 Thread GitBox
catpineapple commented on PR #13772: URL: https://github.com/apache/doris/pull/13772#issuecomment-1305299819 > And please add some regression tests for this feature. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

[GitHub] [doris] catpineapple closed pull request #13772: [feature](planner) add multi partition

2022-11-07 Thread GitBox
catpineapple closed pull request #13772: [feature](planner) add multi partition URL: https://github.com/apache/doris/pull/13772 -- 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.

[GitHub] [doris] Toms1999 closed pull request #14025: [extension] e_table_to_doris by shell

2022-11-07 Thread GitBox
Toms1999 closed pull request #14025: [extension] e_table_to_doris by shell URL: https://github.com/apache/doris/pull/14025 -- 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 un

[GitHub] [doris] zhouaoe closed pull request #14013: [Enhancement] Doris broker support aliyun-oss

2022-11-07 Thread GitBox
zhouaoe closed pull request #14013: [Enhancement] Doris broker support aliyun-oss URL: https://github.com/apache/doris/pull/14013 -- 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 commen

[GitHub] [doris] zhouaoe opened a new pull request, #14026: [Enhancement] Doris broker support aliyun-oss #13665

2022-11-07 Thread GitBox
zhouaoe opened a new pull request, #14026: URL: https://github.com/apache/doris/pull/14026 # Proposed changes Issue Number: close #13665 ## Problem summary Describe your changes. 1 Upgrade fs_broker module hadoop2.8.3->hadoop2.9.1 2 Broker support oss:// 3 Versio

[GitHub] [doris] pengxiangyu commented on a diff in pull request #13865: [feature](remote)Only query can use local cache when reading remote files.

2022-11-07 Thread GitBox
pengxiangyu commented on code in PR #13865: URL: https://github.com/apache/doris/pull/13865#discussion_r1015187159 ## be/src/olap/rowset/segment_v2/segment.h: ## @@ -74,7 +74,8 @@ class Segment : public std::enable_shared_from_this { uint32_t num_rows() const { return _fo

[GitHub] [doris] freemandealer commented on a diff in pull request #14014: [enhancement](load) shrink reserved buffer for page builder (#14012)

2022-11-07 Thread GitBox
freemandealer commented on code in PR #14014: URL: https://github.com/apache/doris/pull/14014#discussion_r1015194633 ## be/src/olap/rowset/segment_v2/column_writer.cpp: ## @@ -274,6 +274,7 @@ Status ScalarColumnWriter::init() { // create page builder PageBuilderOptions

[GitHub] [doris] Toms1999 opened a new pull request, #14027: [extension] new e_mysql_to_doris by shell

2022-11-07 Thread GitBox
Toms1999 opened a new pull request, #14027: URL: https://github.com/apache/doris/pull/14027 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Ye

[GitHub] [doris] Toms1999 closed pull request #14027: [extension] new e_mysql_to_doris by shell

2022-11-07 Thread GitBox
Toms1999 closed pull request #14027: [extension] new e_mysql_to_doris by shell URL: https://github.com/apache/doris/pull/14027 -- 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. T

[GitHub] [doris] dutyu opened a new issue, #14028: [Enhancement] decommission should safety drop be immediately when BE's tablets all in recycled state

2022-11-07 Thread GitBox
dutyu opened a new issue, #14028: URL: https://github.com/apache/doris/issues/14028 ### 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. ### Description When use dec

[GitHub] [doris] dutyu closed issue #13579: [Enhancement] decommission should safety drop be immediately when BE's tablets all in recycled state

2022-11-07 Thread GitBox
dutyu closed issue #13579: [Enhancement] decommission should safety drop be immediately when BE's tablets all in recycled state URL: https://github.com/apache/doris/issues/13579 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

[GitHub] [doris] 924060929 commented on a diff in pull request #13879: [feature](nereids) Support row policy

2022-11-07 Thread GitBox
924060929 commented on code in PR #13879: URL: https://github.com/apache/doris/pull/13879#discussion_r1015227471 ## fe/fe-core/src/main/java/org/apache/doris/nereids/analyzer/UnboundRelation.java: ## @@ -43,33 +43,41 @@ public class UnboundRelation extends LogicalLeaf implement

[GitHub] [doris] 924060929 commented on a diff in pull request #13879: [feature](nereids) Support row policy

2022-11-07 Thread GitBox
924060929 commented on code in PR #13879: URL: https://github.com/apache/doris/pull/13879#discussion_r1015227471 ## fe/fe-core/src/main/java/org/apache/doris/nereids/analyzer/UnboundRelation.java: ## @@ -43,33 +43,41 @@ public class UnboundRelation extends LogicalLeaf implement

[GitHub] [doris] morningman opened a new pull request, #14029: [refactor](new-scan) remove old vectorized scan node

2022-11-07 Thread GitBox
morningman opened a new pull request, #14029: URL: https://github.com/apache/doris/pull/14029 # Proposed changes Issue Number: close #xxx ## Problem summary Remove following vectorized scan node - volap_scan_node - vjdbc_scan_node - vodbc_scan_node

[GitHub] [doris] 924060929 commented on a diff in pull request #13879: [feature](nereids) Support row policy

2022-11-07 Thread GitBox
924060929 commented on code in PR #13879: URL: https://github.com/apache/doris/pull/13879#discussion_r1015227471 ## fe/fe-core/src/main/java/org/apache/doris/nereids/analyzer/UnboundRelation.java: ## @@ -43,33 +43,41 @@ public class UnboundRelation extends LogicalLeaf implement

[GitHub] [doris] morningman commented on pull request #12011: [fix](auth) remove USAGE_PRIV in CatalogPrivEntry when loading meta image from old version

2022-11-07 Thread GitBox
morningman commented on PR #12011: URL: https://github.com/apache/doris/pull/12011#issuecomment-1305381534 Fixed in #12016 -- 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. T

[GitHub] [doris] 924060929 commented on a diff in pull request #13879: [feature](nereids) Support row policy

2022-11-07 Thread GitBox
924060929 commented on code in PR #13879: URL: https://github.com/apache/doris/pull/13879#discussion_r1015246202 ## fe/fe-core/src/main/java/org/apache/doris/nereids/analyzer/UnboundRelation.java: ## @@ -43,33 +43,41 @@ public class UnboundRelation extends LogicalLeaf implement

[GitHub] [doris] hello-stephen commented on pull request #14015: [feature-wip](multi-catalog) fix page index

2022-11-07 Thread GitBox
hello-stephen commented on PR #14015: URL: https://github.com/apache/doris/pull/14015#issuecomment-1305398428 TeamCity pipeline, clickbench performance test result: the sum of best hot time: 34.58 seconds load time: 430 seconds storage size: 17154644854 Bytes https://doris-co

[GitHub] [doris] morrySnow opened a new pull request, #14030: [feature](Nereids) bind alias in group by list

2022-11-07 Thread GitBox
morrySnow opened a new pull request, #14030: URL: https://github.com/apache/doris/pull/14030 # Proposed changes support query having alias in group by list, such as: ```sql SELECT c1 AS a, SUM(c2) FROM t GROUP BY a; ``` ## Problem summary Describe your changes.

[GitHub] [doris] hello-stephen commented on pull request #14014: [enhancement](load) shrink reserved buffer for page builder (#14012)

2022-11-07 Thread GitBox
hello-stephen commented on PR #14014: URL: https://github.com/apache/doris/pull/14014#issuecomment-1305401172 TeamCity pipeline, clickbench performance test result: the sum of best hot time: 33.98 seconds load time: 462 seconds storage size: 17180543366 Bytes https://doris-co

[GitHub] [doris] Toms1999 opened a new pull request, #14031: [extension] new e_table_to_doris by shell

2022-11-07 Thread GitBox
Toms1999 opened a new pull request, #14031: URL: https://github.com/apache/doris/pull/14031 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Ye

[GitHub] [doris] Toms1999 commented on pull request #14031: [extension] new e_table_to_doris by shell

2022-11-07 Thread GitBox
Toms1999 commented on PR #14031: URL: https://github.com/apache/doris/pull/14031#issuecomment-1305403280 upupup -- 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 unsubscri

[GitHub] [doris] zhannngchen commented on a diff in pull request #14014: [enhancement](load) shrink reserved buffer for page builder (#14012)

2022-11-07 Thread GitBox
zhannngchen commented on code in PR #14014: URL: https://github.com/apache/doris/pull/14014#discussion_r1015267691 ## be/src/olap/rowset/segment_v2/binary_plain_page.h: ## @@ -53,8 +53,14 @@ class BinaryPlainPageBuilder : public PageBuilder { } bool is_page_full() ov

[GitHub] [doris] hello-stephen commented on pull request #14016: [improvement](profile) support ordinary user to get query profile via http api

2022-11-07 Thread GitBox
hello-stephen commented on PR #14016: URL: https://github.com/apache/doris/pull/14016#issuecomment-1305419133 TeamCity pipeline, clickbench performance test result: the sum of best hot time: 34.14 seconds load time: 447 seconds storage size: 17180157957 Bytes https://doris-co

[GitHub] [doris] jackwener merged pull request #14007: [feat](Nereids) add graph simplifier

2022-11-07 Thread GitBox
jackwener merged PR #14007: URL: https://github.com/apache/doris/pull/14007 -- 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.ap

[GitHub] [doris] jackwener closed issue #13903: [Feature] Add graph simplifier

2022-11-07 Thread GitBox
jackwener closed issue #13903: [Feature] Add graph simplifier URL: https://github.com/apache/doris/issues/13903 -- 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,

[doris] branch master updated (22b4c6af20 -> f2978fb6ff)

2022-11-07 Thread jakevin
This is an automated email from the ASF dual-hosted git repository. jakevin pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from 22b4c6af20 [feature](Nereids) support statement having aggregate function in order by list (#13976) add f2978fb6

[GitHub] [doris] 924060929 commented on a diff in pull request #12996: [Nereids][Improve] infer predicate after push down predicate

2022-11-07 Thread GitBox
924060929 commented on code in PR #12996: URL: https://github.com/apache/doris/pull/12996#discussion_r1015106069 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/InferPredicates.java: ## @@ -0,0 +1,118 @@ +// Licensed to the Apache Software Foundation (

[GitHub] [doris] 924060929 commented on a diff in pull request #12996: [Nereids][Improve] infer predicate after push down predicate

2022-11-07 Thread GitBox
924060929 commented on code in PR #12996: URL: https://github.com/apache/doris/pull/12996#discussion_r1015106069 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/InferPredicates.java: ## @@ -0,0 +1,118 @@ +// Licensed to the Apache Software Foundation (

[GitHub] [doris] yuanyuan8983 closed pull request #13933: [test](delete) Add more deletion test cases

2022-11-07 Thread GitBox
yuanyuan8983 closed pull request #13933: [test](delete) Add more deletion test cases URL: https://github.com/apache/doris/pull/13933 -- 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 comm

[GitHub] [doris] 924060929 commented on a diff in pull request #13879: [feature](nereids) Support row policy

2022-11-07 Thread GitBox
924060929 commented on code in PR #13879: URL: https://github.com/apache/doris/pull/13879#discussion_r1015227471 ## fe/fe-core/src/main/java/org/apache/doris/nereids/analyzer/UnboundRelation.java: ## @@ -43,33 +43,41 @@ public class UnboundRelation extends LogicalLeaf implement

[GitHub] [doris] zhannngchen opened a new pull request, #14032: [debug] check num_segments != segment_key_bounds.size()

2022-11-07 Thread GitBox
zhannngchen opened a new pull request, #14032: URL: https://github.com/apache/doris/pull/14032 # Proposed changes Issue Number: close #xxx ## Problem summary just run pipeline for debug, don't merge ## Checklist(Required) 1. Does it affect the original behav

[GitHub] [doris] englefly opened a new pull request, #14033: [fix](nereids) let right anti join generates runtime-filter

2022-11-07 Thread GitBox
englefly opened a new pull request, #14033: URL: https://github.com/apache/doris/pull/14033 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Ye

[GitHub] [doris] xiaokang opened a new issue, #14034: [Bug] like '' (empty string) get wrong result with all rows

2022-11-07 Thread GitBox
xiaokang opened a new issue, #14034: URL: https://github.com/apache/doris/issues/14034 ### 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 master

[GitHub] [doris] xiaokang opened a new pull request, #14035: fix like '' (empty string) get wrong result with all rows

2022-11-07 Thread GitBox
xiaokang opened a new pull request, #14035: URL: https://github.com/apache/doris/pull/14035 # Proposed changes Issue Number: close #14034 ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ]

[GitHub] [doris] morrySnow merged pull request #13745: [enhancement](Nereids) remove unnecessary decimal cast

2022-11-07 Thread GitBox
morrySnow merged PR #13745: URL: https://github.com/apache/doris/pull/13745 -- 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.ap

[doris] branch master updated (f2978fb6ff -> 4ea1b39cb2)

2022-11-07 Thread morrysnow
This is an automated email from the ASF dual-hosted git repository. morrysnow pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from f2978fb6ff [feat](Nereids) add graph simplifier (#14007) add 4ea1b39cb2 [enhancement](Nereids) remove unnecessa

[GitHub] [doris] TaoZex commented on pull request #14001: [typo](doc) fix get-starting doc

2022-11-07 Thread GitBox
TaoZex commented on PR #14001: URL: https://github.com/apache/doris/pull/14001#issuecomment-1305471652 @zy-kkk PTAL -- 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 unsub

[GitHub] [doris] github-actions[bot] commented on pull request #13973: [Enhancement](function) add to_bitmap() function with int type

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #13973: URL: https://github.com/apache/doris/pull/13973#issuecomment-1305476601 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 GitHu

[GitHub] [doris] github-actions[bot] commented on pull request #13973: [Enhancement](function) add to_bitmap() function with int type

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #13973: URL: https://github.com/apache/doris/pull/13973#issuecomment-1305476646 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 UR

[GitHub] [doris] yuanyuan8983 opened a new pull request, #14036: [test] delete-where-in-test

2022-11-07 Thread GitBox
yuanyuan8983 opened a new pull request, #14036: URL: https://github.com/apache/doris/pull/14036 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [

[GitHub] [doris] englefly opened a new pull request, #14037: [opt](nereids) q21 anti and semi join reorder

2022-11-07 Thread GitBox
englefly opened a new pull request, #14037: URL: https://github.com/apache/doris/pull/14037 # Proposed changes estimation of anti and semi join need re-work. we just let tpch q21 pass. Issue Number: close #xxx ## Problem summary Describe your changes. ## Checkli

[GitHub] [doris] zhangstar333 opened a new pull request, #14038: [fix](test) fix regression-test result is unstable to failed

2022-11-07 Thread GitBox
zhangstar333 opened a new pull request, #14038: URL: https://github.com/apache/doris/pull/14038 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [

[GitHub] [doris] Pace2Car opened a new pull request, #14039: [Enhancement] forEach() replace stream().forEach()

2022-11-07 Thread GitBox
Pace2Car opened a new pull request, #14039: URL: https://github.com/apache/doris/pull/14039 # Proposed changes Issue Number: close #13889 ## Problem summary Replace stream().forEach() by forEach() ## Checklist(Required) 1. Does it affect the original behavi

[GitHub] [doris] github-actions[bot] commented on pull request #13967: [fix](load) fix a bug that reduce memory work on hard limit might be …

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #13967: URL: https://github.com/apache/doris/pull/13967#issuecomment-1305510930 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 GitHu

[GitHub] [doris] github-actions[bot] commented on pull request #13967: [fix](load) fix a bug that reduce memory work on hard limit might be …

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #13967: URL: https://github.com/apache/doris/pull/13967#issuecomment-1305510980 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 UR

[GitHub] [doris] github-actions[bot] commented on pull request #14014: [enhancement](load) shrink reserved buffer for page builder (#14012)

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #14014: URL: https://github.com/apache/doris/pull/14014#issuecomment-1305511357 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 UR

[GitHub] [doris] luozenglin commented on a diff in pull request #13985: [enhancement](profile) add instanceNum, tableIds to profile.

2022-11-07 Thread GitBox
luozenglin commented on code in PR #13985: URL: https://github.com/apache/doris/pull/13985#discussion_r1015346073 ## fe/fe-core/src/main/java/org/apache/doris/common/util/ProfileManager.java: ## @@ -67,6 +67,11 @@ public class ProfileManager { public static final String DEF

[GitHub] [doris] wangbo closed issue #13773: [Bug] Using groupId as join key may cause wrong result

2022-11-07 Thread GitBox
wangbo closed issue #13773: [Bug] Using groupId as join key may cause wrong result URL: https://github.com/apache/doris/issues/13773 -- 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 comm

[GitHub] [doris] englefly closed pull request #13839: Estimate q21

2022-11-07 Thread GitBox
englefly closed pull request #13839: Estimate q21 URL: https://github.com/apache/doris/pull/13839 -- 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: commit

[GitHub] [doris] englefly opened a new pull request, #14040: [feature](nereids) let user define right deep tree penalty by session variable

2022-11-07 Thread GitBox
englefly opened a new pull request, #14040: URL: https://github.com/apache/doris/pull/14040 # Proposed changes it is hard for us to find a proper factor for all queries. default is 0.7 Issue Number: close #xxx ## Problem summary Describe your changes. ## Chec

[GitHub] [doris] nextdreamblue commented on issue #13999: 以小时自动创建分区,分区创建的时间越来越迟,最后可能第一个按小时的分区不会创建导致数据丢失

2022-11-07 Thread GitBox
nextdreamblue commented on issue #13999: URL: https://github.com/apache/doris/issues/13999#issuecomment-1305532864 目前动态分区的后台调度周期是由 fe的 dynamic_partition_check_interval_seconds 参数来控制的,每sleep这么多秒就会进入下一次判断,而每次执行添加新partition,删除过期partition的耗时,就导致下次任务的调度会有顺延才会再执行 其实延伸一下,这个地方会存在一个调度不及时的问题。当

[GitHub] [doris] nextdreamblue opened a new pull request, #14041: [Enhancement](Dynamic) set dynamic partition scheduler daemon sleep t…

2022-11-07 Thread GitBox
nextdreamblue opened a new pull request, #14041: URL: https://github.com/apache/doris/pull/14041 …ime automaticly Signed-off-by: nextdreamblue # Proposed changes Issue Number: close #13999 ## Problem summary Describe your changes. ## Checklist(Requir

[GitHub] [doris] github-actions[bot] commented on pull request #14002: [Bug](udf) Make UDF's type always nullable

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #14002: URL: https://github.com/apache/doris/pull/14002#issuecomment-1305543042 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 UR

[GitHub] [doris] github-actions[bot] commented on pull request #14002: [Bug](udf) Make UDF's type always nullable

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #14002: URL: https://github.com/apache/doris/pull/14002#issuecomment-1305542986 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 GitHu

[GitHub] [doris] morrySnow opened a new pull request, #14042: [feature](nereids) binding slot in order by that not show in project

2022-11-07 Thread GitBox
morrySnow opened a new pull request, #14042: URL: https://github.com/apache/doris/pull/14042 # Proposed changes 1. binding slot in order by that not show in project, such as: ```sql SELECT c1 FROM t WHERE c2 > 0 ORDER BY c3 ``` 2. not check unbound when bind slot refere

[GitHub] [doris] Gabriel39 merged pull request #14002: [Bug](udf) Make UDF's type always nullable

2022-11-07 Thread GitBox
Gabriel39 merged PR #14002: URL: https://github.com/apache/doris/pull/14002 -- 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.ap

[doris] branch master updated: [Bug](udf) Make UDF's type always nullable (#14002)

2022-11-07 Thread gabriellee
This is an automated email from the ASF dual-hosted git repository. gabriellee pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new 1c2532b9dc [Bug](udf) Make UDF's type always

[GitHub] [doris] github-actions[bot] commented on pull request #14030: [feature](Nereids) bind alias in group by list

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #14030: URL: https://github.com/apache/doris/pull/14030#issuecomment-1305591399 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 GitHu

[GitHub] [doris] github-actions[bot] commented on pull request #14030: [feature](Nereids) bind alias in group by list

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #14030: URL: https://github.com/apache/doris/pull/14030#issuecomment-1305591458 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 UR

[GitHub] [doris] htyoung opened a new issue, #14043: [Bug] grouping sets + case when or coalesce get wrong result

2022-11-07 Thread GitBox
htyoung opened a new issue, #14043: URL: https://github.com/apache/doris/issues/14043 ### 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 version:1.1.3-

[GitHub] [doris] Toms1999 commented on pull request #14031: [extension] new e_table_to_doris by shell

2022-11-07 Thread GitBox
Toms1999 commented on PR #14031: URL: https://github.com/apache/doris/pull/14031#issuecomment-1305606254 upupup -- 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 unsubscri

[GitHub] [doris] sohardforaname opened a new pull request, #14044: [Enhancement](Nereids)optimize groupExpressionMatch

2022-11-07 Thread GitBox
sohardforaname opened a new pull request, #14044: URL: https://github.com/apache/doris/pull/14044 # Proposed changes Issue Number: close #xxx ## Problem summary optimize groupExpressionMatch by reducing unnecessary iterator creation. ## Checklist(Required)

[GitHub] [doris] github-actions[bot] commented on pull request #14001: [typo](doc) fix get-starting doc

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #14001: URL: https://github.com/apache/doris/pull/14001#issuecomment-1305616954 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 UR

[GitHub] [doris] JNSimba merged pull request #14001: [typo](doc) fix get-starting doc

2022-11-07 Thread GitBox
JNSimba merged PR #14001: URL: https://github.com/apache/doris/pull/14001 -- 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.apac

[doris] branch master updated: [typo](doc) fix get_start doc (#14001)

2022-11-07 Thread diwu
This is an automated email from the ASF dual-hosted git repository. diwu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new 241801ca17 [typo](doc) fix get_start doc (#14001) 2

[GitHub] [doris] HappenLee opened a new pull request, #14045: [thirdpart](lib) Add lock free queue of concurrentqueue

2022-11-07 Thread GitBox
HappenLee opened a new pull request, #14045: URL: https://github.com/apache/doris/pull/14045 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Y

[GitHub] [doris] 924060929 commented on a diff in pull request #14042: [feature](nereids) binding slot in order by that not show in project

2022-11-07 Thread GitBox
924060929 commented on code in PR #14042: URL: https://github.com/apache/doris/pull/14042#discussion_r1015424230 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/analysis/ResolveSortProject.java: ## @@ -0,0 +1,61 @@ +// Licensed to the Apache Software Foundation (ASF)

[GitHub] [doris] github-actions[bot] commented on pull request #14045: [thirdpart](lib) Add lock free queue of concurrentqueue

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #14045: URL: https://github.com/apache/doris/pull/14045#issuecomment-1305623543 `sh-checker report` To get the full details, please check in the [job]("https://github.com/apache/doris/actions/runs/3410771540";) output. shellcheck err

[GitHub] [doris] github-actions[bot] commented on pull request #14045: [thirdpart](lib) Add lock free queue of concurrentqueue

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #14045: URL: https://github.com/apache/doris/pull/14045#issuecomment-1305624338 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 GitHu

[GitHub] [doris] github-actions[bot] commented on pull request #14045: [thirdpart](lib) Add lock free queue of concurrentqueue

2022-11-07 Thread GitBox
github-actions[bot] commented on PR #14045: URL: https://github.com/apache/doris/pull/14045#issuecomment-1305624386 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 UR

[GitHub] [doris] 924060929 commented on a diff in pull request #14042: [feature](nereids) binding slot in order by that not show in project

2022-11-07 Thread GitBox
924060929 commented on code in PR #14042: URL: https://github.com/apache/doris/pull/14042#discussion_r1015430108 ## fe/fe-core/src/main/java/org/apache/doris/nereids/jobs/batch/AnalyzeRulesJob.java: ## @@ -55,7 +56,8 @@ public AnalyzeRulesJob(CascadesContext cascadesContext, Op

[GitHub] [doris] morningman opened a new pull request, #14046: [fix](priv) fix meta replay bug when upgrading from 1.1.x to 1.2.x

2022-11-07 Thread GitBox
morningman opened a new pull request, #14046: URL: https://github.com/apache/doris/pull/14046 # Proposed changes Issue Number: close #xxx ## Problem summary Follow up #12016 ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Yes

[GitHub] [doris] hello-stephen commented on pull request #14026: [Enhancement] Doris broker support aliyun-oss

2022-11-07 Thread GitBox
hello-stephen commented on PR #14026: URL: https://github.com/apache/doris/pull/14026#issuecomment-1305650196 TeamCity pipeline, clickbench performance test result: the sum of best hot time: 34.82 seconds load time: 436 seconds storage size: 17154741679 Bytes https://doris-co

  1   2   3   >